comparison mpegvideo.c @ 6497:e44443c512b1 libavcodec

typo fixes
author diego
date Sat, 15 Mar 2008 16:15:47 +0000
parents 493dc59d469a
children 34717463c154
comparison
equal deleted inserted replaced
6496:8fbbe12e0c39 6497:e44443c512b1
860 s->avctx->release_buffer(s->avctx, (AVFrame*)&s->picture[i]); 860 s->avctx->release_buffer(s->avctx, (AVFrame*)&s->picture[i]);
861 } 861 }
862 } 862 }
863 863
864 if(s->current_picture_ptr && s->current_picture_ptr->data[0]==NULL) 864 if(s->current_picture_ptr && s->current_picture_ptr->data[0]==NULL)
865 pic= (AVFrame*)s->current_picture_ptr; //we allready have a unused image (maybe it was set before reading the header) 865 pic= (AVFrame*)s->current_picture_ptr; //we already have a unused image (maybe it was set before reading the header)
866 else{ 866 else{
867 i= ff_find_unused_picture(s, 0); 867 i= ff_find_unused_picture(s, 0);
868 pic= (AVFrame*)&s->picture[i]; 868 pic= (AVFrame*)&s->picture[i];
869 } 869 }
870 870