# HG changeset patch # User diego # Date 1216919368 0 # Node ID 3f819263176e1cd95a15f7c1d26dfd442539fbb0 # Parent 5f3b62eaf6e5e688714baa72a63cba2f1897f679 cosmetics: Fix two common typos: wont --> will not, lets --> let us. diff -r 5f3b62eaf6e5 -r 3f819263176e h263dec.c --- a/h263dec.c Thu Jul 24 16:54:51 2008 +0000 +++ b/h263dec.c Thu Jul 24 17:09:28 2008 +0000 @@ -508,7 +508,7 @@ s->padding_bug_score= 256*256*256*64; /* very ugly XVID padding bug detection FIXME/XXX solve this differently - * lets hope this at least works + * Let us hope this at least works. */ if( s->resync_marker==0 && s->data_partitioning==0 && s->divx_version==0 && s->codec_id==CODEC_ID_MPEG4 && s->vo_type==0) diff -r 5f3b62eaf6e5 -r 3f819263176e motion_est_template.c --- a/motion_est_template.c Thu Jul 24 16:54:51 2008 +0000 +++ b/motion_est_template.c Thu Jul 24 17:09:28 2008 +0000 @@ -24,7 +24,7 @@ * Motion estimation template. */ -//lets hope gcc will remove the unused vars ...(gcc 3.2.2 seems to do it ...) +//Let us hope gcc will remove the unused vars ...(gcc 3.2.2 seems to do it ...) #define LOAD_COMMON\ uint32_t av_unused * const score_map= c->score_map;\ const int av_unused xmin= c->xmin;\ diff -r 5f3b62eaf6e5 -r 3f819263176e mpegvideo.c --- a/mpegvideo.c Thu Jul 24 16:54:51 2008 +0000 +++ b/mpegvideo.c Thu Jul 24 17:09:28 2008 +0000 @@ -1396,7 +1396,7 @@ linesize = s->current_picture.linesize[0] << field_based; uvlinesize = s->current_picture.linesize[1] << field_based; - if(s->quarter_sample){ //FIXME obviously not perfect but qpel wont work in lowres anyway + if(s->quarter_sample){ //FIXME obviously not perfect but qpel will not work in lowres anyway motion_x/=2; motion_y/=2; } diff -r 5f3b62eaf6e5 -r 3f819263176e resample2.c --- a/resample2.c Thu Jul 24 16:54:51 2008 +0000 +++ b/resample2.c Thu Jul 24 17:09:28 2008 +0000 @@ -230,7 +230,7 @@ * @param consumed the number of samples of src which have been consumed are returned here * @param src_size the number of unconsumed samples available * @param dst_size the amount of space in samples available in dst - * @param update_ctx if this is 0 then the context wont be modified, that way several channels can be resampled with the same context + * @param update_ctx If this is 0 then the context will not be modified, that way several channels can be resampled with the same context. * @return the number of samples written in dst or -1 if an error occurred */ int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){