diff options
author | James Zern <jzern@google.com> | 2013-03-06 11:11:00 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-06 22:11:46 +0100 |
commit | bcaf64b605442e1622d16da89d4ec0e7730b8a8c (patch) | |
tree | 602bba8a8f63390b54c3ffacb1fd246b6b65e592 /libavcodec/pcm.c | |
parent | c257fe1fdee5846cde8f4ccb6fa2d01190829dac (diff) | |
download | ffmpeg-bcaf64b605442e1622d16da89d4ec0e7730b8a8c.tar.gz |
normalize calls to ff_alloc_packet2
- check ret < 0
- remove excessive error log
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r-- | libavcodec/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index bae338d8f9..4a8a4f78f9 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -107,7 +107,7 @@ static int pcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, n = frame->nb_samples * avctx->channels; samples = (const short *)frame->data[0]; - if ((ret = ff_alloc_packet2(avctx, avpkt, n * sample_size))) + if ((ret = ff_alloc_packet2(avctx, avpkt, n * sample_size)) < 0) return ret; dst = avpkt->data; |