Commit 6b1f93fa authored by Dustin Brody's avatar Dustin Brody Committed by Anton Khirnov

lavc: rename AV_ER_* options to AV_EF_* and rename AGGRESSIVE to BUFFER

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 204e6132
......@@ -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;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment