Commit 1575fead authored by bcoudurier's avatar bcoudurier

1000l parenthesis

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12274 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4b37e428
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment