diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-07-24 17:09:28 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-24 17:09:28 +0000 |
commit | ca74c0a180d715f0af685bbd9f4bf01501d38325 (patch) | |
tree | f433a79ce2f1d698dc94407a00074d8a7c158acb /libavcodec | |
parent | cc8de8e8a5789963fe6bbccae0411f2acc278c57 (diff) | |
download | ffmpeg-ca74c0a180d715f0af685bbd9f4bf01501d38325.tar.gz |
cosmetics: Fix two common typos: wont --> will not, lets --> let us.
Originally committed as revision 14372 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h263dec.c | 2 | ||||
-rw-r--r-- | libavcodec/motion_est_template.c | 2 | ||||
-rw-r--r-- | libavcodec/mpegvideo.c | 2 | ||||
-rw-r--r-- | libavcodec/resample2.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 5ff77841a0..de1f146c3c 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -508,7 +508,7 @@ retry: 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 --git a/libavcodec/motion_est_template.c b/libavcodec/motion_est_template.c index 9bfae2e2d7..05c276412c 100644 --- a/libavcodec/motion_est_template.c +++ b/libavcodec/motion_est_template.c @@ -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 --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 2ffb7a247f..9098a7862e 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -1396,7 +1396,7 @@ static av_always_inline void mpeg_motion_lowres(MpegEncContext *s, 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 --git a/libavcodec/resample2.c b/libavcodec/resample2.c index ed59448a49..4397d2a66e 100644 --- a/libavcodec/resample2.c +++ b/libavcodec/resample2.c @@ -230,7 +230,7 @@ void av_resample_compensate(AVResampleContext *c, int sample_delta, int compensa * @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){ |