summaryrefslogtreecommitdiffstats
path: root/audio/decode
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-07-16 12:51:48 +0200
committerwm4 <wm4@nowhere>2017-07-16 12:51:48 +0200
commitddd068491c9e8f7f77b6bba61269f867bdad204b (patch)
tree579de2a6443a52df12b1b4f813a5466eea7b7c74 /audio/decode
parent8e20ef4292719233d4b249ab714433e845cf6da2 (diff)
downloadmpv-ddd068491c9e8f7f77b6bba61269f867bdad204b.tar.bz2
mpv-ddd068491c9e8f7f77b6bba61269f867bdad204b.tar.xz
Replace remaining avcodec_close() calls
This API isn't deprecated (yet?), but it's still inferior and harder to use than avcodec_free_context(). Leave the call only in 1 case in af_lavcac3enc.c, where we apparently seriously close and reopen the encoder for whatever reason.
Diffstat (limited to 'audio/decode')
-rw-r--r--audio/decode/ad_spdif.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/audio/decode/ad_spdif.c b/audio/decode/ad_spdif.c
index 78e4c4e976..4b3e8149ec 100644
--- a/audio/decode/ad_spdif.c
+++ b/audio/decode/ad_spdif.c
@@ -137,11 +137,8 @@ static void determine_codec_params(struct dec_audio *da, AVPacket *pkt,
if (!ctx)
goto done;
- if (avcodec_open2(ctx, codec, NULL) < 0) {
- av_free(ctx); // don't attempt to avcodec_close() an unopened ctx
- ctx = NULL;
+ if (avcodec_open2(ctx, codec, NULL) < 0)
goto done;
- }
if (avcodec_send_packet(ctx, pkt) < 0)
goto done;