Mercurial > libavcodec.hg
changeset 6424:66969d0e4a6d libavcodec
1000l parenthesis
author | bcoudurier |
---|---|
date | Thu, 28 Feb 2008 16:11:56 +0000 |
parents | 4cf5fde3c99e |
children | 8b119a5a0644 |
files | rawdec.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/rawdec.c Thu Feb 28 16:08:52 2008 +0000 +++ b/rawdec.c Thu Feb 28 16:11:56 2008 +0000 @@ -109,7 +109,7 @@ //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;