Commit 8791dbe7 authored by kostya's avatar kostya

Add decoder flush after seeking for RV3/4 decoders

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17030 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c09e93b9
......@@ -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