Commit 9acf5341 authored by Andreas Cadhalpun's avatar Andreas Cadhalpun

openal-dec: replace av_destruct_packet with av_free_packet

Reviewed-by: 's avatarwm4 <nfxjfg@googlemail.com>
Signed-off-by: 's avatarAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
parent c363843a
...@@ -204,7 +204,7 @@ static int read_packet(AVFormatContext* ctx, AVPacket *pkt) ...@@ -204,7 +204,7 @@ static int read_packet(AVFormatContext* ctx, AVPacket *pkt)
fail: fail:
/* Handle failure */ /* Handle failure */
if (pkt->data) if (pkt->data)
av_destruct_packet(pkt); av_free_packet(pkt);
if (error_msg) if (error_msg)
av_log(ctx, AV_LOG_ERROR, "Error: %s\n", error_msg); av_log(ctx, AV_LOG_ERROR, "Error: %s\n", error_msg);
return error; return error;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment