annotate libmpcodecs/vd_raw.c @ 7180:28677d779205

-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
author arpi
date Fri, 30 Aug 2002 21:44:20 +0000
parents 15efad628385
children e7dd97c4c840
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4969
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
1 #include <stdio.h>
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
2 #include <stdlib.h>
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
3
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
4 #include "config.h"
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
5 #include "mp_msg.h"
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
6
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
7 #include "vd_internal.h"
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
8
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
9 static vd_info_t info = {
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
10 "RAW Uncompressed Video",
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
11 "raw",
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
12 "A'rpi",
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
13 "A'rpi & Alex",
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
14 "uncompressed"
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
15 };
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
16
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
17 LIBVD_EXTERN(raw)
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
18
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
19 // to set/get/query special features/parameters
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
20 static int control(sh_video_t *sh,int cmd,void* arg,...){
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
21 switch(cmd){
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
22 case VDCTRL_QUERY_FORMAT:
6502
01ada897cc89 don't require sh->bih (should fix v4l)
arpi
parents: 6480
diff changeset
23 if( (*((int*)arg)) == (sh->bih ? sh->bih->biCompression : sh->format) ) return CONTROL_TRUE;
4969
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
24 return CONTROL_FALSE;
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
25 }
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
26 return CONTROL_UNKNOWN;
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
27 }
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
28
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
29 // init driver
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
30 static int init(sh_video_t *sh){
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
31 // set format fourcc for raw RGB:
6502
01ada897cc89 don't require sh->bih (should fix v4l)
arpi
parents: 6480
diff changeset
32 if(sh->bih && sh->bih->biCompression==0){ // set based on bit depth
4969
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
33 switch(sh->bih->biBitCount){
6229
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
34 case 8: sh->bih->biCompression=IMGFMT_BGR8; break;
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
35 case 15: sh->bih->biCompression=IMGFMT_BGR15; break;
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
36 // workaround bitcount==16 => bgr15 case for avi files:
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
37 case 16: sh->bih->biCompression=(sh->format)?IMGFMT_BGR16:IMGFMT_BGR15; break;
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
38 case 24: sh->bih->biCompression=IMGFMT_BGR24; break;
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
39 case 32: sh->bih->biCompression=IMGFMT_BGR32; break;
4969
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
40 default:
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
41 mp_msg(MSGT_DECVIDEO,MSGL_WARN,"RAW: depth %d not supported\n",sh->bih->biBitCount);
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
42 }
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
43 }
6502
01ada897cc89 don't require sh->bih (should fix v4l)
arpi
parents: 6480
diff changeset
44 return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,sh->bih ? sh->bih->biCompression : sh->format);
4969
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
45 }
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
46
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
47 // uninit driver
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
48 static void uninit(sh_video_t *sh){
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
49 }
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
50
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
51 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h);
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
52
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
53 // decode a frame
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
54 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
55 mp_image_t* mpi;
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
56 if(len<=0) return NULL; // skipped frame
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
57
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
58 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, 0,
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
59 sh->disp_w, sh->disp_h);
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
60 if(!mpi) return NULL;
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
61
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
62 if(mpi->flags&MP_IMGFLAG_PLANAR){
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
63 // TODO !!!
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
64 mpi->planes[0]=data;
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
65 mpi->stride[0]=mpi->width;
6667
15efad628385 yuv handling simplified (using new mpi fields)
alex
parents: 6502
diff changeset
66 if(mpi->flags&MP_IMGFLAG_YUV) {
5271
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
6480
0dcaa477d200 yvu9 support
alex
parents: 6229
diff changeset
68 /* YV12,I420,IYUV */
5953
1ab2605a9e44 fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents: 5899
diff changeset
69 int cb=2, cr=1;
5966
7779ad600a71 better fix for i420/iyuv as suggested by arpi
rfelker
parents: 5953
diff changeset
70 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
71 cb=1; cr=2;
1ab2605a9e44 fixed raw i420/iyuv to some extent, so that cb/cr channels are no
rfelker
parents: 5899
diff changeset
72 }
6667
15efad628385 yuv handling simplified (using new mpi fields)
alex
parents: 6502
diff changeset
73 mpi->planes[cb]=mpi->planes[0]+mpi->width*mpi->height;
15efad628385 yuv handling simplified (using new mpi fields)
alex
parents: 6502
diff changeset
74 mpi->stride[cb]=mpi->chroma_width;
15efad628385 yuv handling simplified (using new mpi fields)
alex
parents: 6502
diff changeset
75 mpi->planes[cr]=mpi->planes[cb]+mpi->chroma_width*mpi->chroma_height;
15efad628385 yuv handling simplified (using new mpi fields)
alex
parents: 6502
diff changeset
76 mpi->stride[cr]=mpi->chroma_width;
5271
81f31373837e adding support for 12 bit planar YUV formats (for YUV4MPEG(2))
rik
parents: 5124
diff changeset
77 }
4969
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
78 } else {
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
79 mpi->planes[0]=data;
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
80 mpi->stride[0]=mpi->width*(mpi->bpp/8);
6229
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
81 // .AVI files has uncompressed lines 4-byte aligned:
b03cdd8adb32 - modify bih->biCompression instead of sh->format
arpi
parents: 5966
diff changeset
82 if(sh->format==0 || sh->format==3) mpi->stride[0]=(mpi->stride[0]+3)&(~3);
5899
a79f46ea2a6a 8bpp raw avi support
arpi
parents: 5271
diff changeset
83 if(mpi->imgfmt==IMGFMT_RGB8 || mpi->imgfmt==IMGFMT_BGR8){
a79f46ea2a6a 8bpp raw avi support
arpi
parents: 5271
diff changeset
84 // export palette:
6502
01ada897cc89 don't require sh->bih (should fix v4l)
arpi
parents: 6480
diff changeset
85 mpi->planes[1]=sh->bih ? (((unsigned char*)&sh->bih)+40) : NULL;
5899
a79f46ea2a6a 8bpp raw avi support
arpi
parents: 5271
diff changeset
86 }
4969
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
87 }
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
88
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
89 return mpi;
db86fcf25ede xanim, raw, rle added
arpi
parents:
diff changeset
90 }