Mercurial > libavcodec.hg
changeset 4588:fc155ff94878 libavcodec
cosmetics: Fix another common typo, dependAnt --> dependEnt.
author | diego |
---|---|
date | Sat, 24 Feb 2007 09:41:43 +0000 |
parents | 644687c58928 |
children | 30261f4ed12d |
files | avcodec.h h263.c mjpeg.c ratecontrol.c snow.c svq1.c wma.c |
diffstat | 7 files changed, 11 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/avcodec.h Sat Feb 24 00:58:28 2007 +0000 +++ b/avcodec.h Sat Feb 24 09:41:43 2007 +0000 @@ -383,7 +383,7 @@ /* Unsupported options : * Syntax Arithmetic coding (SAC) * Reference Picture Selection - * Independant Segment Decoding */ + * Independent Segment Decoding */ /* /Fx */ /* codec capabilities */ @@ -1705,14 +1705,14 @@ /** * Thread count. - * is used to decide how many independant tasks should be passed to execute() + * is used to decide how many independent tasks should be passed to execute() * - encoding: set by user * - decoding: set by user */ int thread_count; /** - * the codec may call this to execute several independant things. it will return only after + * the codec may call this to execute several independent things. it will return only after * finishing all tasks, the user may replace this with some multithreaded implementation, the * default implementation will execute the parts serially * @param count the number of things to execute
--- a/h263.c Sat Feb 24 00:58:28 2007 +0000 +++ b/h263.c Sat Feb 24 09:41:43 2007 +0000 @@ -2519,7 +2519,7 @@ #endif //CONFIG_ENCODERS /** - * set qscale and update qscale dependant variables. + * set qscale and update qscale dependent variables. */ void ff_set_qscale(MpegEncContext * s, int qscale) {
--- a/mjpeg.c Sat Feb 24 00:58:28 2007 +0000 +++ b/mjpeg.c Sat Feb 24 09:41:43 2007 +0000 @@ -901,7 +901,7 @@ int cur_scan; /* current scan, used by JPEG-LS */ } MJpegDecodeContext; -#include "jpeg_ls.c" //FIXME make jpeg-ls more independant +#include "jpeg_ls.c" //FIXME make jpeg-ls more independent static int mjpeg_decode_dht(MJpegDecodeContext *s);
--- a/ratecontrol.c Sat Feb 24 00:58:28 2007 +0000 +++ b/ratecontrol.c Sat Feb 24 09:41:43 2007 +0000 @@ -751,7 +751,7 @@ //printf("%f ", q); assert(q>0.0); - if(pict_type==P_TYPE || s->intra_only){ //FIXME type dependant blur like in 2-pass + if(pict_type==P_TYPE || s->intra_only){ //FIXME type dependent blur like in 2-pass rcc->short_term_qsum*=a->qblur; rcc->short_term_qcount*=a->qblur; @@ -811,7 +811,7 @@ int i, toobig; double fps= 1/av_q2d(s->avctx->time_base); double complexity[5]={0,0,0,0,0}; // aproximate bits at quant=1 - uint64_t const_bits[5]={0,0,0,0,0}; // quantizer idependant bits + uint64_t const_bits[5]={0,0,0,0,0}; // quantizer independent bits uint64_t all_const_bits; uint64_t all_available_bits= (uint64_t)(s->bit_rate*(double)rcc->num_entries/fps); double rate_factor=0;
--- a/snow.c Sat Feb 24 00:58:28 2007 +0000 +++ b/snow.c Sat Feb 24 09:41:43 2007 +0000 @@ -422,7 +422,7 @@ }Plane; typedef struct SnowContext{ -// MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independant of MpegEncContext, so this will be removed then (FIXME/XXX) +// MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independent of MpegEncContext, so this will be removed then (FIXME/XXX) AVCodecContext *avctx; RangeCoder c; @@ -473,7 +473,7 @@ int me_cache_generation; slice_buffer sb; - MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independant of MpegEncContext, so this will be removed then (FIXME/XXX) + MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independent of MpegEncContext, so this will be removed then (FIXME/XXX) }SnowContext; typedef struct {
--- a/svq1.c Sat Feb 24 00:58:28 2007 +0000 +++ b/svq1.c Sat Feb 24 09:41:43 2007 +0000 @@ -65,7 +65,7 @@ #define SVQ1_BLOCK_INTRA 3 typedef struct SVQ1Context { - MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independant of MpegEncContext, so this will be removed then (FIXME/XXX) + MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independent of MpegEncContext, so this will be removed then (FIXME/XXX) AVCodecContext *avctx; DSPContext dsp; AVFrame picture;