Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Source/Core/VideoCommon/FrameDumpFFMpeg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,21 @@ void InitAVCodec()
}
});

const AVCodec* codec = nullptr;
void* i = 0;
while((codec = av_codec_iterate(&i)))
{
if(av_codec_is_encoder(codec))
INFO_LOG_FMT(FRAMEDUMP, "codec: {} and {}", codec->long_name, codec->name);
}

const AVOutputFormat* oformat = nullptr;
i = 0;
while((oformat = av_muxer_iterate(&i)))
{
INFO_LOG_FMT(FRAMEDUMP, "format: {} and {}", oformat->long_name, oformat->name);
}

// TODO: We never call avformat_network_deinit.
avformat_network_init();

Expand Down
Loading