summaryrefslogtreecommitdiff
path: root/libavcodec/libopencore-amr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-22 15:00:47 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-03-22 19:03:20 +0100
commit83fc7341a75fefe1e383a1689cc18db54b7d906a (patch)
tree6acf31e242af978336f593b4456fca584bdb19f5 /libavcodec/libopencore-amr.c
parentc7ef5a4aa95cb3b13854d212d2e23a423b05c035 (diff)
libopencore-amr: switch to ff_alloc_packet2().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libopencore-amr.c')
-rw-r--r--libavcodec/libopencore-amr.c3
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;
}