Commit 37fa4b9b authored by Lukasz Marek's avatar Lukasz Marek

lavf/audiointerleave: return more meaningful error codes

Signed-off-by: 's avatarLukasz Marek <lukasz.m.luki2@gmail.com>
parent 2ed9e17e
...@@ -45,11 +45,11 @@ int ff_audio_interleave_init(AVFormatContext *s, ...@@ -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, ...@@ -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 ...@@ -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);
......
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