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

Signed-off-by: Anton Khirnov <anton@khirnov.net>
pull/2/head
Dustin Brody 13 years ago committed by Anton Khirnov
parent 204e6132d2
commit 6b1f93face
  1. 8
      libavcodec/avcodec.h

@ -2910,10 +2910,10 @@ typedef struct AVCodecContext {
* - decoding: Set by user. * - decoding: Set by user.
*/ */
int err_recognition; int err_recognition;
#define AV_ER_CRCCHECK (1<<0) #define AV_EF_CRCCHECK (1<<0)
#define AV_ER_BITSTREAM (1<<1) #define AV_EF_BITSTREAM (1<<1)
#define AV_ER_AGGRESSIVE (1<<2) #define AV_EF_BUFFER (1<<2)
#define AV_ER_EXPLODE (1<<3) #define AV_EF_EXPLODE (1<<3)
} AVCodecContext; } AVCodecContext;
/** /**

Loading…
Cancel
Save