summaryrefslogtreecommitdiff
path: root/tests/api/api-h264-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api/api-h264-test.c')
-rw-r--r--tests/api/api-h264-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/api/api-h264-test.c b/tests/api/api-h264-test.c
index e4bc0b816b..acf1636b39 100644
--- a/tests/api/api-h264-test.c
+++ b/tests/api/api-h264-test.c
@@ -134,13 +134,13 @@ static int video_decode_example(const char *input_filename)
fr->pkt_pts, fr->pkt_dts, av_frame_get_pkt_duration(fr),
number_of_written_bytes, av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes));
}
- av_free_packet(&pkt);
+ av_packet_unref(&pkt);
av_init_packet(&pkt);
}
i++;
} while (!end_of_stream || got_frame);
- av_free_packet(&pkt);
+ av_packet_unref(&pkt);
av_frame_free(&fr);
avcodec_close(ctx);
avformat_close_input(&fmt_ctx);