Commit 204e6132 authored by Dustin Brody's avatar Dustin Brody Committed by Anton Khirnov

lavc: replace API-bump-triggered AVCodecContext field change with shorter, non-conflicting name

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 075d6439
......@@ -2909,11 +2909,7 @@ typedef struct AVCodecContext {
* - encoding: unused
* - decoding: Set by user.
*/
#if FF_API_ER
int error_recognition2;
#else
int error_recognition;
#endif /* FF_API_ER */
int err_recognition;
#define AV_ER_CRCCHECK (1<<0)
#define AV_ER_BITSTREAM (1<<1)
#define AV_ER_AGGRESSIVE (1<<2)
......
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