diff options
author | Jan Beich <[email protected]> | 2020-01-03 16:20:20 +0000 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2020-01-23 02:55:00 -0500 |
commit | d4a1f1be6cfac1ef598e6c576ed247cd7a230a7f (patch) | |
tree | f23543ccc2870a5a9ff01e23ec28df59d6450031 /make/configure.py | |
parent | 92ea3b13f5c207598ada6c8e92dbe8d36a573f99 (diff) |
qsv: add support for FreeBSD
Diffstat (limited to 'make/configure.py')
-rw-r--r-- | make/configure.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make/configure.py b/make/configure.py index 095cfc0c7..e8c721f71 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1413,7 +1413,7 @@ def createCLI( cross = None ): grp.add_argument( '--enable-nvenc', dest="enable_nvenc", default=IfHost( True, '*-*-linux*', '*-*-mingw*', none=False).value, action='store_true', help=(( 'enable %s' %h ) if h != argparse.SUPPRESS else h) ) grp.add_argument( '--disable-nvenc', dest="enable_nvenc", action='store_false', help=(( 'disable %s' %h ) if h != argparse.SUPPRESS else h) ) - h = IfHost( 'Intel QSV video encoder/decoder', '*-*-linux*', '*-*-mingw*', none=argparse.SUPPRESS).value + h = IfHost( 'Intel QSV video encoder/decoder', '*-*-linux*', '*-*-freebsd*', '*-*-mingw*', none=argparse.SUPPRESS).value grp.add_argument( '--enable-qsv', dest="enable_qsv", default=IfHost(True, "*-*-mingw*", none=False).value, action='store_true', help=(( 'enable %s' %h ) if h != argparse.SUPPRESS else h) ) grp.add_argument( '--disable-qsv', dest="enable_qsv", action='store_false', help=(( 'disable %s' %h ) if h != argparse.SUPPRESS else h) ) @@ -1690,7 +1690,7 @@ try: none=False).value and options.enable_x265) # Disable QSV on unsupported platforms - options.enable_qsv = IfHost(options.enable_qsv, '*-*-linux*', + options.enable_qsv = IfHost(options.enable_qsv, '*-*-linux*', '*-*-freebsd*', '*-*-mingw*', none=False).value # Disable VCE on unsupported platforms options.enable_vce = IfHost(options.enable_vce, '*-*-linux*', '*-*-mingw*', @@ -2130,7 +2130,7 @@ int main() stdout.write( 'Enable NVENC: %s' % options.enable_nvenc ) stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' ) stdout.write( 'Enable QSV: %s' % options.enable_qsv ) - stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' ) + stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'freebsd' or host_tuple.system == 'mingw') else stdout.write( '\n' ) stdout.write( 'Enable VCE: %s' % options.enable_vce ) stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' ) |