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/postprocess_template.c | |
parent | 4fc2c6447ff5432da131082662e0345f8772721c (diff) | |
download | ffmpeg-streaming-4df8ca9df2d960b9a112d60cdfd61d7f10f44cfa.zip ffmpeg-streaming-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/postprocess_template.c')
-rw-r--r-- | libavcodec/libpostproc/postprocess_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libpostproc/postprocess_template.c b/libavcodec/libpostproc/postprocess_template.c index 7ebc08b..9ffd293 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++){ |