1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

1000l parenthesis

Originally committed as revision 12274 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-02-28 16:11:56 +00:00
parent 83f02883df
commit 48026fbef6

View File

@ -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;