diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-25 18:07:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-25 18:07:25 +0000 |
commit | 4df8ca9df2d960b9a112d60cdfd61d7f10f44cfa (patch) | |
tree | 32ba1d89017a1a144bce6424d38ac1378a0de575 /libavcodec/libpostproc | |
parent | 4fc2c6447ff5432da131082662e0345f8772721c (diff) | |
download | ffmpeg-4df8ca9df2d960b9a112d60cdfd61d7f10f44cfa.tar.gz |
warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
Originally committed as revision 3156 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libpostproc')
-rw-r--r-- | libavcodec/libpostproc/postprocess.c | 2 | ||||
-rw-r--r-- | libavcodec/libpostproc/postprocess_template.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libpostproc/postprocess.c b/libavcodec/libpostproc/postprocess.c index d4f6138f84..cf36599554 100644 --- a/libavcodec/libpostproc/postprocess.c +++ b/libavcodec/libpostproc/postprocess.c @@ -123,7 +123,7 @@ static uint64_t __attribute__((aligned(8))) attribute_used b80= 0x808080808080 static uint8_t clip_table[3*256]; static uint8_t * const clip_tab= clip_table + 256; -static int verbose= 0; +static const int verbose= 0; static const int attribute_used deringThreshold= 20; diff --git a/libavcodec/libpostproc/postprocess_template.c b/libavcodec/libpostproc/postprocess_template.c index 7ebc08bd4a..9ffd2937f4 100644 --- a/libavcodec/libpostproc/postprocess_template.c +++ b/libavcodec/libpostproc/postprocess_template.c @@ -2789,7 +2789,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int uint64_t * const yHistogram= c.yHistogram; uint8_t * const tempSrc= c.tempSrc; uint8_t * const tempDst= c.tempDst; - const int mbWidth= isColor ? (width+7)>>3 : (width+15)>>4; + //const int mbWidth= isColor ? (width+7)>>3 : (width+15)>>4; #ifdef HAVE_MMX for(i=0; i<57; i++){ |