mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-23 04:24:35 +02:00
lavf/audiointerleave: return more meaningful error codes
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
This commit is contained in:
parent
2ed9e17ed1
commit
37fa4b9bb9
@ -45,11 +45,11 @@ int ff_audio_interleave_init(AVFormatContext *s,
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (!samples_per_frame)
|
if (!samples_per_frame)
|
||||||
return -1;
|
return AVERROR(EINVAL);
|
||||||
|
|
||||||
if (!time_base.num) {
|
if (!time_base.num) {
|
||||||
av_log(s, AV_LOG_ERROR, "timebase not set for audio interleave\n");
|
av_log(s, AV_LOG_ERROR, "timebase not set for audio interleave\n");
|
||||||
return -1;
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
for (i = 0; i < s->nb_streams; i++) {
|
for (i = 0; i < s->nb_streams; i++) {
|
||||||
AVStream *st = s->streams[i];
|
AVStream *st = s->streams[i];
|
||||||
@ -60,7 +60,7 @@ int ff_audio_interleave_init(AVFormatContext *s,
|
|||||||
av_get_bits_per_sample(st->codec->codec_id)) / 8;
|
av_get_bits_per_sample(st->codec->codec_id)) / 8;
|
||||||
if (!aic->sample_size) {
|
if (!aic->sample_size) {
|
||||||
av_log(s, AV_LOG_ERROR, "could not compute sample size\n");
|
av_log(s, AV_LOG_ERROR, "could not compute sample size\n");
|
||||||
return -1;
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
aic->samples_per_frame = samples_per_frame;
|
aic->samples_per_frame = samples_per_frame;
|
||||||
aic->samples = aic->samples_per_frame;
|
aic->samples = aic->samples_per_frame;
|
||||||
@ -114,7 +114,7 @@ int ff_audio_rechunk_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt
|
|||||||
unsigned new_size = av_fifo_size(aic->fifo) + pkt->size;
|
unsigned new_size = av_fifo_size(aic->fifo) + pkt->size;
|
||||||
if (new_size > aic->fifo_size) {
|
if (new_size > aic->fifo_size) {
|
||||||
if (av_fifo_realloc2(aic->fifo, new_size) < 0)
|
if (av_fifo_realloc2(aic->fifo, new_size) < 0)
|
||||||
return -1;
|
return AVERROR(ENOMEM);
|
||||||
aic->fifo_size = new_size;
|
aic->fifo_size = new_size;
|
||||||
}
|
}
|
||||||
av_fifo_generic_write(aic->fifo, pkt->data, pkt->size, NULL);
|
av_fifo_generic_write(aic->fifo, pkt->data, pkt->size, NULL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user