Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-27 16:51:16 +0400
committerAnton Khirnov <anton@khirnov.net>2013-11-14 12:39:43 +0400
commit8941971a8f2e24b9a84fe29f128d13ceb89c0a65 (patch)
tree50b1f70ff5efc6822740413768f0b187af98c43b /libavcodec/avcodec.h
parent728c4658563dc82115ade0f1679679eddb7be5ff (diff)
lavc: make error_rate a private option of mpegvideo encoders
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h8
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
/**