diff options
author | Clément Bœsch <u@pkh.me> | 2016-02-20 21:27:45 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-02-26 21:53:32 +0100 |
commit | 30e76853608f150450fac2497179159a6d556e12 (patch) | |
tree | a7a176d5d1af94e7a95e3609e0fe17172170c370 /libavcodec/avcodec.h | |
parent | 29412821241050c846dbceaad4b9752857659977 (diff) | |
download | ffmpeg-30e76853608f150450fac2497179159a6d556e12.tar.gz |
lavc/options: add ass_ro_flush_noop to flags2
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index d3e035ac3e..695ca053e1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -835,6 +835,10 @@ typedef struct RcOverride{ * Do not skip samples and export skip information as frame side data */ #define AV_CODEC_FLAG2_SKIP_MANUAL (1 << 29) +/** + * Do not reset ASS ReadOrder field on flush (subtitles decoding) + */ +#define AV_CODEC_FLAG2_RO_FLUSH_NOOP (1 << 30) /* Unsupported options : * Syntax Arithmetic coding (SAC) |