diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-08 18:18:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-08 18:18:49 +0000 |
commit | 047599a4ba6352b2b5911c10fbec821ef6612d95 (patch) | |
tree | 5720067dfc00cf9a1a86492c265e17304413bf3b /libavcodec/avcodec.h | |
parent | 3e30f46f8b40eb5282e0a529bef9bc95d8eea381 (diff) | |
download | ffmpeg-047599a4ba6352b2b5911c10fbec821ef6612d95.tar.gz |
Rename error_resilience to error_recognition.
Originally committed as revision 15270 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 73d90f52e7..c7e1b648bf 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1136,12 +1136,12 @@ typedef struct AVCodecContext { float b_quant_offset; /** - * Error resilience; higher values will detect more errors but may + * Error recognization; higher values will detect more errors but may * misdetect some more or less valid parts as errors. * - encoding: unused * - decoding: Set by user. */ - int error_resilience; + int error_recognition; #define FF_ER_CAREFUL 1 #define FF_ER_COMPLIANT 2 #define FF_ER_AGGRESSIVE 3 |