This website requires JavaScript.
Explore
Help
Sign In
RepoMirrors
/
mpv
mirror of
https://github.com/mpv-player/mpv
Watch
1
Star
0
Fork
You've already forked mpv
0
Code
Issues
Releases
Wiki
Activity
78292058cc
mpv
/
common
/
av_log.h
3 lines
57 B
C
Raw
Normal View
History
Unescape
Escape
cleanup: do libav* initialization on startup Do the global initialization of libavcodec and libavformat (avcodec_register_all(), av_register_all()) immediately on program startup and remove the initialization calls from various individual modules that use libavcodec/libavformat functionality.
2011-07-17 21:28:22 +00:00
void
init_libav
(
void
)
;
mplayer: print ffmpeg library versions along with mpv version info Also change what the FFmpeg version info looks like, and additionally dump lavfi/lavr/lswr versions. (Don't bother with libavdevice and libpostproc, they're not important enough.) Unfortunately, there's no "single" FFmpeg/Libav version due to fatal braindeath on the FFmpeg/Libav side. We can't map the versions to releases either (it simply isn't accessible anywhere).
2013-10-14 17:48:58 +00:00
void
print_libav_versions
(
int
v
)
;