4989
|
1 #include <stdio.h>
|
|
2 #include <stdlib.h>
|
|
3
|
|
4 #include "config.h"
|
|
5 #include "mp_msg.h"
|
|
6
|
|
7 #include "vd_internal.h"
|
|
8
|
|
9 static vd_info_t info = {
|
|
10 "Id RoQ File Video decoder",
|
|
11 "roqvideo",
|
|
12 "A'rpi",
|
|
13 "Mike Melanson",
|
|
14 "native codec"
|
|
15 };
|
|
16
|
|
17 LIBVD_EXTERN(roqvideo)
|
|
18
|
7470
|
19 // in native/roqav.c:
|
|
20 void *roq_decode_video_init(void);
|
|
21 void roq_decode_video(void *context, unsigned char *encoded,
|
|
22 int encoded_size, mp_image_t *mpi);
|
4989
|
23
|
|
24 // to set/get/query special features/parameters
|
|
25 static int control(sh_video_t *sh,int cmd,void* arg,...){
|
|
26 return CONTROL_UNKNOWN;
|
|
27 }
|
|
28
|
|
29 // init driver
|
|
30 static int init(sh_video_t *sh){
|
|
31 sh->context = roq_decode_video_init();
|
5124
|
32 return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12);
|
4989
|
33 }
|
|
34
|
|
35 // uninit driver
|
|
36 static void uninit(sh_video_t *sh){
|
|
37 }
|
|
38
|
|
39 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h);
|
|
40
|
|
41 // decode a frame
|
|
42 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
|
|
43 mp_image_t* mpi;
|
|
44 if(len<=0) return NULL; // skipped frame
|
|
45
|
|
46 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_IP, MP_IMGFLAG_PRESERVE | MP_IMGFLAG_READABLE,
|
|
47 sh->disp_w, sh->disp_h);
|
|
48 if(!mpi) return NULL;
|
|
49
|
|
50 roq_decode_video(sh->context, data, len, mpi);
|
|
51
|
|
52 return mpi;
|
|
53 }
|