[Ffmpeg-cvslog] r8114 - in trunk: doc/avutil.txt libavcodec/avcodec.h libavcodec/h263.c libavcodec/mjpeg.c libavcodec/ratecontrol.c libavcodec/snow.c libavcodec/svq1.c libavcodec/wma.c libavutil/mem.c
diego
subversion
Sat Feb 24 10:41:44 CET 2007
Author: diego
Date: Sat Feb 24 10:41:43 2007
New Revision: 8114
Modified:
trunk/doc/avutil.txt
trunk/libavcodec/avcodec.h
trunk/libavcodec/h263.c
trunk/libavcodec/mjpeg.c
trunk/libavcodec/ratecontrol.c
trunk/libavcodec/snow.c
trunk/libavcodec/svq1.c
trunk/libavcodec/wma.c
trunk/libavutil/mem.c
Log:
cosmetics: Fix another common typo, dependAnt --> dependEnt.
Modified: trunk/doc/avutil.txt
==============================================================================
--- trunk/doc/avutil.txt (original)
+++ trunk/doc/avutil.txt Sat Feb 24 10:41:43 2007
@@ -31,7 +31,7 @@
Goals:
======
-* Modular (few interdependancies and the possibility of disabling individual parts during ./configure)
+* Modular (few interdependencies and the possibility of disabling individual parts during ./configure)
* Small (source and object)
* Efficient (low CPU and memory usage)
* Useful (avoid useless features almost noone needs)
Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h (original)
+++ trunk/libavcodec/avcodec.h Sat Feb 24 10:41:43 2007
@@ -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
Modified: trunk/libavcodec/h263.c
==============================================================================
--- trunk/libavcodec/h263.c (original)
+++ trunk/libavcodec/h263.c Sat Feb 24 10:41:43 2007
@@ -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)
{
Modified: trunk/libavcodec/mjpeg.c
==============================================================================
--- trunk/libavcodec/mjpeg.c (original)
+++ trunk/libavcodec/mjpeg.c Sat Feb 24 10:41:43 2007
@@ -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);
Modified: trunk/libavcodec/ratecontrol.c
==============================================================================
--- trunk/libavcodec/ratecontrol.c (original)
+++ trunk/libavcodec/ratecontrol.c Sat Feb 24 10:41:43 2007
@@ -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;
Modified: trunk/libavcodec/snow.c
==============================================================================
--- trunk/libavcodec/snow.c (original)
+++ trunk/libavcodec/snow.c Sat Feb 24 10:41:43 2007
@@ -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 {
Modified: trunk/libavcodec/svq1.c
==============================================================================
--- trunk/libavcodec/svq1.c (original)
+++ trunk/libavcodec/svq1.c Sat Feb 24 10:41:43 2007
@@ -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;
Modified: trunk/libavcodec/wma.c
==============================================================================
--- trunk/libavcodec/wma.c (original)
+++ trunk/libavcodec/wma.c Sat Feb 24 10:41:43 2007
@@ -108,7 +108,7 @@
s->nb_block_sizes = 1;
}
- /* init rate dependant parameters */
+ /* init rate dependent parameters */
s->use_noise_coding = 1;
high_freq = s->sample_rate * 0.5;
Modified: trunk/libavutil/mem.c
==============================================================================
--- trunk/libavutil/mem.c (original)
+++ trunk/libavutil/mem.c Sat Feb 24 10:41:43 2007
@@ -26,7 +26,7 @@
#include "common.h"
-/* here we can use OS dependant allocation functions */
+/* here we can use OS dependent allocation functions */
#undef malloc
#undef free
#undef realloc
More information about the ffmpeg-cvslog
mailing list