1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-25 04:38:01 +00:00
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16171 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-08-01 23:43:40 +00:00
parent 2ad3a3c39d
commit 205db11074

22
README
View File

@ -70,9 +70,9 @@ created. You can later update your sources by saying
from within that directory. from within that directory.
_______________________________________________ _________________________________________________________
STEP1: Installing FFmpeg libavcodec/libavformat STEP1: Installing FFmpeg libavcodec/libavutil/libavformat
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you are using an official (pre)release or a CVS snapshot, skip this step, If you are using an official (pre)release or a CVS snapshot, skip this step,
since official releases include libavcodec. CVS sources do not include since official releases include libavcodec. CVS sources do not include
@ -88,21 +88,23 @@ To get the FFmpeg sources, use the following commands in a suitable directory
outside the MPlayer source directory: outside the MPlayer source directory:
cvs -d:pserver:anonymous@mplayerhq.hu:/cvsroot/ffmpeg login cvs -d:pserver:anonymous@mplayerhq.hu:/cvsroot/ffmpeg login
cvs -z3 -d:pserver:anonymous@mplayerhq.hu:/cvsroot/ffmpeg co ffmpeg/libavcodec cvs -z3 -d:pserver:anonymous@mplayerhq.hu:/cvsroot/ffmpeg co ffmpeg
When asked for a password, you can just hit enter. A directory named 'ffmpeg' When asked for a password, you can just hit enter. A directory named 'ffmpeg'
with a subdirectory named 'libavcodec' inside will be created. Copy (symbolic with subdirectories named 'libavcodec' and 'libavutil' inside will be created.
linking does NOT suffice) this subdirectory into the MPlayer source tree. Copy (symbolic linking does NOT suffice) these subdirectories into the MPlayer
source tree.
In order to force automatic updates of libavcodec when you update MPlayer, add In order to force automatic updates of libavcodec when you update MPlayer, add
the following line to main/CVS/Entries: the following lines to main/CVS/Entries:
D/libavcodec//// D/libavcodec////
D/libavutil////
FFmpeg also contains libavformat, a library to decode container formats that FFmpeg also contains libavformat, a library to decode container formats that
can optionally be used to extend MPlayer's container format support. Get it can optionally be used to extend MPlayer's container format support. If you
from FFmpeg CVS by the same steps outlined above for libavcodec, just wish to use it, also copy the libavformat subdirectory into the MPlayer
substitute libavcodec by libavformat everywhere. source tree and add another line to main/CVS/Entries.
_______________________________ _______________________________