Commit 186f155e authored by Kostya Shishkov's avatar Kostya Shishkov

Add decoder flush after seeking for RV3/4 decoders

Originally committed as revision 17030 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 85d0d114
......@@ -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"),
};
......@@ -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"),
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment