Commit c7048036 authored by Michael Niedermayer's avatar Michael Niedermayer

cook: fix return statements.

Found-by: cbsrobot
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0a7bf340
...@@ -770,7 +770,7 @@ static int decouple_info(COOKContext *q, COOKSubpacket *p, int *decouple_tab) ...@@ -770,7 +770,7 @@ static int decouple_info(COOKContext *q, COOKSubpacket *p, int *decouple_tab)
int length = end - start + 1; int length = end - start + 1;
if (start > end) if (start > end)
return; return 0;
if (vlc) if (vlc)
for (i = 0; i < length; i++) for (i = 0; i < length; i++)
...@@ -969,6 +969,7 @@ static int decode_subpacket(COOKContext *q, COOKSubpacket *p, ...@@ -969,6 +969,7 @@ static int decode_subpacket(COOKContext *q, COOKSubpacket *p,
else else
mlt_compensate_output(q, q->decode_buffer_2, &p->gains2, mlt_compensate_output(q, q->decode_buffer_2, &p->gains2,
p->mono_previous_buffer2, outbuffer, p->ch_idx + 1); p->mono_previous_buffer2, outbuffer, p->ch_idx + 1);
return 0;
} }
......
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