Browse Source

Merge commit '7c710c38f6481b892e01d3c1e4781ad160b2935e' into release/2.4

* commit '7c710c38f6481b892e01d3c1e4781ad160b2935e':
  audiointerleave: check av_new_packet return value

Conflicts:
	libavformat/audiointerleave.c

See: 3ca8a23288
Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4.7
Michael Niedermayer 11 years ago
parent
commit
298f7f1fac
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      libavformat/audiointerleave.c

+ 4
- 3
libavformat/audiointerleave.c View File

@@ -80,13 +80,14 @@ static int interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt,
{
AVStream *st = s->streams[stream_index];
AudioInterleaveContext *aic = st->priv_data;
int ret;
int size = FFMIN(av_fifo_size(aic->fifo), *aic->samples * aic->sample_size);
if (!size || (!flush && size == av_fifo_size(aic->fifo)))
return 0;

if (av_new_packet(pkt, size) < 0)
return AVERROR(ENOMEM);
ret = av_new_packet(pkt, size);
if (ret < 0)
return ret;
av_fifo_generic_read(aic->fifo, pkt->data, size, NULL);

pkt->dts = pkt->pts = aic->dts;


Loading…
Cancel
Save