mirror of https://git.ffmpeg.org/ffmpeg.git
cook: fix return statements.
Found-by: cbsrobot Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0a7bf34042
commit
c7048036db
|
@ -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,
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue