comparison loco.c @ 6750:c93570aeb3eb libavcodec

Remove unnecessary parentheses from return calls.
author diego
date Tue, 06 May 2008 09:16:36 +0000
parents a4104482ceef
children e943e1409077
comparison
equal deleted inserted replaced
6749:b1778cf7f3b1 6750:c93570aeb3eb
150 data[i * step] = loco_predict(&data[i * step], stride, step) + val; 150 data[i * step] = loco_predict(&data[i * step], stride, step) + val;
151 } 151 }
152 data += stride; 152 data += stride;
153 } 153 }
154 154
155 return ((get_bits_count(&rc.gb) + 7) >> 3); 155 return (get_bits_count(&rc.gb) + 7) >> 3;
156 } 156 }
157 157
158 static int decode_frame(AVCodecContext *avctx, 158 static int decode_frame(AVCodecContext *avctx,
159 void *data, int *data_size, 159 void *data, int *data_size,
160 const uint8_t *buf, int buf_size) 160 const uint8_t *buf, int buf_size)