summaryrefslogtreecommitdiff
path: root/libavcodec/rawdec.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-02-28 16:11:56 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-02-28 16:11:56 +0000
commit48026fbef68edeaf4b8053ed551f80122a1d3af4 (patch)
treec3911bcb0d360681f483ace68c1f3b9f9dd40779 /libavcodec/rawdec.c
parent83f02883df1936988d54fb0861798e4f906c8655 (diff)
1000l parenthesis
Originally committed as revision 12274 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r--libavcodec/rawdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index 9fbdbb79e1..11d2a185e8 100644
--- a/libavcodec/rawdec.c
+++ b/libavcodec/rawdec.c
@@ -109,7 +109,7 @@ static int raw_decode(AVCodecContext *avctx,
//4bpp raw in avi and mov (yes this is ugly ...)
if(avctx->bits_per_sample == 4 && avctx->pix_fmt==PIX_FMT_PAL8 &&
- !avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' ')){
+ (!avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' '))){
int i;
for(i=256*2; i+1 < context->length>>1; i++){
context->buffer[2*i+0]= buf[i-256*2]>>4;