4968
|
1 #include <stdio.h>
|
|
2 #include <stdlib.h>
|
|
3
|
|
4 #include "config.h"
|
|
5 #ifdef USE_WIN32DLL
|
|
6
|
|
7 #include "mp_msg.h"
|
|
8 #include "help_mp.h"
|
|
9
|
|
10 #include "vd_internal.h"
|
|
11
|
|
12 #include "dll_init.h"
|
|
13
|
|
14 static vd_info_t info_vfw = {
|
|
15 "Win32/VfW video codecs",
|
|
16 "vfw",
|
|
17 VFM_VFW,
|
|
18 "A'rpi",
|
|
19 "based on http://avifile.sf.net",
|
|
20 "win32 codecs"
|
|
21 };
|
|
22
|
|
23 static vd_info_t info_vfwex = {
|
|
24 "Win32/VfWex video codecs",
|
|
25 "vfwex",
|
|
26 VFM_VFWEX,
|
|
27 "A'rpi",
|
|
28 "based on http://avifile.sf.net",
|
|
29 "win32 codecs"
|
|
30 };
|
|
31
|
|
32 #define info info_vfw
|
|
33 LIBVD_EXTERN(vfw)
|
|
34 #undef info
|
|
35
|
|
36 #define info info_vfwex
|
|
37 LIBVD_EXTERN(vfwex)
|
|
38 #undef info
|
|
39
|
|
40 // to set/get/query special features/parameters
|
|
41 static int control(sh_video_t *sh,int cmd,void* arg,...){
|
|
42 switch(cmd){
|
|
43 case VDCTRL_QUERY_MAX_PP_LEVEL:
|
|
44 return 9;
|
|
45 case VDCTRL_SET_PP_LEVEL:
|
|
46 vfw_set_postproc(sh,10*(*((int*)arg)));
|
|
47 return CONTROL_OK;
|
|
48 }
|
|
49 return CONTROL_UNKNOWN;
|
|
50 }
|
|
51
|
|
52 // init driver
|
|
53 static int init(sh_video_t *sh){
|
|
54 unsigned int out_fmt;
|
5153
|
55 if(!mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YUY2)) return 0;
|
4968
|
56 if(!init_vfw_video_codec(sh,(sh->codec->driver==VFM_VFWEX))) return 0;
|
|
57 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32 video codec init OK!\n");
|
5153
|
58 return 1;
|
4968
|
59 }
|
|
60
|
|
61 // uninit driver
|
|
62 static void uninit(sh_video_t *sh){
|
|
63
|
|
64 }
|
|
65
|
|
66 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h);
|
|
67
|
|
68 // decode a frame
|
|
69 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
|
|
70 mp_image_t* mpi;
|
|
71 int ret;
|
|
72 if(len<=0) return NULL; // skipped frame
|
|
73
|
|
74 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_IP, MP_IMGFLAG_ACCEPT_WIDTH,
|
|
75 sh->disp_w, sh->disp_h);
|
|
76 if(!mpi){ // temporary!
|
|
77 printf("couldn't allocate image for cinepak codec\n");
|
|
78 return NULL;
|
|
79 }
|
|
80
|
|
81 // set buffer:
|
|
82 sh->our_out_buffer=mpi->planes[0];
|
|
83
|
|
84 // set stride: (trick discovered by Andreas Ackermann - thanx!)
|
|
85 sh->bih->biWidth=mpi->width; //mpi->stride[0]/(mpi->bpp/8);
|
|
86 sh->o_bih.biWidth=mpi->width; //mpi->stride[0]/(mpi->bpp/8);
|
|
87
|
|
88 if((ret=vfw_decode_video(sh,data,len,flags&3,(sh->codec->driver==VFM_VFWEX) ))){
|
|
89 mp_msg(MSGT_DECVIDEO,MSGL_WARN,"Error decompressing frame, err=%d\n",ret);
|
|
90 return NULL;
|
|
91 }
|
|
92
|
|
93 return mpi;
|
|
94 }
|
|
95
|
|
96 #endif
|