summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd.c
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/vd.c
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/vd.c')
-rw-r--r--libmpcodecs/vd.c6
1 files changed, 4 insertions, 2 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
};