summaryrefslogtreecommitdiffstats
path: root/libavcodec/textdec.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/textdec.c
parent29412821241050c846dbceaad4b9752857659977 (diff)
downloadffmpeg-streaming-30e76853608f150450fac2497179159a6d556e12.zip
ffmpeg-streaming-30e76853608f150450fac2497179159a6d556e12.tar.gz
lavc/options: add ass_ro_flush_noop to flags2
Diffstat (limited to 'libavcodec/textdec.c')
-rw-r--r--libavcodec/textdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/textdec.c b/libavcodec/textdec.c
index 4e2ff2c..964da72 100644
--- a/libavcodec/textdec.c
+++ b/libavcodec/textdec.c
@@ -66,7 +66,8 @@ static int text_decode_frame(AVCodecContext *avctx, void *data,
static void text_flush(AVCodecContext *avctx)
{
TextContext *text = avctx->priv_data;
- text->readorder = 0;
+ if (!(avctx->flags2 & AV_CODEC_FLAG2_RO_FLUSH_NOOP))
+ text->readorder = 0;
}
#define DECLARE_CLASS(decname) static const AVClass decname ## _decoder_class = { \
OpenPOWER on IntegriCloud