Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
f174fbac
Commit
f174fbac
authored
Oct 17, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: add CODEC_CAP_DR1 to all video decoders missing them
parent
48f01398
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
0 deletions
+9
-0
bink.c
libavcodec/bink.c
+1
-0
dpx.c
libavcodec/dpx.c
+1
-0
indeo3.c
libavcodec/indeo3.c
+1
-0
indeo4.c
libavcodec/indeo4.c
+1
-0
indeo5.c
libavcodec/indeo5.c
+1
-0
kgv1dec.c
libavcodec/kgv1dec.c
+1
-0
sgidec.c
libavcodec/sgidec.c
+1
-0
vb.c
libavcodec/vb.c
+1
-0
yop.c
libavcodec/yop.c
+1
-0
No files found.
libavcodec/bink.c
View file @
f174fbac
...
...
@@ -1336,4 +1336,5 @@ AVCodec ff_bink_decoder = {
.
close
=
decode_end
,
.
decode
=
decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Bink video"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/dpx.c
View file @
f174fbac
...
...
@@ -243,4 +243,5 @@ AVCodec ff_dpx_decoder = {
.
close
=
decode_end
,
.
decode
=
decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX image"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/indeo3.c
View file @
f174fbac
...
...
@@ -1114,4 +1114,5 @@ AVCodec ff_indeo3_decoder = {
.
decode
=
decode_frame
,
.
capabilities
=
CODEC_CAP_DR1
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Intel Indeo 3"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/indeo4.c
View file @
f174fbac
...
...
@@ -607,4 +607,5 @@ AVCodec ff_indeo4_decoder = {
.
close
=
ff_ivi_decode_close
,
.
decode
=
ff_ivi_decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Intel Indeo Video Interactive 4"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/indeo5.c
View file @
f174fbac
...
...
@@ -642,4 +642,5 @@ AVCodec ff_indeo5_decoder = {
.
close
=
ff_ivi_decode_close
,
.
decode
=
ff_ivi_decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Intel Indeo Video Interactive 5"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/kgv1dec.c
View file @
f174fbac
...
...
@@ -191,4 +191,5 @@ AVCodec ff_kgv1_decoder = {
.
decode
=
decode_frame
,
.
flush
=
decode_flush
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Kega Game Video"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/sgidec.c
View file @
f174fbac
...
...
@@ -267,4 +267,5 @@ AVCodec ff_sgi_decoder = {
.
close
=
sgi_end
,
.
decode
=
decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"SGI image"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/vb.c
View file @
f174fbac
...
...
@@ -275,4 +275,5 @@ AVCodec ff_vb_decoder = {
.
close
=
decode_end
,
.
decode
=
decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Beam Software VB"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
libavcodec/yop.c
View file @
f174fbac
...
...
@@ -256,4 +256,5 @@ AVCodec ff_yop_decoder = {
.
close
=
yop_decode_close
,
.
decode
=
yop_decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Psygnosis YOP Video"
),
.
capabilities
=
CODEC_CAP_DR1
,
};
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