diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-09-13 23:45:24 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-01-21 15:33:19 -0500 |
commit | 96c373c7704aeb1cc1d2c275fbb5d71777665589 (patch) | |
tree | b2a0a23150ac3a4126925bbcc9d12d27f46f8931 /libavcodec/ffv1.h | |
parent | 12b49769223234673db1003d9c43e7483ceb0282 (diff) | |
download | ffmpeg-96c373c7704aeb1cc1d2c275fbb5d71777665589.tar.gz |
lavc: Move context_model to codec private options
This option is only used by ffv1 and ffvhuff.
It is a very codec-specific option, so deprecate the global variant.
Improve documentation a little.
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r-- | libavcodec/ffv1.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index b44253e94c..34370fa143 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -103,6 +103,7 @@ typedef struct FFV1Context { int ec; int slice_damaged; int key_frame_ok; + int context_model; int bits_per_raw_sample; int packed_at_lsb; |