summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-28 22:09:21 +0000
committerivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-28 22:09:21 +0000
commitf3216dba06a3f7824b76dc98a138c34b5579d71b (patch)
tree9c2d8bfe7559e92f4fd6daf86d0d01f4bffc83e5 /libmpcodecs
parent194517d82a6dd41b8e7363c0a07007919959b09b (diff)
downloadmpv-f3216dba06a3f7824b76dc98a138c34b5579d71b.tar.bz2
mpv-f3216dba06a3f7824b76dc98a138c34b5579d71b.tar.xz
clarify comments/docs about lav* being the preferred place to implement new
codecs and (de)muxers, except for wrappers around external libraries and codecs and (de)muxers requiring binary support. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25908 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/vd.c6
-rw-r--r--libmpcodecs/ve.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c
index 382aa4afe4..6bc8ba38ad 100644
--- a/libmpcodecs/vd.c
+++ b/libmpcodecs/vd.c
@@ -50,7 +50,8 @@ extern vd_functions_t mpcodecs_vd_lzo;
extern vd_functions_t mpcodecs_vd_qtvideo;
/* Please do not add any new decoders here. If you want to implement a new
- * decoder, add it to libavcodec */
+ * decoder, add it to libavcodec, except for wrappers around external
+ * libraries and decoders requiring binary support. */
vd_functions_t* mpcodecs_vd_drivers[] = {
&mpcodecs_vd_null,
@@ -101,7 +102,8 @@ vd_functions_t* mpcodecs_vd_drivers[] = {
&mpcodecs_vd_qtvideo,
#endif
/* Please do not add any new decoders here. If you want to implement a new
- * decoder, add it to libavcodec */
+ * decoder, add it to libavcodec, except for wrappers around external
+ * libraries and decoders requiring binary support. */
NULL
};
diff --git a/libmpcodecs/ve.c b/libmpcodecs/ve.c
index 4b6e0fc376..d74a0cd2d3 100644
--- a/libmpcodecs/ve.c
+++ b/libmpcodecs/ve.c
@@ -19,7 +19,8 @@ extern vf_info_t ve_info_nuv;
extern vf_info_t ve_info_x264;
/* Please do not add any new encoders here. If you want to implement a new
- * encoder, add it to libavcodec */
+ * encoder, add it to libavcodec, except for wrappers around external
+ * libraries and encoders requiring binary support. */
static vf_info_t* encoder_list[]={
#ifdef USE_LIBAVCODEC
@@ -45,7 +46,8 @@ static vf_info_t* encoder_list[]={
&ve_info_x264,
#endif
/* Please do not add any new encoders here. If you want to implement a new
- * encoder, add it to libavcodec */
+ * encoder, add it to libavcodec, except for wrappers around external
+ * libraries and encoders requiring binary support. */
NULL
};