Mercurial > mplayer.hg
annotate libmpcodecs/vd_raw.c @ 6036:5d543521dd06
patchs by Bj«Órn Sandell <biorn@dce.chalmers.se>:
- --disable-select affects more than the oss audio
- openbsd and netbsd oss support for non-x86
- ar/AR cleanups as '$(AR)' defaults to 'ar' with make
author | pl |
---|---|
date | Fri, 10 May 2002 01:50:17 +0000 |
parents | 7779ad600a71 |
children | b03cdd8adb32 |
rev | line source |
---|---|
4969 | 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 "RAW Uncompressed Video", | |
11 "raw", | |
12 VFM_RAW, | |
13 "A'rpi", | |
14 "A'rpi & Alex", | |
15 "uncompressed" | |
16 }; | |
17 | |
18 LIBVD_EXTERN(raw) | |
19 | |
20 // to set/get/query special features/parameters | |
21 static int control(sh_video_t *sh,int cmd,void* arg,...){ | |
22 switch(cmd){ | |
23 case VDCTRL_QUERY_FORMAT: | |
24 if( (*((int*)arg)) == sh->format ) return CONTROL_TRUE; | |
25 return CONTROL_FALSE; | |
26 } | |
27 return CONTROL_UNKNOWN; | |
28 } | |
29 | |
30 // init driver | |
31 static int init(sh_video_t *sh){ | |
32 // set format fourcc for raw RGB: | |
33 if(sh->format==0){ | |
34 switch(sh->bih->biBitCount){ | |
5899 | 35 case 8: sh->format=IMGFMT_BGR8; break; |
4969 | 36 case 15: |
37 case 16: sh->format=IMGFMT_BGR15; break; | |
38 case 24: sh->format=IMGFMT_BGR24; break; | |
39 case 32: sh->format=IMGFMT_BGR32; break; | |
40 default: | |
41 mp_msg(MSGT_DECVIDEO,MSGL_WARN,"RAW: depth %d not supported\n",sh->bih->biBitCount); | |
42 } | |
43 } | |
5124 | 44 return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,sh->format); |
4969 | 45 } |
46 | |
47 // uninit driver | |
48 static void uninit(sh_video_t *sh){ | |
49 } | |
50 | |
51 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h); | |
52 | |
53 // decode a frame | |
54 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ | |
55 mp_image_t* mpi; | |
56 if(len<=0) return NULL; // skipped frame | |
57 | |
58 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, 0, | |
59 sh->disp_w, sh->disp_h); | |
60 if(!mpi) return NULL; | |
61 | |
62 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
63 // TODO !!! | |
64 mpi->planes[0]=data; | |
65 mpi->stride[0]=mpi->width; | |
5271
81f31373837e
adding support for 12 bit planar YUV formats (for YUV4MPEG(2))
rik
parents:
5124
diff
changeset
|
66 if(mpi->bpp == 12 && mpi->flags&MP_IMGFLAG_YUV) { |
81f31373837e
adding support for 12 bit planar YUV formats (for YUV4MPEG(2))
rik
parents:
5124
diff
changeset
|
67 // Support for some common Planar YUV formats |
5953
1ab2605a9e44
fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents:
5899
diff
changeset
|
68 int cb=2, cr=1; |
5966 | 69 if(mpi->flags&MP_IMGFLAG_SWAPPED) { |
5953
1ab2605a9e44
fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents:
5899
diff
changeset
|
70 cb=1; cr=2; |
1ab2605a9e44
fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents:
5899
diff
changeset
|
71 } |
1ab2605a9e44
fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents:
5899
diff
changeset
|
72 mpi->planes[cb]=data+mpi->width*mpi->height; |
1ab2605a9e44
fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents:
5899
diff
changeset
|
73 mpi->stride[cb]=mpi->width/2; |
1ab2605a9e44
fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents:
5899
diff
changeset
|
74 mpi->planes[cr]=data+5*mpi->width*mpi->height/4; |
1ab2605a9e44
fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents:
5899
diff
changeset
|
75 mpi->stride[cr]=mpi->width/2; |
5271
81f31373837e
adding support for 12 bit planar YUV formats (for YUV4MPEG(2))
rik
parents:
5124
diff
changeset
|
76 } |
4969 | 77 } else { |
78 mpi->planes[0]=data; | |
79 mpi->stride[0]=mpi->width*(mpi->bpp/8); | |
5899 | 80 if(mpi->imgfmt==IMGFMT_RGB8 || mpi->imgfmt==IMGFMT_BGR8){ |
81 // export palette: | |
82 mpi->planes[1]=((unsigned char*)&sh->bih)+40; | |
83 } | |
4969 | 84 } |
85 | |
86 return mpi; | |
87 } | |
88 |