note on new demuxers and codecs, add them to lav* instead of libmp*

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25900 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ivo 2008-01-28 12:11:41 +00:00
parent d9d9086a84
commit 1203499e51
5 changed files with 12 additions and 0 deletions

View File

@ -4,6 +4,9 @@ updated to libmpcodecs arch by A'rpi
SEE ALSO: libmpcodecs.txt !!!
NOTE: If you want to implement a new codec, please add it to libavcodec.
libmpcodecs is considered deprecated.
Introduction
------------
I've developed a number of open source decoders for the MPlayer project,

View File

@ -1,3 +1,6 @@
NOTE: If you want to implement a new decoder, please add it to libavcodec.
libmpcodecs is considered deprecated.
The libMPcodecs API details, hints - by A'rpi
==================================

View File

@ -97,6 +97,8 @@ vd_functions_t* mpcodecs_vd_drivers[] = {
#if defined(USE_QTX_CODECS) || defined(MACOSX)
&mpcodecs_vd_qtvideo,
#endif
/* Please do not add any new decoders here. If you want to implement a new
* decoder, add it to libavcodec */
NULL
};

View File

@ -41,6 +41,8 @@ static vf_info_t* encoder_list[]={
#ifdef HAVE_X264
&ve_info_x264,
#endif
/* Please do not add any new encoders here. If you want to implement a new
* encoder, add it to libavcodec */
NULL
};

View File

@ -141,6 +141,8 @@ const demuxer_desc_t* const demuxer_list[] = {
#ifdef HAVE_XMMS
&demuxer_desc_xmms,
#endif
/* Please do not add any new demuxers here. If you want to implement a new
* demuxer, add it to libavformat */
NULL
};