[FFmpeg-cvslog] lavc: rename AV_ER_* options to AV_EF_* and rename AGGRESSIVE to BUFFER
Dustin Brody
git at videolan.org
Wed Oct 19 02:15:11 CEST 2011
ffmpeg | branch: master | Dustin Brody <libav at parsoma.net> | Sun Oct 16 21:22:03 2011 -0400| [6b1f93face444a6e6a4f5a332309f8503d0017f5] | committer: Anton Khirnov
lavc: rename AV_ER_* options to AV_EF_* and rename AGGRESSIVE to BUFFER
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6b1f93face444a6e6a4f5a332309f8503d0017f5
---
libavcodec/avcodec.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 8298d5a..440ba9b 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2910,10 +2910,10 @@ typedef struct AVCodecContext {
* - decoding: Set by user.
*/
int err_recognition;
-#define AV_ER_CRCCHECK (1<<0)
-#define AV_ER_BITSTREAM (1<<1)
-#define AV_ER_AGGRESSIVE (1<<2)
-#define AV_ER_EXPLODE (1<<3)
+#define AV_EF_CRCCHECK (1<<0)
+#define AV_EF_BITSTREAM (1<<1)
+#define AV_EF_BUFFER (1<<2)
+#define AV_EF_EXPLODE (1<<3)
} AVCodecContext;
/**
More information about the ffmpeg-cvslog
mailing list