[FFmpeg-cvslog] r17030 - in trunk/libavcodec: rv30.c rv40.c
kostya
subversion
Sat Feb 7 10:35:17 CET 2009
Author: kostya
Date: Sat Feb 7 10:35:16 2009
New Revision: 17030
Log:
Add decoder flush after seeking for RV3/4 decoders
Modified:
trunk/libavcodec/rv30.c
trunk/libavcodec/rv40.c
Modified: trunk/libavcodec/rv30.c
==============================================================================
--- trunk/libavcodec/rv30.c Sat Feb 7 03:13:23 2009 (r17029)
+++ trunk/libavcodec/rv30.c Sat Feb 7 10:35:16 2009 (r17030)
@@ -276,5 +276,6 @@ AVCodec rv30_decoder = {
ff_rv34_decode_end,
ff_rv34_decode_frame,
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
+ .flush = ff_mpeg_flush,
.long_name = NULL_IF_CONFIG_SMALL("RealVideo 3.0"),
};
Modified: trunk/libavcodec/rv40.c
==============================================================================
--- trunk/libavcodec/rv40.c Sat Feb 7 03:13:23 2009 (r17029)
+++ trunk/libavcodec/rv40.c Sat Feb 7 10:35:16 2009 (r17030)
@@ -654,5 +654,6 @@ AVCodec rv40_decoder = {
ff_rv34_decode_end,
ff_rv34_decode_frame,
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
+ .flush = ff_mpeg_flush,
.long_name = NULL_IF_CONFIG_SMALL("RealVideo 4.0"),
};
More information about the ffmpeg-cvslog
mailing list