mirror of https://git.ffmpeg.org/ffmpeg.git
swresample/soxr_resample: fix error handling
Fixes CID1257659 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d5a263f480
commit
4b6f225374
|
@ -76,8 +76,12 @@ static int process(
|
||||||
AudioData *src, int src_size, int *consumed){
|
AudioData *src, int src_size, int *consumed){
|
||||||
size_t idone, odone;
|
size_t idone, odone;
|
||||||
soxr_error_t error = soxr_set_error((soxr_t)c, soxr_set_num_channels((soxr_t)c, src->ch_count));
|
soxr_error_t error = soxr_set_error((soxr_t)c, soxr_set_num_channels((soxr_t)c, src->ch_count));
|
||||||
error = soxr_process((soxr_t)c, src->ch, (size_t)src_size,
|
if (!error)
|
||||||
&idone, dst->ch, (size_t)dst_size, &odone);
|
error = soxr_process((soxr_t)c, src->ch, (size_t)src_size,
|
||||||
|
&idone, dst->ch, (size_t)dst_size, &odone);
|
||||||
|
else
|
||||||
|
idone = 0;
|
||||||
|
|
||||||
*consumed = (int)idone;
|
*consumed = (int)idone;
|
||||||
return error? -1 : odone;
|
return error? -1 : odone;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue