aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-12-14 01:42:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-12-14 01:42:00 +0000
commit7ebfc0ea630e38a9c9653cdc9fe46f8b00e915a9 (patch)
tree4d99bbf321f7947c990d171ecf0deb1f9a4de730 /libavcodec/avcodec.h
parentd55f7b6521016250c2f22397454c05fc8ace600a (diff)
downloadffmpeg-7ebfc0ea630e38a9c9653cdc9fe46f8b00e915a9.tar.gz
error concealment regression test
Originally committed as revision 2606 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 77942872fe..de4c3f03d8 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -17,7 +17,7 @@ extern "C" {
#define FFMPEG_VERSION_INT 0x000408
#define FFMPEG_VERSION "0.4.8"
-#define LIBAVCODEC_BUILD 4695
+#define LIBAVCODEC_BUILD 4696
#define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
#define LIBAVCODEC_VERSION FFMPEG_VERSION
@@ -1461,6 +1461,13 @@ typedef struct AVCodecContext {
* - decoding: set by user.
*/
int flags2;
+
+ /**
+ * simulates errors in the bitstream to test error concealment.
+ * - encoding: set by user.
+ * - decoding: unused.
+ */
+ int error_rate;
} AVCodecContext;