diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-22 16:46:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-22 16:46:36 +0000 |
commit | 04932b0d97f4c87966c74d5989b12f0c8eb1ace3 (patch) | |
tree | 4e64a74e358f60fa6c5a7b20c24217e1d5bf119e /libavcodec/error_resilience.c | |
parent | a94948d327a1f90c4c24e456131a9a5308de963e (diff) | |
download | ffmpeg-04932b0d97f4c87966c74d5989b12f0c8eb1ace3.tar.gz |
cosmetics: typo fixes
Originally committed as revision 12554 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 e51390536a..59254a4146 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -561,7 +561,7 @@ static int is_intra_more_likely(MpegEncContext *s){ undamaged_count++; } - if(undamaged_count < 5) return 0; //allmost all MBs damaged -> use temporal prediction + if(undamaged_count < 5) return 0; //almost all MBs damaged -> use temporal prediction #ifdef HAVE_XVMC //prevent dsp.sad() check, that requires access to the image |