This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
set CODEC_CAP_DR1 for vp5 and vp6 decoders
Originally committed as revision 8896 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs
18 years ago
parent
442fc0e881
commit
75f6cc26ba
2 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
libavcodec/vp5.c
+2
-0
libavcodec/vp6.c
+ 1
- 0
libavcodec/vp5.c
View File
@@ -287,4 +287,5 @@ AVCodec vp5_decoder = {
NULL,
vp56_free,
vp56_decode_frame,
CODEC_CAP_DR1,
};
+ 2
- 0
libavcodec/vp6.c
View File
@@ -541,6 +541,7 @@ AVCodec vp6_decoder = {
NULL,
vp56_free,
vp56_decode_frame,
CODEC_CAP_DR1,
};
/* flash version, not flipped upside-down */
@@ -553,4 +554,5 @@ AVCodec vp6f_decoder = {
NULL,
vp56_free,
vp56_decode_frame,
CODEC_CAP_DR1,
};
Write
Preview
Loading…
Cancel
Save