From 2b6699f024ae9968244d02d3c81e57737d603b62 Mon Sep 17 00:00:00 2001 From: James Almer Date: Tue, 13 Mar 2018 18:55:49 -0300 Subject: avcodec/hapqa_extract: move the reference in the bsf internal buffer There's no need to allocate a new packet for it. Signed-off-by: James Almer --- libavcodec/hapqa_extract_bsf.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'libavcodec/hapqa_extract_bsf.c') diff --git a/libavcodec/hapqa_extract_bsf.c b/libavcodec/hapqa_extract_bsf.c index 45fe9fbe8f..333efb2e3a 100644 --- a/libavcodec/hapqa_extract_bsf.c +++ b/libavcodec/hapqa_extract_bsf.c @@ -45,7 +45,7 @@ static int check_texture(HapqaExtractContext *ctx, int section_type) { } } -static int hapqa_extract(AVBSFContext *bsf, AVPacket *out) +static int hapqa_extract(AVBSFContext *bsf, AVPacket *pkt) { HapqaExtractContext *ctx = bsf->priv_data; GetByteContext gbc; @@ -53,14 +53,13 @@ static int hapqa_extract(AVBSFContext *bsf, AVPacket *out) enum HapSectionType section_type; int start_section_size; int target_packet_size = 0; - AVPacket *in; int ret = 0; - ret = ff_bsf_get_packet(bsf, &in); + ret = ff_bsf_get_packet_ref(bsf, pkt); if (ret < 0) return ret; - bytestream2_init(&gbc, in->data, in->size); + bytestream2_init(&gbc, pkt->data, pkt->size); ret = ff_hap_parse_section_header(&gbc, §ion_size, §ion_type); if (ret != 0) goto fail; @@ -95,14 +94,12 @@ static int hapqa_extract(AVBSFContext *bsf, AVPacket *out) } } - av_packet_move_ref(out, in); - out->data += start_section_size; - out->size = target_packet_size; + pkt->data += start_section_size; + pkt->size = target_packet_size; fail: if (ret < 0) - av_packet_unref(out); - av_packet_free(&in); + av_packet_unref(pkt); return ret; } -- cgit v1.2.3