Mercurial > mplayer.hg
annotate libmpcodecs/vd_libmpeg2.c @ 7904:98168d30f67d
Spellchecked, reworded, reformatted, small additions and corrections.
author | diego |
---|---|
date | Thu, 24 Oct 2002 22:06:09 +0000 |
parents | 77076fb29637 |
children | 31fd09cc9ba2 |
rev | line source |
---|---|
4998 | 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 { | |
5465 | 11 "MPEG 1/2 Video decoder v2.0", |
4998 | 12 "libmpeg2", |
13 "A'rpi", | |
14 "Aaron & Walken", | |
15 "native" | |
16 }; | |
17 | |
18 LIBVD_EXTERN(libmpeg2) | |
19 | |
5465 | 20 #define USE_SIGJMP_TRICK |
4998 | 21 |
5465 | 22 #ifdef USE_SIGJMP_TRICK |
23 #include <signal.h> | |
24 #include <setjmp.h> | |
25 #endif | |
26 | |
27 //#include "libmpdemux/parse_es.h" | |
28 | |
29 #include "libvo/video_out.h" // FIXME!!! | |
30 | |
4998 | 31 #include "libmpeg2/mpeg2.h" |
32 #include "libmpeg2/mpeg2_internal.h" | |
5465 | 33 #include "libmpeg2/mm_accel.h" |
4998 | 34 |
5465 | 35 #include "../cpudetect.h" |
36 | |
37 mpeg2_config_t config; // FIXME!!! | |
38 static picture_t *picture=NULL; // exported from libmpeg2/decode.c | |
39 | |
40 static int table_init_state=0; | |
41 | |
4998 | 42 // to set/get/query special features/parameters |
43 static int control(sh_video_t *sh,int cmd,void* arg,...){ | |
44 return CONTROL_UNKNOWN; | |
45 } | |
46 | |
5465 | 47 static vo_frame_t frames[3]; |
48 | |
4998 | 49 // init driver |
50 static int init(sh_video_t *sh){ | |
5465 | 51 |
52 config.flags = 0; | |
53 if(gCpuCaps.hasMMX) | |
54 config.flags |= MM_ACCEL_X86_MMX; | |
55 if(gCpuCaps.hasMMX2) | |
56 config.flags |= MM_ACCEL_X86_MMXEXT; | |
57 if(gCpuCaps.has3DNow) | |
58 config.flags |= MM_ACCEL_X86_3DNOW; | |
59 #ifdef HAVE_MLIB | |
60 config.flags |= MM_ACCEL_MLIB; | |
61 #endif | |
62 | |
63 picture=malloc(sizeof(picture_t)); // !!! NEW HACK :) !!! | |
64 memset(picture,0,sizeof(picture_t)); | |
65 header_state_init (picture); | |
66 | |
67 if(!table_init_state){ | |
68 idct_init (); | |
69 motion_comp_init (); | |
70 table_init_state=1; | |
71 } | |
72 | |
5003 | 73 picture->pp_options=divx_quality; |
5465 | 74 |
5675
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
75 memset(frames,0,3*sizeof(vo_frame_t)); |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
76 |
5465 | 77 picture->forward_reference_frame=&frames[0]; |
78 picture->backward_reference_frame=&frames[1]; | |
79 picture->temp_frame=&frames[2]; | |
80 picture->current_frame=NULL; | |
81 | |
4998 | 82 // send seq header to the decoder: *** HACK *** |
5465 | 83 // mpeg2_decode_data(NULL,videobuffer,videobuffer+videobuf_len,0); |
84 // mpeg2_allocate_image_buffers (picture); | |
5124 | 85 return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12); |
4998 | 86 } |
87 | |
88 // uninit driver | |
89 static void uninit(sh_video_t *sh){ | |
5465 | 90 // mpeg2_free_image_buffers (picture); |
91 } | |
92 | |
93 static void draw_slice (vo_frame_t * frame, uint8_t ** src){ | |
94 int stride[3]; | |
95 int y=picture->slice<<4; | |
96 | |
97 stride[0]=picture->coded_picture_width; | |
98 stride[1]=stride[2]=stride[0]/2; | |
99 | |
7756
77076fb29637
10l. use mpcodecs_draw_slice, instead of libvo directly
arpi
parents:
7464
diff
changeset
|
100 mpcodecs_draw_slice(frame->vo, src, |
5465 | 101 stride, picture->display_picture_width, |
102 (y+16<=picture->display_picture_height) ? 16 : | |
103 picture->display_picture_height-y, | |
104 0, y); | |
105 | |
106 ++picture->slice; | |
4998 | 107 } |
108 | |
5465 | 109 static int in_slice_flag=0; // FIXME! move to picture struct |
110 static int drop_frame=0; // FIXME! move to picture struct | |
111 | |
112 static mp_image_t* parse_chunk (sh_video_t* sh, int code, uint8_t * buffer, int framedrop){ | |
113 mp_image_t* mpi=NULL; | |
114 | |
115 // stats_header (code, buffer); | |
116 | |
117 if (in_slice_flag && ((!code) || (code >= 0xb0))) { | |
118 // ok, we've completed decoding a frame/field! | |
119 in_slice_flag = 0; | |
120 mpi=picture->display_frame->mpi; | |
121 if(picture->picture_structure!=FRAME_PICTURE && !picture->second_field) | |
122 mpi=NULL; // we don't draw first fields! | |
123 } | |
124 | |
125 switch (code) { | |
126 case 0x00: /* picture_start_code */ | |
127 if (header_process_picture_header (picture, buffer)) { | |
128 printf ("bad picture header\n"); | |
129 } | |
130 drop_frame = framedrop && (picture->picture_coding_type == B_TYPE); | |
131 drop_frame |= framedrop>=2; // hard drop | |
132 break; | |
133 | |
134 case 0xb3: /* sequence_header_code */ | |
135 if (header_process_sequence_header (picture, buffer)) { | |
136 printf ("bad sequence header\n"); | |
137 } | |
138 break; | |
139 | |
140 case 0xb5: /* extension_start_code */ | |
141 if (header_process_extension (picture, buffer)) { | |
142 printf ("bad extension\n"); | |
143 } | |
144 break; | |
145 | |
146 default: | |
147 if (code >= 0xb0) break; | |
148 | |
149 if (!in_slice_flag) { | |
150 in_slice_flag = 1; | |
151 | |
152 // set current_frame pointer: | |
153 if (!picture->second_field){ | |
154 mp_image_t* mpi; | |
155 int flags; | |
156 if (picture->picture_coding_type == B_TYPE){ | |
5675
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
157 flags=(!framedrop && vd_use_slices && |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
158 picture->picture_structure==FRAME_PICTURE) ? |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
159 MP_IMGFLAG_DRAW_CALLBACK:0; |
5465 | 160 picture->display_frame= |
161 picture->current_frame = picture->temp_frame; | |
162 } else { | |
163 flags=MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE; | |
164 picture->current_frame = picture->forward_reference_frame; | |
165 picture->display_frame= | |
166 picture->forward_reference_frame = picture->backward_reference_frame; | |
167 picture->backward_reference_frame = picture->current_frame; | |
168 } | |
169 mpi=mpcodecs_get_image(sh,MP_IMGTYPE_IPB, flags, | |
170 picture->coded_picture_width, | |
171 picture->coded_picture_height); | |
172 // ok, lets see what did we get: | |
173 if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK && | |
174 !(mpi->flags&MP_IMGFLAG_DIRECT)){ | |
175 // nice, filter/vo likes draw_callback :) | |
176 picture->current_frame->copy=draw_slice; | |
177 } else | |
178 picture->current_frame->copy=NULL; | |
179 // let's, setup pointers! | |
180 picture->current_frame->base[0]=mpi->planes[0]; | |
181 picture->current_frame->base[1]=mpi->planes[1]; | |
182 picture->current_frame->base[2]=mpi->planes[2]; | |
183 picture->current_frame->mpi=mpi; // tricky! | |
5675
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
184 #if 1 |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
185 if(!picture->forward_reference_frame->base[0]){ |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
186 // workaround for sig11 |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
187 picture->forward_reference_frame->base[0]=mpi->planes[0]; |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
188 picture->forward_reference_frame->base[1]=mpi->planes[1]; |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
189 picture->forward_reference_frame->base[2]=mpi->planes[2]; |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
190 } |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
191 if(!picture->backward_reference_frame->base[0]){ |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
192 // workaround for sig11 |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
193 picture->backward_reference_frame->base[0]=mpi->planes[0]; |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
194 picture->backward_reference_frame->base[1]=mpi->planes[1]; |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
195 picture->backward_reference_frame->base[2]=mpi->planes[2]; |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
196 } |
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
197 #endif |
5516 | 198 #ifdef MPEG12_POSTPROC |
5515 | 199 mpi->qscale=&picture->current_frame->quant_store[1][1]; |
200 mpi->qstride=(MPEG2_MBC+1); | |
5516 | 201 #endif |
5465 | 202 mp_msg(MSGT_DECVIDEO,MSGL_DBG2,"mpeg2: [%c] %p %s \n", |
203 (picture->picture_coding_type == B_TYPE) ? 'B':'P', | |
204 mpi, (mpi->flags&MP_IMGFLAG_DIRECT)?"DR!":""); | |
205 } | |
206 | |
7756
77076fb29637
10l. use mpcodecs_draw_slice, instead of libvo directly
arpi
parents:
7464
diff
changeset
|
207 picture->current_frame->vo=sh; |
5465 | 208 picture->slice=0; |
209 | |
210 } | |
211 | |
212 if (!drop_frame) { | |
213 slice_process (picture, code, buffer); | |
214 #ifdef ARCH_X86 | |
215 if (config.flags & MM_ACCEL_X86_MMX) __asm__ __volatile__ ("emms"); | |
216 #endif | |
217 } | |
218 | |
5145 | 219 } |
4998 | 220 return mpi; |
221 } | |
222 | |
5465 | 223 #ifdef USE_SIGJMP_TRICK |
224 | |
225 static jmp_buf mpeg2_jmp_buf; | |
226 | |
227 static void mpeg2_sighandler(int sig){ | |
228 longjmp(mpeg2_jmp_buf,1); | |
229 } | |
230 #endif | |
231 | |
232 // decode a frame | |
233 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ | |
234 static uint32_t code; | |
235 static uint8_t* pos; | |
236 static uint8_t* current; | |
237 uint8_t* end=data+len; | |
238 static mp_image_t* mpi; | |
239 mp_image_t* ret=NULL; | |
240 int framedrop=flags&3; | |
241 void* old_sigh; | |
242 | |
243 // Note: static is REQUIRED because of longjmp() may destroy stack! | |
244 pos=NULL; | |
245 current=data; | |
246 mpi=NULL; | |
247 | |
248 #ifdef USE_SIGJMP_TRICK | |
249 old_sigh=signal(SIGSEGV,mpeg2_sighandler); | |
250 #endif | |
251 | |
252 while(current<end){ | |
253 // FIND NEXT HEAD: | |
254 static unsigned int head; | |
255 static uint8_t c; | |
256 head=-1; | |
257 //-------------------- | |
258 while(current<end){ | |
259 c=current[0]; | |
260 ++current; | |
261 head<<=8; | |
262 if(head==0x100) break; // synced | |
263 head|=c; | |
264 } | |
265 //-------------------- | |
266 if(pos){ | |
267 #ifdef USE_SIGJMP_TRICK | |
268 if(setjmp(mpeg2_jmp_buf)){ | |
269 #ifdef ARCH_X86 | |
270 if (config.flags & MM_ACCEL_X86_MMX) __asm__ __volatile__ ("emms"); | |
271 #endif | |
272 printf("@@@ libmpeg2 returned from sig11... (bad file?) @@@\n"); | |
273 } else | |
274 #endif | |
275 { | |
276 ret=parse_chunk(sh, code&0xFF, pos, framedrop); | |
277 if(ret) mpi=ret; | |
278 } | |
279 } | |
280 //-------------------- | |
281 pos=current;code=head|c; | |
282 } | |
283 | |
284 #ifdef USE_SIGJMP_TRICK | |
285 signal(SIGSEGV,old_sigh); // restore sighandler | |
286 #endif | |
287 | |
7464 | 288 // if(code==0x1FF){ |
5465 | 289 ret=parse_chunk(sh, 0xFF, NULL, framedrop); // send 'end of frame' |
290 if(ret) mpi=ret; | |
7464 | 291 // } |
5465 | 292 |
293 return mpi; | |
294 } |