diff options
author | Dustin Brody <libav@parsoma.net> | 2011-10-16 21:22:03 -0400 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-18 12:28:30 +0200 |
commit | 6b1f93face444a6e6a4f5a332309f8503d0017f5 (patch) | |
tree | 741873831b1af88520792fb3827defcc5a84dbba | |
parent | 204e6132d24012abb03ab00bbae4b5db6a3074d0 (diff) | |
download | ffmpeg-6b1f93face444a6e6a4f5a332309f8503d0017f5.tar.gz |
lavc: rename AV_ER_* options to AV_EF_* and rename AGGRESSIVE to BUFFER
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 8298d5aeff..440ba9b487 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; /** |