Skip to content

Commit 493afe0

Browse files
committed
Remove video encoding libs from windows builds
1 parent 7299c6c commit 493afe0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,7 @@ def check_libraries(libraries, headers, extra_lib_dirs=[], extra_inc_dirs=[]):
305305
# - Lib and dll files - just grab by current location
306306
win_dlls = glob.glob(os.path.join('windows-main', LIBS, '*.dll'))
307307
win_libs = glob.glob(os.path.join('windows-main', LIBS, '*.lib'))
308-
#If we got this far, enable video, tiff
309-
defines += [('HAVE_LIBAVCODEC', '1'), ('HAVE_SWSCALE', '1')]
308+
#If we got this far, enable tiff
310309
defines += [('HAVE_LIBTIFF', '1')]
311310

312311
except (Exception) as e:
@@ -327,9 +326,6 @@ def check_libraries(libraries, headers, extra_lib_dirs=[], extra_inc_dirs=[]):
327326
#Copy dlls into ./lavavu so can be found by package_data
328327
for d in win_dlls:
329328
shutil.copy(d, 'lavavu')
330-
#print(libs)
331-
#print(inc_dirs)
332-
#print(lib_dirs)
333329
else:
334330
#POSIX only - find external dependencies
335331
cflags += ['-std=c++0x']

0 commit comments

Comments
 (0)