diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-02-13 09:26:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-02-13 09:26:10 +0000 |
commit | 5e53486545726987ab4482321d4dcf7e23e7652f (patch) | |
tree | 7d02e767f3f8c464df234413336a89304de40c63 /libavcodec/error_resilience.c | |
parent | f1cc49a68e342b9990052b54af7f91525c982353 (diff) | |
download | ffmpeg-5e53486545726987ab4482321d4dcf7e23e7652f.tar.gz |
typo fix: inited --> initialized
Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/error_resilience.c')
-rw-r--r-- | libavcodec/error_resilience.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index 1fd9474d74..17f04d5abb 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -769,7 +769,7 @@ void ff_er_frame_end(MpegEncContext *s){ if( error2==(VP_START|DC_ERROR|AC_ERROR|MV_ERROR|AC_END|DC_END|MV_END) && error1!=(VP_START|DC_ERROR|AC_ERROR|MV_ERROR|AC_END|DC_END|MV_END) - && ((error1&AC_END) || (error1&DC_END) || (error1&MV_END))){ //end & uninited + && ((error1&AC_END) || (error1&DC_END) || (error1&MV_END))){ //end & uninit end_ok=0; } |