aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-14 13:14:41 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-14 13:14:41 +0100
commitb71e4d8717450e6d6d08125fbd24a74f082dff71 (patch)
treeeff948420644b739d148170772592a9e6874c63f /libavcodec/avcodec.h
parent31c09b7663acdcc64031d6f251a667ce812f590f (diff)
parent8941971a8f2e24b9a84fe29f128d13ceb89c0a65 (diff)
downloadffmpeg-b71e4d8717450e6d6d08125fbd24a74f082dff71.tar.gz
Merge commit '8941971a8f2e24b9a84fe29f128d13ceb89c0a65'
* commit '8941971a8f2e24b9a84fe29f128d13ceb89c0a65': lavc: make error_rate a private option of mpegvideo encoders Conflicts: libavcodec/options_table.h libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 f2a3c69de2..59ab70ddca 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2833,12 +2833,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
/**