Use proper length specifiers in mp_msg calls, fixes the warnings:
[mplayer/greg.git] / libmpcodecs / vd_internal.h
blob57aede310bd9eafe86a86814907786fe16283c4a
2 #include "codec-cfg.h"
3 #include "img_format.h"
5 #include "stream/stream.h"
6 #include "libmpdemux/demuxer.h"
7 #include "libmpdemux/stheader.h"
9 #include "vd.h"
11 extern int divx_quality;
13 // prototypes:
14 //static vd_info_t info;
15 static int control(sh_video_t *sh,int cmd,void* arg,...);
16 static int init(sh_video_t *sh);
17 static void uninit(sh_video_t *sh);
18 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags);
20 #define LIBVD_EXTERN(x) vd_functions_t mpcodecs_vd_##x = {\
21 &info,\
22 init,\
23 uninit,\
24 control,\
25 decode\