diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 13:51:16 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-10-18 05:29:14 +0200 |
commit | 530c1441fd1426b6a4bb33485ff3226e1ae0ad45 (patch) | |
tree | b3624b9542061d67a169115b5d912b2995f13e9a /libavcodec/avcodec.h | |
parent | 15ec053c4c0b198a2e93eb8e60c8f41e091e0c40 (diff) | |
download | ffmpeg-530c1441fd1426b6a4bb33485ff3226e1ae0ad45.tar.gz |
lavc: make lmax/lmin into private options of mpegvideo encoders
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1734370bc4..b3c641956a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2183,19 +2183,19 @@ typedef struct AVCodecContext { */ int context_model; +#if FF_API_MPV_OPT /** - * minimum Lagrange multipler - * - encoding: Set by user. - * - decoding: unused + * @deprecated use encoder private options instead */ + attribute_deprecated int lmin; /** - * maximum Lagrange multipler - * - encoding: Set by user. - * - decoding: unused + * @deprecated use encoder private options instead */ + attribute_deprecated int lmax; +#endif /** * frame skip threshold |