From 2d243412f29bf91deba3c91b5e5f431bf24c412d Mon Sep 17 00:00:00 2001 From: reimar Date: Sat, 12 Jan 2008 15:26:24 +0000 Subject: Colourspace conversions do _not_ belong into a decoder! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25695 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vd_ijpg.c | 54 ++++++++++++--------------------------------------- 1 file changed, 12 insertions(+), 42 deletions(-) (limited to 'libmpcodecs') diff --git a/libmpcodecs/vd_ijpg.c b/libmpcodecs/vd_ijpg.c index bcdec4b00e..ee5c2ac0bb 100644 --- a/libmpcodecs/vd_ijpg.c +++ b/libmpcodecs/vd_ijpg.c @@ -29,9 +29,17 @@ LIBVD_EXTERN(ijpg) static int last_w=-1; static int last_h=-1; +static int last_depth=-1; // to set/get/query special features/parameters static int control(sh_video_t *sh,int cmd,void* arg,...){ + if (cmd == VDCTRL_QUERY_FORMAT) { + int format = *(int *)arg; + if ((last_depth == 24 && format == IMGFMT_RGB24) || + (last_depth == 8 && format == IMGFMT_Y8 )) + return CONTROL_TRUE; + return CONTROL_FALSE; + } return CONTROL_UNKNOWN; } @@ -117,8 +125,6 @@ METHODDEF(void) my_error_exit (j_common_ptr cinfo) longjmp(myerr->setjmp_buffer, 1); } -static unsigned char *temp_row=NULL; - // decode a frame static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ struct jpeg_decompress_struct cinfo; @@ -152,11 +158,10 @@ static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ default: mp_msg( MSGT_DECVIDEO,MSGL_ERR,"Sorry, unsupported JPEG colorspace: %d.\n",depth ); return NULL; } - if ( last_w!=width || last_h!=height ) + if ( last_w!=width || last_h!=height || last_depth != depth ) { - if(!mpcodecs_config_vo( sh,width,height, IMGFMT_RGB24 )) return NULL; - if(temp_row) free(temp_row); - temp_row=malloc(3*width+16); + last_depth = depth; + if(!mpcodecs_config_vo( sh,width,height, depth == 8 ? IMGFMT_Y8 : IMGFMT_RGB24 )) return NULL; last_w=width; last_h=height; } @@ -166,42 +171,7 @@ static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ for ( i=0;i < height;i++ ) { unsigned char * drow = mpi->planes[0] + mpi->stride[0] * i; - unsigned char * row = (mpi->imgfmt==IMGFMT_RGB24 && depth==24) ? drow : temp_row; - jpeg_read_scanlines( &cinfo,(JSAMPLE**)&row,1 ); - if(depth==8){ - // grayscale -> rgb/bgr 24/32 - int x; - if(mpi->bpp==32) - for(x=0;ximgfmt){ - // rgb24 -> bgr24 - case IMGFMT_BGR24: - for(x=0;x<3*width;x+=3){ - drow[x+0]=row[x+2]; - drow[x+1]=row[x+1]; - drow[x+2]=row[x+0]; - } - break; - // rgb24 -> bgr32 - case IMGFMT_BGR32: - for(x=0;x