diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-07 21:12:27 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-07 21:12:27 +0000 |
commit | baa8236a2b04d3a051b959586166fc2d9520a056 (patch) | |
tree | 97fece194a73d807b99a21c8c6521d9d7b1732af /libmpcodecs | |
parent | 4efc145738c941377638932e5d0c777d05eb4513 (diff) |
comments fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4989 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r-- | libmpcodecs/vd.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libmpcodecs/vd.h b/libmpcodecs/vd.h index 2201427fc3..cd65f9c1a3 100644 --- a/libmpcodecs/vd.h +++ b/libmpcodecs/vd.h @@ -1,10 +1,10 @@ typedef struct vd_info_s { - /* driver name ("Matrox Millennium G200/G400" */ + /* codec long name ("Autodesk FLI/FLC Animation decoder" */ const char *name; - /* short name (for config strings) ("mga") */ + /* short name (same as driver name in codecs.conf) ("dshow") */ const char *short_name; - /* -vfm id */ + /* codec family: -vfm id */ const int id; /* interface author/maintainer */ const char *maintainer; @@ -14,7 +14,7 @@ typedef struct vd_info_s const char *comment; } vd_info_t; -/* interface towards mplayer and */ +/* interface of video decoder drivers */ typedef struct vd_functions_s { vd_info_t *info; @@ -36,10 +36,9 @@ extern vd_functions_t* mpcodecs_vd_drivers[]; #define VDCTRL_QUERY_FORMAT 3 /* test for availabilty of a format */ #define VDCTRL_QUERY_MAX_PP_LEVEL 4 /* test for postprocessing support (max level) */ -#define VDCTRL_SET_PP_LEVEL 5 /* test for postprocessing support (max level) */ +#define VDCTRL_SET_PP_LEVEL 5 /* set postprocessing level */ // callbacks: int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int preferred_outfmt); mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h); - |