From 485b5df7cf8c4d780584d94d27803f10288cc318 Mon Sep 17 00:00:00 2001 From: raven02 Date: Sun, 6 Apr 2014 17:32:28 +0800 Subject: [PATCH] Remove (AVFormatContext**) --- Core/HLE/sceMp3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceMp3.cpp b/Core/HLE/sceMp3.cpp index 8eef998ead..beac952a6c 100644 --- a/Core/HLE/sceMp3.cpp +++ b/Core/HLE/sceMp3.cpp @@ -372,7 +372,7 @@ int __Mp3InitContext(Mp3Context *ctx) { int ret; // Load audio buffer - if ((ret = avformat_open_input((AVFormatContext**)&ctx->avformat_context, NULL, av_find_input_format("mp3"), NULL)) < 0) { + if ((ret = avformat_open_input(&ctx->avformat_context, NULL, av_find_input_format("mp3"), NULL)) < 0) { ERROR_LOG(ME, "avformat_open_input: Cannot open input %d", ret); return -1; }