diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 15:00:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 19:03:20 +0100 |
commit | 83fc7341a75fefe1e383a1689cc18db54b7d906a (patch) | |
tree | 6acf31e242af978336f593b4456fca584bdb19f5 | |
parent | c7ef5a4aa95cb3b13854d212d2e23a423b05c035 (diff) | |
download | ffmpeg-83fc7341a75fefe1e383a1689cc18db54b7d906a.tar.gz |
libopencore-amr: switch to ff_alloc_packet2().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libopencore-amr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/libopencore-amr.c b/libavcodec/libopencore-amr.c index 34e188e6a1..36fc899d79 100644 --- a/libavcodec/libopencore-amr.c +++ b/libavcodec/libopencore-amr.c @@ -244,8 +244,7 @@ static int amr_nb_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, s->enc_bitrate = avctx->bit_rate; } - if ((ret = ff_alloc_packet(avpkt, 32))) { - av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n"); + if ((ret = ff_alloc_packet2(avctx, avpkt, 32))) { return ret; } |