mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
libmp3lame: switch to ff_alloc_packet2().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
67b8c88cfe
commit
c7ef5a4aa9
@ -255,8 +255,7 @@ static int mp3lame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
||||
av_dlog(avctx, "in:%d packet-len:%d index:%d\n", avctx->frame_size, len,
|
||||
s->buffer_index);
|
||||
if (len <= s->buffer_index) {
|
||||
if ((ret = ff_alloc_packet(avpkt, len))) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
|
||||
if ((ret = ff_alloc_packet2(avctx, avpkt, len))) {
|
||||
return ret;
|
||||
}
|
||||
memcpy(avpkt->data, s->buffer, len);
|
||||
|
Loading…
Reference in New Issue
Block a user