summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@overt.org>2022-11-29 11:16:57 -0800
committerPhilip Langdale <github.philipl@overt.org>2022-12-01 10:45:47 -0800
commit70683b891672aba401c111e4afc599ca230d7314 (patch)
tree68a6cf5f899498c9cf0081b7278a61f9ec786c9b /wscript
parent11229e7f7177220dd1607625a3a1bfc9d34a5f51 (diff)
downloadmpv-70683b891672aba401c111e4afc599ca230d7314.tar.bz2
mpv-70683b891672aba401c111e4afc599ca230d7314.tar.xz
ffmpeg: increase minimum required version to 4.4
Now that 0.35 has been released, we can consider increasing our minimum required ffmpeg version. Currently, we think 4.4 is the most recent version we can move to (from the current requirement of 4.0). This allows us to remove a few conditionals. There are more that we won't be able to remove unless we move further up to 5.1.
Diffstat (limited to 'wscript')
-rw-r--r--wscript14
1 files changed, 7 insertions, 7 deletions
diff --git a/wscript b/wscript
index 9fc7583225..1acba8a756 100644
--- a/wscript
+++ b/wscript
@@ -412,12 +412,12 @@ libav_dependencies = [
{
'name': 'ffmpeg',
'desc': 'FFmpeg library',
- 'func': check_pkg_config('libavutil', '>= 56.12.100',
- 'libavcodec', '>= 58.16.100',
- 'libavformat', '>= 58.9.100',
- 'libswscale', '>= 5.0.101',
- 'libavfilter', '>= 7.14.100',
- 'libswresample', '>= 3.0.100'),
+ 'func': check_pkg_config('libavutil', '>= 56.70.100',
+ 'libavcodec', '>= 58.134.100',
+ 'libavformat', '>= 58.76.100',
+ 'libswscale', '>= 5.9.100',
+ 'libavfilter', '>= 7.110.100',
+ 'libswresample', '>= 3.9.100'),
'req': True,
'fmsg': "Unable to find development files for some of the required \
FFmpeg libraries. Git master is recommended."
@@ -428,7 +428,7 @@ FFmpeg libraries. Git master is recommended."
}, {
'name': '--libavdevice',
'desc': 'libavdevice',
- 'func': check_pkg_config('libavdevice', '>= 57.0.0'),
+ 'func': check_pkg_config('libavdevice', '>= 58.13.100'),
}
]