X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=python%2Fsetup.py;h=0ef9a4ed8d8861f4cace8240f49cf2575bb0edf6;hb=56e9569c94674100e92c395deac7ca3b9baaf9ea;hp=7b06418e83d9faa1fc8d82a0fb1bf48670ab983a;hpb=2c2871fb1fa755ae1d8dd4603546857335e14614;p=vlc diff --git a/python/setup.py b/python/setup.py index 7b06418e83..0ef9a4ed8d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,15 +1,16 @@ from distutils.core import setup, Extension -FFMPEG_DIR = '/home/cyril/ffmpeg' +FFMPEG_DIR = '../ffmpeg' vlc = Extension('vlc', sources = ['vlcmodule.c'], + include_dirs = ['../include'], libraries = ['vlc', 'rt', 'dl' , 'pthread', 'ffmpeg', 'm', - 'avcodec','memcpymmx','stream_out_transcode', + 'memcpymmx','stream_out_transcode', 'i420_rgb_mmx','i420_yuy2_mmx','i420_ymga_mmx', 'i422_yuy2_mmx','memcpymmxext','memcpy3dn', - 'encoder_ffmpeg'], - library_dirs = [ '../lib', + 'avcodec'], + library_dirs = [ '../lib', '../modules/stream_out', '../modules/encoder/ffmpeg', '../modules/misc/memcpy','../modules/video_chroma', '../modules/codec/ffmpeg', FFMPEG_DIR + '/libavcodec']) @@ -17,6 +18,6 @@ vlc = Extension('vlc', setup (name = 'PackageName', version = '1.0', - description = 'This is a demo package', + description = 'This is a demonstration package', ext_modules = [vlc])