2002-03-03 18:47:29 +00:00
|
|
|
#ifndef __MP_IMAGE_H
|
|
|
|
#define __MP_IMAGE_H 1
|
2002-01-16 00:14:59 +00:00
|
|
|
|
2002-02-28 00:53:01 +00:00
|
|
|
// set if buffer content shouldn't be modified:
|
|
|
|
#define MP_IMGFLAG_PRESERVE 0x01
|
|
|
|
// set if buffer content will be READED for next frame's MC: (I/P mpeg frames)
|
|
|
|
#define MP_IMGFLAG_READABLE 0x02
|
2002-01-16 00:14:59 +00:00
|
|
|
// set if buffer is allocated (used in destination images):
|
2002-02-28 00:53:01 +00:00
|
|
|
#define MP_IMGFLAG_ALLOCATED 0x04
|
2002-01-16 00:14:59 +00:00
|
|
|
// set if it's in video buffer/memory:
|
2002-02-28 00:53:01 +00:00
|
|
|
#define MP_IMGFLAG_DIRECT 0x08
|
|
|
|
// codec accept any stride (>=width):
|
|
|
|
#define MP_IMGFLAG_ACCEPT_STRIDE 0x10
|
2002-03-06 23:40:31 +00:00
|
|
|
// codec accept any width (width*bpp=stride) (>=width):
|
|
|
|
#define MP_IMGFLAG_ACCEPT_WIDTH 0x20
|
2002-02-28 00:53:01 +00:00
|
|
|
// stride should be aligned to 16-byte (MB) boundary:
|
2002-03-06 23:40:31 +00:00
|
|
|
#define MP_IMGFLAG_ALIGNED_STRIDE 0x40
|
2002-02-28 00:53:01 +00:00
|
|
|
// codec uses drawing/rendering callbacks (draw_slice()-like thing, DR method 2)
|
2002-03-06 23:40:31 +00:00
|
|
|
#define MP_IMGFLAG_DRAW_CALLBACK 0x80
|
2002-01-16 00:14:59 +00:00
|
|
|
|
|
|
|
// set if number of planes > 1
|
2002-02-28 00:53:01 +00:00
|
|
|
#define MP_IMGFLAG_PLANAR 0x100
|
2002-01-16 00:14:59 +00:00
|
|
|
// set if it's YUV colorspace
|
2002-02-28 00:53:01 +00:00
|
|
|
#define MP_IMGFLAG_YUV 0x200
|
2002-01-16 00:14:59 +00:00
|
|
|
// set if it's swapped plane/byteorder
|
2002-02-28 00:53:01 +00:00
|
|
|
#define MP_IMGFLAG_SWAPPED 0x400
|
2002-03-07 02:44:42 +00:00
|
|
|
// type displayed (do not set this flag - it's for internal use!)
|
|
|
|
#define MP_IMGFLAG_TYPE_DISPLAYED 0x800
|
2002-01-16 00:14:59 +00:00
|
|
|
|
2002-02-28 00:53:01 +00:00
|
|
|
// codec doesn't support any form of direct rendering - it has own buffer
|
|
|
|
// allocation. so we just export its buffer pointers:
|
2002-01-16 01:19:22 +00:00
|
|
|
#define MP_IMGTYPE_EXPORT 0
|
2002-02-28 00:53:01 +00:00
|
|
|
// codec requires a static WO buffer, but it does only partial updates later:
|
2002-01-16 01:19:22 +00:00
|
|
|
#define MP_IMGTYPE_STATIC 1
|
2002-02-28 00:53:01 +00:00
|
|
|
// codec just needs some WO memory, where it writes/copies the whole frame to:
|
2002-01-16 01:19:22 +00:00
|
|
|
#define MP_IMGTYPE_TEMP 2
|
2002-02-28 00:53:01 +00:00
|
|
|
// I+P type, requires 2+ independent static R/W buffers
|
|
|
|
#define MP_IMGTYPE_IP 3
|
|
|
|
// I+P+B type, requires 2+ independent static R/W and 1+ temp WO buffers
|
|
|
|
#define MP_IMGTYPE_IPB 4
|
2002-01-16 01:19:22 +00:00
|
|
|
|
2002-01-16 00:14:59 +00:00
|
|
|
typedef struct mp_image_s {
|
|
|
|
unsigned short flags;
|
2002-01-16 01:19:22 +00:00
|
|
|
unsigned char type;
|
|
|
|
unsigned char bpp; // bits/pixel. NOT depth! for RGB it will be n*8
|
2002-01-16 00:14:59 +00:00
|
|
|
unsigned int imgfmt;
|
|
|
|
int width,height; // stored dimensions
|
|
|
|
int x,y,w,h; // visible dimensions
|
|
|
|
unsigned char* planes[3];
|
|
|
|
unsigned int stride[3];
|
|
|
|
int* qscale;
|
|
|
|
int qstride;
|
|
|
|
} mp_image_t;
|
|
|
|
|
|
|
|
#ifdef IMGFMT_YUY2
|
|
|
|
static inline void mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt){
|
|
|
|
mpi->flags&=~(MP_IMGFLAG_PLANAR|MP_IMGFLAG_YUV|MP_IMGFLAG_SWAPPED);
|
2002-01-16 01:51:12 +00:00
|
|
|
mpi->imgfmt=out_fmt;
|
2002-01-16 00:14:59 +00:00
|
|
|
if( (out_fmt&IMGFMT_RGB_MASK) == IMGFMT_RGB ){
|
2002-01-16 01:19:22 +00:00
|
|
|
mpi->bpp=((out_fmt&255)+7)&(~7);
|
2002-01-16 00:14:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if( (out_fmt&IMGFMT_BGR_MASK) == IMGFMT_BGR ){
|
2002-01-16 01:19:22 +00:00
|
|
|
mpi->bpp=((out_fmt&255)+7)&(~7);
|
2002-01-16 00:14:59 +00:00
|
|
|
mpi->flags|=MP_IMGFLAG_SWAPPED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mpi->flags|=MP_IMGFLAG_YUV;
|
|
|
|
switch(out_fmt){
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
mpi->flags|=MP_IMGFLAG_SWAPPED;
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
mpi->flags|=MP_IMGFLAG_PLANAR;
|
|
|
|
mpi->bpp=12;
|
|
|
|
return;
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
mpi->flags|=MP_IMGFLAG_SWAPPED;
|
|
|
|
case IMGFMT_YUY2:
|
|
|
|
mpi->bpp=16;
|
|
|
|
return;
|
2002-03-16 20:35:59 +00:00
|
|
|
case IMGFMT_MPEGPES:
|
|
|
|
mpi->bpp=0;
|
|
|
|
return;
|
2002-01-16 00:14:59 +00:00
|
|
|
}
|
|
|
|
printf("mp_image: Unknown out_fmt: 0x%X\n",out_fmt);
|
|
|
|
mpi->bpp=0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline mp_image_t* new_mp_image(int w,int h){
|
|
|
|
mp_image_t* mpi=malloc(sizeof(mp_image_t));
|
|
|
|
if(!mpi) return NULL; // error!
|
|
|
|
memset(mpi,0,sizeof(mp_image_t));
|
|
|
|
mpi->width=mpi->w=w;
|
|
|
|
mpi->height=mpi->h=h;
|
|
|
|
return mpi;
|
|
|
|
}
|
2002-03-03 18:47:29 +00:00
|
|
|
|
|
|
|
#endif
|