1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

Add decoder flags

Originally committed as revision 11182 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2007-12-07 05:48:34 +00:00
parent da71cdadc2
commit 52b917536d
2 changed files with 2 additions and 0 deletions

View File

@ -142,4 +142,5 @@ AVCodec rv30_decoder = {
NULL,
ff_rv34_decode_end,
ff_rv34_decode_frame,
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
};

View File

@ -272,4 +272,5 @@ AVCodec rv40_decoder = {
NULL,
ff_rv34_decode_end,
ff_rv34_decode_frame,
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
};