Mercurial > mplayer.hg
annotate libmpcodecs/vd_ijpg.c @ 10359:772571c63d45
move xv_set_eq to x11_common
author | iive |
---|---|
date | Tue, 01 Jul 2003 21:37:20 +0000 |
parents | c4434bdf6e51 |
children | f167814411d4 |
rev | line source |
---|---|
5029 | 1 |
2 #include <stdio.h> | |
3 #include <stdlib.h> | |
4 | |
5 #include "config.h" | |
6 #include "mp_msg.h" | |
7 | |
8 #include <jpeglib.h> | |
5048 | 9 #define UINT16 IJPG_UINT16 |
10 #define INT16 IJPG_INT16 | |
5029 | 11 |
12 #include <setjmp.h> | |
13 | |
14 #include "bswap.h" | |
15 #include "postproc/rgb2rgb.h" | |
16 #include "libvo/fastmemcpy.h" | |
17 | |
18 #include "vd_internal.h" | |
19 | |
20 static vd_info_t info = { | |
21 "JPEG Images decoder", | |
22 "ijpg", | |
23 "Pontscho", | |
24 "based on vd_mpng.c", | |
25 "uses Indipended JPEG Group's jpeglib" | |
26 }; | |
27 | |
28 LIBVD_EXTERN(ijpg) | |
29 | |
30 static int last_w=-1; | |
31 static int last_h=-1; | |
32 | |
33 // to set/get/query special features/parameters | |
34 static int control(sh_video_t *sh,int cmd,void* arg,...){ | |
35 return CONTROL_UNKNOWN; | |
36 } | |
37 | |
38 // init driver | |
39 static int init(sh_video_t *sh){ | |
40 last_w=-1; | |
41 return 1; | |
42 } | |
43 | |
44 // uninit driver | |
45 static void uninit(sh_video_t *sh){ | |
46 } | |
47 | |
48 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h); | |
49 | |
50 typedef struct | |
51 { | |
52 struct jpeg_source_mgr pub; | |
53 unsigned char * inbuf; | |
54 int bufsize; | |
55 } my_source_mgr; | |
56 | |
57 typedef my_source_mgr * my_src_ptr; | |
58 | |
59 METHODDEF(void) init_source (j_decompress_ptr cinfo) | |
60 { | |
61 } | |
62 | |
63 METHODDEF(boolean) fill_input_buffer (j_decompress_ptr cinfo) | |
64 { | |
65 my_src_ptr src = (my_src_ptr) cinfo->src; | |
66 src->pub.next_input_byte = src->inbuf; | |
67 src->pub.bytes_in_buffer = src->bufsize; | |
68 return TRUE; | |
69 } | |
70 | |
71 METHODDEF(void) skip_input_data (j_decompress_ptr cinfo, long num_bytes) | |
72 { | |
73 my_src_ptr src = (my_src_ptr) cinfo->src; | |
74 | |
75 if (num_bytes > 0) | |
76 { | |
77 while (num_bytes > (long) src->pub.bytes_in_buffer) | |
78 { | |
79 num_bytes -= (long) src->pub.bytes_in_buffer; | |
80 (void) fill_input_buffer(cinfo); | |
81 } | |
82 src->pub.next_input_byte += (size_t) num_bytes; | |
83 src->pub.bytes_in_buffer -= (size_t) num_bytes; | |
84 } | |
85 } | |
86 | |
87 METHODDEF(void) term_source (j_decompress_ptr cinfo) { } | |
88 | |
89 GLOBAL(void) jpeg_buf_src ( j_decompress_ptr cinfo, char * inbuf,int bufsize ) | |
90 { | |
91 my_src_ptr src; | |
92 if (cinfo->src == NULL) cinfo->src=malloc( sizeof( my_source_mgr ) ); | |
93 src = (my_src_ptr) cinfo->src; | |
94 src->pub.init_source = init_source; | |
95 src->pub.fill_input_buffer = fill_input_buffer; | |
96 src->pub.skip_input_data = skip_input_data; | |
97 src->pub.resync_to_restart = jpeg_resync_to_restart; | |
98 src->pub.term_source = term_source; | |
99 src->inbuf = inbuf; | |
100 src->bufsize=bufsize; | |
101 src->pub.bytes_in_buffer = 0; | |
102 src->pub.next_input_byte = NULL; | |
103 } | |
104 | |
105 struct my_error_mgr | |
106 { | |
107 struct jpeg_error_mgr pub; | |
108 jmp_buf setjmp_buffer; | |
109 }; | |
110 | |
111 typedef struct my_error_mgr * my_error_ptr; | |
112 | |
113 METHODDEF(void) my_error_exit (j_common_ptr cinfo) | |
114 { | |
115 my_error_ptr myerr=(my_error_ptr) cinfo->err; | |
116 (*cinfo->err->output_message) (cinfo); | |
117 longjmp(myerr->setjmp_buffer, 1); | |
118 } | |
119 | |
120 static struct jpeg_decompress_struct cinfo; | |
121 static struct my_error_mgr jerr; | |
122 static int row_stride; | |
6097 | 123 static unsigned char *temp_row=NULL; |
124 | |
5029 | 125 // decode a frame |
126 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ | |
127 mp_image_t * mpi = NULL; | |
6097 | 128 int width,height,depth,i; |
5029 | 129 |
130 if ( len <= 0 ) return NULL; // skipped frame | |
131 | |
5366 | 132 cinfo.err=jpeg_std_error( &jerr.pub ); |
133 jerr.pub.error_exit=my_error_exit; | |
5029 | 134 if( setjmp( jerr.setjmp_buffer ) ) |
135 { | |
136 mp_msg( MSGT_DECVIDEO,MSGL_ERR,"[ijpg] setjmp error ...\n" ); | |
137 return NULL; | |
138 } | |
139 | |
140 jpeg_create_decompress( &cinfo ); | |
141 jpeg_buf_src( &cinfo,data,len ); | |
142 jpeg_read_header( &cinfo,TRUE ); | |
5365
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5124
diff
changeset
|
143 sh->disp_w=width=cinfo.image_width; |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5124
diff
changeset
|
144 sh->disp_h=height=cinfo.image_height; |
5029 | 145 jpeg_start_decompress( &cinfo ); |
146 depth=cinfo.output_components * 8; | |
147 | |
148 switch( depth ) { | |
6097 | 149 case 8: |
150 case 24: break; | |
5029 | 151 default: mp_msg( MSGT_DECVIDEO,MSGL_ERR,"Sorry, unsupported JPEG colorspace: %d.\n",depth ); return NULL; |
152 } | |
153 | |
6097 | 154 if ( last_w!=width || last_h!=height ) |
5029 | 155 { |
6097 | 156 if(!mpcodecs_config_vo( sh,width,height, IMGFMT_RGB24 )) return NULL; |
157 if(temp_row) free(temp_row); | |
158 temp_row=malloc(3*width+16); | |
159 last_w=width; last_h=height; | |
5029 | 160 } |
161 | |
162 mpi=mpcodecs_get_image( sh,MP_IMGTYPE_TEMP,MP_IMGFLAG_ACCEPT_STRIDE,width,height ); | |
163 if ( !mpi ) return NULL; | |
164 | |
165 row_stride=cinfo.output_width * cinfo.output_components; | |
166 | |
167 for ( i=0;i < height;i++ ) | |
168 { | |
6097 | 169 unsigned char * drow = mpi->planes[0] + mpi->stride[0] * i; |
170 unsigned char * row = (mpi->imgfmt==IMGFMT_RGB24 && depth==24) ? drow : temp_row; | |
5042 | 171 jpeg_read_scanlines( &cinfo,(JSAMPLE**)&row,1 ); |
6097 | 172 if(depth==8){ |
173 // grayscale -> rgb/bgr 24/32 | |
174 int x; | |
175 if(mpi->bpp==32) | |
176 for(x=0;x<width;x++) drow[4*x]=0x010101*row[x]; | |
177 else | |
178 for(x=0;x<width;x++) drow[3*x+0]=drow[3*x+1]=drow[3*x+2]=row[x]; | |
179 } else { | |
180 int x; | |
181 switch(mpi->imgfmt){ | |
182 // rgb24 -> bgr24 | |
183 case IMGFMT_BGR24: | |
184 for(x=0;x<3*width;x+=3){ | |
185 drow[x+0]=row[x+2]; | |
186 drow[x+1]=row[x+1]; | |
187 drow[x+2]=row[x+0]; | |
188 } | |
189 break; | |
190 // rgb24 -> bgr32 | |
191 case IMGFMT_BGR32: | |
192 for(x=0;x<width;x++){ | |
193 drow[4*x+0]=row[3*x+2]; | |
194 drow[4*x+1]=row[3*x+1]; | |
195 drow[4*x+2]=row[3*x+0]; | |
196 } | |
197 break; | |
198 } | |
199 } | |
5029 | 200 } |
201 | |
202 jpeg_finish_decompress(&cinfo); | |
203 jpeg_destroy_decompress(&cinfo); | |
204 | |
205 return mpi; | |
206 } |