mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
AVIDump: av_register_all is deprecated/unneeded since 58.9.100
This commit is contained in:
parent
865d737efd
commit
e45698aaa0
@ -58,7 +58,9 @@ static void InitAVCodec()
|
|||||||
static bool first_run = true;
|
static bool first_run = true;
|
||||||
if (first_run)
|
if (first_run)
|
||||||
{
|
{
|
||||||
|
#if LIBAVCODEC_VERSION_MICRO >= 100 && LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 9, 100)
|
||||||
av_register_all();
|
av_register_all();
|
||||||
|
#endif
|
||||||
avformat_network_init();
|
avformat_network_init();
|
||||||
first_run = false;
|
first_run = false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user