Turn back on ffmpeg debug logging

This commit is contained in:
Isaac Connor 2018-10-24 13:11:09 -04:00
parent 9148d3f7c4
commit c48ce09068
1 changed files with 3 additions and 0 deletions

View File

@ -32,7 +32,10 @@ void FFMPEGInit() {
av_log_set_level( AV_LOG_DEBUG );
else
av_log_set_level( AV_LOG_QUIET );
#if LIBAVCODEC_VERSION_CHECK(58, 18, 0, 64, 0)
#else
av_register_all();
#endif
avformat_network_init();
bInit = true;
}