Commit 7e6941e1 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

libavcodec/libmp3lame: Don't free user-provided AVPacket

Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent b803993b
...@@ -279,7 +279,6 @@ static int mp3lame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, ...@@ -279,7 +279,6 @@ static int mp3lame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
if ((discard_padding < avctx->frame_size) != (avpkt->duration > 0)) { if ((discard_padding < avctx->frame_size) != (avpkt->duration > 0)) {
av_log(avctx, AV_LOG_ERROR, "discard padding overflow\n"); av_log(avctx, AV_LOG_ERROR, "discard padding overflow\n");
av_packet_unref(avpkt); av_packet_unref(avpkt);
av_free(avpkt);
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
if ((!s->delay_sent && avctx->initial_padding > 0) || discard_padding > 0) { if ((!s->delay_sent && avctx->initial_padding > 0) || discard_padding > 0) {
...@@ -288,7 +287,6 @@ static int mp3lame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, ...@@ -288,7 +287,6 @@ static int mp3lame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
10); 10);
if(!side_data) { if(!side_data) {
av_packet_unref(avpkt); av_packet_unref(avpkt);
av_free(avpkt);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
if (!s->delay_sent) { if (!s->delay_sent) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment