From: Antonio Ospite <ao2@ao2.it>
Date: Thu, 30 Jun 2016 16:05:53 +0000 (+0200)
Subject: am7xxx-play: get rid of the deprecated function av_free_packet()
X-Git-Tag: v0.1.7~34
X-Git-Url: https://git.ao2.it/libam7xxx.git/commitdiff_plain/ac1a48fa044f7bd505010900344f6eb1b52d5fb7?hp=8e74aa421beb9a1949e251835926c62850b5aa31

am7xxx-play: get rid of the deprecated function av_free_packet()

This also fixes this warning:

  warning: ‘av_free_packet’ is deprecated
---

diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c
index ad2ca6f..46a91c9 100644
--- a/examples/am7xxx-play.c
+++ b/examples/am7xxx-play.c
@@ -458,8 +458,8 @@ static int am7xxx_play(const char *input_format_string,
 		}
 end_while:
 		if (!output_ctx.raw_output && got_packet)
-			av_free_packet(&out_packet);
-		av_free_packet(&in_packet);
+			av_packet_unref(&out_packet);
+		av_packet_unref(&in_packet);
 	}
 
 	sws_freeContext(sw_scale_ctx);