2002-03-25 03:39:36 +01:00
|
|
|
|
2002-09-22 02:43:14 +02:00
|
|
|
#include "mp_image.h"
|
2002-03-25 03:39:36 +01:00
|
|
|
#include "mpc_info.h"
|
|
|
|
typedef mp_codec_info_t vd_info_t;
|
2002-02-28 01:57:30 +01:00
|
|
|
|
2002-03-07 22:12:27 +01:00
|
|
|
/* interface of video decoder drivers */
|
2002-02-28 01:57:30 +01:00
|
|
|
typedef struct vd_functions_s
|
|
|
|
{
|
|
|
|
vd_info_t *info;
|
|
|
|
int (*init)(sh_video_t *sh);
|
|
|
|
void (*uninit)(sh_video_t *sh);
|
|
|
|
int (*control)(sh_video_t *sh,int cmd,void* arg, ...);
|
|
|
|
mp_image_t* (*decode)(sh_video_t *sh,void* data,int len,int flags);
|
|
|
|
} vd_functions_t;
|
|
|
|
|
|
|
|
// NULL terminated array of all drivers
|
|
|
|
extern vd_functions_t* mpcodecs_vd_drivers[];
|
|
|
|
|
2002-04-04 02:00:23 +02:00
|
|
|
extern int vd_use_slices;
|
|
|
|
|
2002-02-28 01:57:30 +01:00
|
|
|
#define VDCTRL_QUERY_FORMAT 3 /* test for availabilty of a format */
|
2002-03-06 23:02:51 +01:00
|
|
|
#define VDCTRL_QUERY_MAX_PP_LEVEL 4 /* test for postprocessing support (max level) */
|
2002-03-07 22:12:27 +01:00
|
|
|
#define VDCTRL_SET_PP_LEVEL 5 /* set postprocessing level */
|
2002-03-09 20:18:46 +01:00
|
|
|
#define VDCTRL_SET_EQUALIZER 6 /* set color options (brightness,contrast etc) */
|
2002-07-24 20:14:21 +02:00
|
|
|
#define VDCTRL_GET_EQUALIZER 7 /* get color options (brightness,contrast etc) */
|
2002-02-28 01:57:30 +01:00
|
|
|
|
2002-02-28 02:41:49 +01:00
|
|
|
// 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);
|
2002-09-01 16:30:55 +02:00
|
|
|
void mpcodecs_draw_slice(sh_video_t *sh, unsigned char** src, int* stride, int w,int h, int x, int y);
|
2002-02-28 02:41:49 +01:00
|
|
|
|
2002-07-11 21:16:30 +02:00
|
|
|
#define VDFLAGS_DROPFRAME 3
|