2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_VD_H
|
|
|
|
#define MPLAYER_VD_H
|
2002-03-25 02:39:36 +00:00
|
|
|
|
2002-09-22 00:43:14 +00:00
|
|
|
#include "mp_image.h"
|
2002-03-25 02:39:36 +00:00
|
|
|
#include "mpc_info.h"
|
2008-03-06 08:34:50 +00:00
|
|
|
#include "libmpdemux/stheader.h"
|
|
|
|
|
2002-03-25 02:39:36 +00:00
|
|
|
typedef mp_codec_info_t vd_info_t;
|
2002-02-28 00:57:30 +00:00
|
|
|
|
2002-03-07 21:12:27 +00:00
|
|
|
/* interface of video decoder drivers */
|
2002-02-28 00:57:30 +00: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 00:00:23 +00:00
|
|
|
extern int vd_use_slices;
|
|
|
|
|
2002-02-28 00:57:30 +00:00
|
|
|
#define VDCTRL_QUERY_FORMAT 3 /* test for availabilty of a format */
|
2002-03-06 22:02:51 +00:00
|
|
|
#define VDCTRL_QUERY_MAX_PP_LEVEL 4 /* test for postprocessing support (max level) */
|
2002-03-07 21:12:27 +00:00
|
|
|
#define VDCTRL_SET_PP_LEVEL 5 /* set postprocessing level */
|
2002-03-09 19:18:46 +00:00
|
|
|
#define VDCTRL_SET_EQUALIZER 6 /* set color options (brightness,contrast etc) */
|
2002-07-24 18:14:21 +00:00
|
|
|
#define VDCTRL_GET_EQUALIZER 7 /* get color options (brightness,contrast etc) */
|
2004-02-18 15:23:41 +00:00
|
|
|
#define VDCTRL_RESYNC_STREAM 8 /* seeking */
|
2006-07-06 06:58:17 +00:00
|
|
|
#define VDCTRL_QUERY_UNSEEN_FRAMES 9 /* current decoder lag */
|
2002-02-28 00:57:30 +00:00
|
|
|
|
2002-02-28 01:41:49 +00: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 14:30:55 +00: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 01:41:49 +00:00
|
|
|
|
2002-07-11 19:16:30 +00:00
|
|
|
#define VDFLAGS_DROPFRAME 3
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_VD_H */
|