mirror of
https://github.com/mpv-player/mpv
synced 2025-01-12 18:02:36 +00:00
build: disable ancient V4L TV support by default
This commit is contained in:
parent
7bfeb8bd26
commit
7b84a3b04e
5
wscript
5
wscript
@ -812,14 +812,17 @@ radio_and_tv_features = [
|
||||
'name': '--tv',
|
||||
'desc': 'TV interface',
|
||||
'func': check_true,
|
||||
'default': 'disable',
|
||||
}, {
|
||||
'name': 'sys_videoio_h',
|
||||
'desc': 'videoio.h',
|
||||
'func': check_cc(header_name=['sys/time.h', 'sys/videoio.h'])
|
||||
'func': check_cc(header_name=['sys/time.h', 'sys/videoio.h']),
|
||||
'deps': [ 'tv' ],
|
||||
}, {
|
||||
'name': 'videodev',
|
||||
'desc': 'videodev2.h',
|
||||
'func': check_cc(header_name=['sys/time.h', 'linux/videodev2.h']),
|
||||
'deps': [ 'tv' ],
|
||||
'deps_neg': [ 'sys_videoio_h' ],
|
||||
}, {
|
||||
'name': '--tv-v4l2',
|
||||
|
Loading…
Reference in New Issue
Block a user