Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
854c405d
Commit
854c405d
authored
May 22, 2016
by
Piotr Bandurski
Committed by
Michael Niedermayer
May 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/iff: mention RGB8/RGBN decoder
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
5ce1d089
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
codec_desc.c
libavcodec/codec_desc.c
+1
-1
iff.c
libavcodec/iff.c
+3
-3
No files found.
libavcodec/codec_desc.c
View file @
854c405d
...
...
@@ -887,7 +887,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
id
=
AV_CODEC_ID_IFF_ILBM
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"iff_ilbm"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"IFF ACBM/ANIM/DEEP/ILBM/PBM"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"IFF ACBM/ANIM/DEEP/ILBM/PBM
/RGB8/RGBN
"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
{
...
...
libavcodec/iff.c
View file @
854c405d
/*
* IFF ACBM/ANIM/DEEP/ILBM/PBM bitmap decoder
* IFF ACBM/ANIM/DEEP/ILBM/PBM
/RGB8/RGBN
bitmap decoder
* Copyright (c) 2010 Peter Ross <pross@xvid.org>
* Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
* Copyright (c) 2016 Paul B Mahol
...
...
@@ -23,7 +23,7 @@
/**
* @file
* IFF ACBM/ANIM/DEEP/ILBM/PBM bitmap decoder
* IFF ACBM/ANIM/DEEP/ILBM/PBM
/RGB8/RGBN
bitmap decoder
*/
#include <stdint.h>
...
...
@@ -1751,7 +1751,7 @@ static int decode_frame(AVCodecContext *avctx,
#if CONFIG_IFF_ILBM_DECODER
AVCodec
ff_iff_ilbm_decoder
=
{
.
name
=
"iff"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"IFF ACBM/ANIM/DEEP/ILBM/PBM"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"IFF ACBM/ANIM/DEEP/ILBM/PBM
/RGB8/RGBN
"
),
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
AV_CODEC_ID_IFF_ILBM
,
.
priv_data_size
=
sizeof
(
IffContext
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment