diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 13:51:16 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-14 09:39:43 +0100 |
commit | 8941971a8f2e24b9a84fe29f128d13ceb89c0a65 (patch) | |
tree | 50b1f70ff5efc6822740413768f0b187af98c43b /libavcodec/avcodec.h | |
parent | 728c4658563dc82115ade0f1679679eddb7be5ff (diff) | |
download | ffmpeg-8941971a8f2e24b9a84fe29f128d13ceb89c0a65.tar.gz |
lavc: make error_rate a private option of mpegvideo encoders
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 831d28e705..5a05b97921 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2686,12 +2686,14 @@ typedef struct AVCodecContext { uint8_t *subtitle_header; int subtitle_header_size; +#if FF_API_ERROR_RATE /** - * Simulates errors in the bitstream to test error concealment. - * - encoding: Set by user. - * - decoding: unused + * @deprecated use the 'error_rate' private AVOption of the mpegvideo + * encoders */ + attribute_deprecated int error_rate; +#endif #if FF_API_CODEC_PKT /** |