-
-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1046 tweak to allow us to build against SDK v6 - tested on Linux only
git-svn-id: https://xpra.org/svn/Xpra/trunk@11471 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
5 changed files
with
2,438 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
# This file is part of Xpra. | ||
# Copyright (C) 2010-2014 Antoine Martin <[email protected]> | ||
# Copyright (C) 2010-2015 Antoine Martin <[email protected]> | ||
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any | ||
# later version. See the file COPYING for details. | ||
|
||
|
@@ -20,7 +20,7 @@ | |
|
||
#these codecs may well not load because we | ||
#do not require the libraries to be installed | ||
NOWARN = ["nvenc4", "nvenc5", "opencl"] | ||
NOWARN = ["nvenc4", "nvenc5", "nvenc6", "opencl"] | ||
|
||
SELFTEST = os.environ.get("XPRA_CODEC_SELFTEST", "1")=="1" | ||
FULL_SELFTEST = os.environ.get("XPRA_CODEC_FULL_SELFTEST", "0")=="1" | ||
|
@@ -142,7 +142,7 @@ def load_codecs(encoders=True, decoders=True, csc=True): | |
codec_import_check("enc_x265", "x265 encoder", "xpra.codecs.enc_x265", "xpra.codecs.enc_x265.encoder", "Encoder") | ||
add_codec_version("x265", "xpra.codecs.enc_x265.encoder") | ||
|
||
for v in (4, 5): | ||
for v in (4, 5, 6): | ||
codec_import_check("nvenc%s" % v, "nvenc encoder", "xpra.codecs.nvenc%s" % v, "xpra.codecs.nvenc%s.encoder" % v, "Encoder") | ||
add_codec_version("nvenc%s" % v, "xpra.codecs.nvenc%s.encoder" % v) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This file is part of Xpra. | ||
# Copyright (C) 2015 Antoine Martin <[email protected]> | ||
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any | ||
# later version. See the file COPYING for details. |
Oops, something went wrong.