summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-20 09:36:00 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-20 09:36:00 +0000
commit5d93f582cc0aafbc66134d46e79d73ab941f6c7e (patch)
tree257ff2992b8b73b89630b6422ec6618078f08b00 /doc
parent565585429192250c2c709337af73a38820895a8a (diff)
downloadxine-lib-5d93f582cc0aafbc66134d46e79d73ab941f6c7e.tar.gz
xine-lib-5d93f582cc0aafbc66134d46e79d73ab941f6c7e.tar.bz2
**BUGFIX**
Updated documentation about M$VC (building external ffmpeg). Added patch necessary for using ffmpeg by M$VC compiler. Updated M$VC build of xine's ff plugin - removed ugly ifdef, used external ffmpeg as whole. CVS patchset: 7419 CVS date: 2005/02/20 09:36:00
Diffstat (limited to 'doc')
-rw-r--r--doc/README.WIN3211
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/README.WIN32 b/doc/README.WIN32
index 725462fb7..8abc80530 100644
--- a/doc/README.WIN32
+++ b/doc/README.WIN32
@@ -113,7 +113,13 @@ How to build xine in M$ Visual C:
Under MinGW you can compile ffmpeg for xine by this way:
#
- # for cross-compiling add "--cross-prefix=i386-mingw32-"
+ # run the script/patch necessary for MSVC a for xine
+ #
+ cd ffmpeg
+ sh ../xine-lib/win32/scripts/ffmpeg_win32.patch
+
+ #
+ # for cross-compiling add "--cross-prefix=i386-mingw32-" and "--disable-mmx"
#
./configure \
--enable-gpl \
@@ -127,6 +133,9 @@ How to build xine in M$ Visual C:
# for cross-compiling finalize linking by running this command in
# libavcodec/ directory
#
+ # it's done automatically if you have 'LIB.EXE' linked to 'lib' in your
+ # $PATH and set wine
+ #
wine LIB.EXE /machine:i386 /def:avcodec.def
#