summaryrefslogtreecommitdiff
path: root/libavcodec/movtextdec.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-02-20 21:27:45 +0100
committerClément Bœsch <u@pkh.me>2016-02-26 21:53:32 +0100
commit30e76853608f150450fac2497179159a6d556e12 (patch)
treea7a176d5d1af94e7a95e3609e0fe17172170c370 /libavcodec/movtextdec.c
parent29412821241050c846dbceaad4b9752857659977 (diff)
lavc/options: add ass_ro_flush_noop to flags2
Diffstat (limited to 'libavcodec/movtextdec.c')
-rw-r--r--libavcodec/movtextdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/movtextdec.c b/libavcodec/movtextdec.c
index fa70497439..abf8711a9c 100644
--- a/libavcodec/movtextdec.c
+++ b/libavcodec/movtextdec.c
@@ -518,7 +518,8 @@ static int mov_text_decode_close(AVCodecContext *avctx)
static void mov_text_flush(AVCodecContext *avctx)
{
MovTextContext *m = avctx->priv_data;
- m->readorder = 0;
+ if (!(avctx->flags2 & AV_CODEC_FLAG2_RO_FLUSH_NOOP))
+ m->readorder = 0;
}
AVCodec ff_movtext_decoder = {