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:28:40 +0200 |
commit | 15ec053c4c0b198a2e93eb8e60c8f41e091e0c40 (patch) | |
tree | 841ae38eb749335b045b4526f016c4e6bafc20e1 /libavcodec/avcodec.h | |
parent | c4f7bee0872d5e2e0e91673dd4b0f18de4a3d866 (diff) | |
download | ffmpeg-15ec053c4c0b198a2e93eb8e60c8f41e091e0c40.tar.gz |
lavc: make border_masking into private options of mpegvideo encoders
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index bf76b1cbd4..1734370bc4 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1643,13 +1643,13 @@ typedef struct AVCodecContext { */ int skip_bottom; +#if FF_API_MPV_OPT /** - * Border processing masking, raises the quantizer for mbs on the borders - * of the picture. - * - encoding: Set by user. - * - decoding: unused + * @deprecated use encoder private options instead */ + attribute_deprecated float border_masking; +#endif /** * minimum MB lagrange multipler |