mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove (AVFormatContext**)
This commit is contained in:
parent
5b19f1d53c
commit
485b5df7cf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue