mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-14 11:00:08 +01:00
Use ff_packet_free_side_data instead of duplicating it.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
@@ -1121,13 +1121,7 @@ int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
|
|||||||
avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
|
avctx->coded_frame->key_frame = !!(pkt.flags & AV_PKT_FLAG_KEY);
|
||||||
}
|
}
|
||||||
/* free any side data since we cannot return it */
|
/* free any side data since we cannot return it */
|
||||||
if (pkt.side_data_elems > 0) {
|
ff_packet_free_side_data(&pkt);
|
||||||
int i;
|
|
||||||
for (i = 0; i < pkt.side_data_elems; i++)
|
|
||||||
av_free(pkt.side_data[i].data);
|
|
||||||
av_freep(&pkt.side_data);
|
|
||||||
pkt.side_data_elems = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (frame && frame->extended_data != frame->data)
|
if (frame && frame->extended_data != frame->data)
|
||||||
av_freep(&frame->extended_data);
|
av_freep(&frame->extended_data);
|
||||||
|
|||||||
Reference in New Issue
Block a user