diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-15 16:15:47 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-15 16:15:47 +0000 |
commit | bd1071363648638a1a2d958edb70e8ca83ec4138 (patch) | |
tree | f8de9e326f2587a1216b3378c7ac0c559ec2fe32 /libavcodec | |
parent | bee972eeaddbcd92d8bc4823bd676fe19fa0e96f (diff) | |
download | ffmpeg-bd1071363648638a1a2d958edb70e8ca83ec4138.tar.gz |
typo fixes
Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h263.c | 2 | ||||
-rw-r--r-- | libavcodec/mpegvideo.c | 2 | ||||
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index bc393f7c48..6a420f9da6 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -3202,7 +3202,7 @@ static int mpeg4_decode_video_packet_header(MpegEncContext *s) } if(s->pict_type == FF_B_TYPE){ while(s->next_picture.mbskip_table[ s->mb_index2xy[ mb_num ] ]) mb_num++; - if(mb_num >= s->mb_num) return -1; // slice contains just skipped MBs which where allready decoded + if(mb_num >= s->mb_num) return -1; // slice contains just skipped MBs which where already decoded } s->mb_x= mb_num % s->mb_width; diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 4d2f50d407..7f3b907781 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -862,7 +862,7 @@ alloc: } if(s->current_picture_ptr && s->current_picture_ptr->data[0]==NULL) - pic= (AVFrame*)s->current_picture_ptr; //we allready have a unused image (maybe it was set before reading the header) + pic= (AVFrame*)s->current_picture_ptr; //we already have a unused image (maybe it was set before reading the header) else{ i= ff_find_unused_picture(s, 0); pic= (AVFrame*)&s->picture[i]; diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index ab3673ebb9..89d4562a79 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -1375,7 +1375,7 @@ static inline void dct_single_coeff_elimination(MpegEncContext *s, int n, int th }else skip_dc=1; - /* are all which we could set to zero are allready zero? */ + /* Are all we could set to zero already zero? */ if(last_index<=skip_dc - 1) return; for(i=0; i<=last_index; i++){ |