From 47fb0a1baec050b2a66ea831b198b424d26a15e9 Mon Sep 17 00:00:00 2001 From: Cyril Deguet Date: Thu, 22 May 2003 20:06:19 +0000 Subject: [PATCH] * at last the python module works again ! (so stupid: the flag -lavcodec had to be at the *end* of the line !) --- python/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/setup.py b/python/setup.py index 7b06418e83..bb1c71d3f9 100644 --- a/python/setup.py +++ b/python/setup.py @@ -5,11 +5,11 @@ FFMPEG_DIR = '/home/cyril/ffmpeg' vlc = Extension('vlc', sources = ['vlcmodule.c'], 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', + 'encoder_ffmpeg','avcodec'], + library_dirs = [ '../lib', '../modules/stream_out', '../modules/encoder/ffmpeg', '../modules/misc/memcpy','../modules/video_chroma', '../modules/codec/ffmpeg', FFMPEG_DIR + '/libavcodec']) -- 2.39.2