From a648584dd366450bc62a820541338fa40e93069e Mon Sep 17 00:00:00 2001
From: Antonio Ospite <ao2@ao2.it>
Date: Wed, 28 Feb 2018 13:25:07 +0100
Subject: [PATCH] am7xxx-play: remove useless call to avcodec_close() in
 video_output_init()

If the code reaches the "cleanup" exit path in video_output_init() the
output codec context was never opened, so there is no need to close it.
---
 examples/am7xxx-play.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c
index b43adc6..88d398a 100644
--- a/examples/am7xxx-play.c
+++ b/examples/am7xxx-play.c
@@ -266,7 +266,6 @@ static int video_output_init(struct video_output_ctx *output_ctx,
 	goto out;
 
 cleanup:
-	avcodec_close(output_codec_ctx);
 	avcodec_free_context(&output_codec_ctx);
 out:
 	return ret;
-- 
2.1.4