diff options
author | wm4 <wm4@nowhere> | 2017-12-20 00:43:42 +0100 |
---|---|---|
committer | Martin Herkt <lachs0r@srsfckn.biz> | 2017-12-21 19:45:32 +0100 |
commit | 3412c1a1aa609a580150925aa28a8de0f10d8ef7 (patch) | |
tree | 3d9d8442ed3d83e880ffb7bdc6e1f506c80ca8ca /wscript | |
parent | 2ce7face96c3c08582cd4aebf59aa99a9d741a7f (diff) |
Restore Libav support
Libav has been broken due to the hwdec changes. This was always a
temporary situation (depended on pending patches to be merged), although
it took a bit longer. This also restores the travis config.
One code change is needed in vd_lavc.c, because it checks the AV_PIX_FMT
for videotoolbox (as opposed to the mpv format identifier), which is not
available in Libav. Add an ifdef; the affected code is for a deprecated
option anyway.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -421,7 +421,7 @@ ffmpeg_pkg_config_checks = [ ] libav_pkg_config_checks = [ 'libavutil', '>= 56.6.0', - 'libavcodec', '>= 58.5.0', + 'libavcodec', '>= 58.8.0', 'libavformat', '>= 58.1.0', 'libswscale', '>= 5.0.0', 'libavfilter', '>= 7.0.0', |