avcodec/libopusenc: Don't free user-provided AVPacket
Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> (cherry picked from commit b803993b6d99423c8c1e01e7e206e3916a98d5d5)
This commit is contained in:
parent
e4c8d7d5da
commit
2becd7548a
@ -493,7 +493,6 @@ static int libopus_encode(AVCodecContext *avctx, AVPacket *avpkt,
|
|||||||
// Check if subtraction resulted in an overflow
|
// Check if subtraction resulted in an overflow
|
||||||
if ((discard_padding < opus->opts.packet_size) != (avpkt->duration > 0)) {
|
if ((discard_padding < opus->opts.packet_size) != (avpkt->duration > 0)) {
|
||||||
av_packet_unref(avpkt);
|
av_packet_unref(avpkt);
|
||||||
av_free(avpkt);
|
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
if (discard_padding > 0) {
|
if (discard_padding > 0) {
|
||||||
@ -502,7 +501,6 @@ static int libopus_encode(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);
|
||||||
}
|
}
|
||||||
AV_WL32(side_data + 4, discard_padding);
|
AV_WL32(side_data + 4, discard_padding);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user