diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-13 19:57:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-13 19:57:18 +0100 |
commit | 03a080547dacdec0d8c181df700ef8dd1c092913 (patch) | |
tree | 8d7c100e1e12f9dbc3f106e817f758c9dbb40b3c /modules/webm/libvpx/SCsub | |
parent | 4c000a05f6275ae7b539927d4a2608cb54e34308 (diff) | |
parent | 3edd3cd377511b4cef27478be24f7562273d69ce (diff) |
Merge pull request #12014 from hi-ogawa/fix-video-playback
Fix video playback
Diffstat (limited to 'modules/webm/libvpx/SCsub')
-rw-r--r-- | modules/webm/libvpx/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/webm/libvpx/SCsub b/modules/webm/libvpx/SCsub index fd8d762a5e..73ba17d184 100644 --- a/modules/webm/libvpx/SCsub +++ b/modules/webm/libvpx/SCsub @@ -298,7 +298,7 @@ if webm_cpu_x86: if not yasm_found: webm_cpu_x86 = False - print "YASM is necessary for WebM SIMD optimizations." + print("YASM is necessary for WebM SIMD optimizations.") webm_simd_optimizations = False @@ -345,7 +345,7 @@ if webm_cpu_arm: webm_simd_optimizations = True if webm_simd_optimizations == False: - print "WebM SIMD optimizations are disabled. Check if your CPU architecture, CPU bits or platform are supported!" + print("WebM SIMD optimizations are disabled. Check if your CPU architecture, CPU bits or platform are supported!") env_libvpx.add_source_files(env.modules_sources, libvpx_sources) |