Commit bb1135c8 authored by Benjamin Larsson's avatar Benjamin Larsson

Remove parentheses

Originally committed as revision 18692 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fcc01e64
......@@ -1010,7 +1010,7 @@ static int cook_decode_frame(AVCodecContext *avctx,
for(i=1;i<q->num_subpackets;i++){
q->subpacket[i].size = 2 * buf[avctx->block_align - q->num_subpackets + i];
q->subpacket[0].size -= (q->subpacket[i].size + 1);
q->subpacket[0].size -= q->subpacket[i].size + 1;
}
/* decode supbackets */
......
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