Mercurial > mplayer.hg
annotate libmpcodecs/vd_libmpeg2.c @ 18670:bf04d0097971
Fix declaration mixed in among statements in the recent dvr-ms code
author | pacman |
---|---|
date | Fri, 09 Jun 2006 22:33:09 +0000 |
parents | 22805699b7b1 |
children | a1807995e2ab |
rev | line source |
---|---|
4998 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 | |
4 #include "config.h" | |
8026
b465ba5897a3
usage of libmpeg2, liba52, mp3lib & svq1 can be disabled
arpi
parents:
7957
diff
changeset
|
5 #ifdef USE_LIBMPEG2 |
b465ba5897a3
usage of libmpeg2, liba52, mp3lib & svq1 can be disabled
arpi
parents:
7957
diff
changeset
|
6 |
4998 | 7 #include "mp_msg.h" |
8 | |
9 #include "vd_internal.h" | |
10 | |
9859 | 11 //#undef MPEG12_POSTPROC |
12 | |
4998 | 13 static vd_info_t info = |
14 { | |
12932 | 15 "MPEG 1/2 Video decoder libmpeg2-v0.4.0b", |
4998 | 16 "libmpeg2", |
9859 | 17 "A'rpi & Fabian Franz", |
4998 | 18 "Aaron & Walken", |
19 "native" | |
20 }; | |
21 | |
22 LIBVD_EXTERN(libmpeg2) | |
23 | |
9859 | 24 //#include "libvo/video_out.h" // FIXME!!! |
5465 | 25 |
4998 | 26 #include "libmpeg2/mpeg2.h" |
12932 | 27 #include "libmpeg2/attributes.h" |
4998 | 28 #include "libmpeg2/mpeg2_internal.h" |
29 | |
17012 | 30 #include "cpudetect.h" |
5465 | 31 |
18301 | 32 typedef struct { |
33 mpeg2dec_t *mpeg2dec; | |
34 int quant_store_idx; | |
35 char *quant_store[3]; | |
36 } vd_libmpeg2_ctx_t; | |
37 | |
4998 | 38 // to set/get/query special features/parameters |
39 static int control(sh_video_t *sh,int cmd,void* arg,...){ | |
18301 | 40 vd_libmpeg2_ctx_t *context = sh->context; |
41 mpeg2dec_t * mpeg2dec = context->mpeg2dec; | |
14012 | 42 const mpeg2_info_t * info = mpeg2_info (mpeg2dec); |
13995 | 43 |
44 switch(cmd) { | |
45 case VDCTRL_QUERY_FORMAT: | |
14012 | 46 if (info->sequence->width >> 1 == info->sequence->chroma_width && |
47 info->sequence->height >> 1 == info->sequence->chroma_height && | |
48 (*((int*)arg)) == IMGFMT_YV12) | |
13995 | 49 return CONTROL_TRUE; |
14012 | 50 if (info->sequence->width >> 1 == info->sequence->chroma_width && |
51 info->sequence->height == info->sequence->chroma_height && | |
52 (*((int*)arg)) == IMGFMT_422P) | |
13995 | 53 return CONTROL_TRUE; |
54 return CONTROL_FALSE; | |
55 } | |
56 | |
4998 | 57 return CONTROL_UNKNOWN; |
58 } | |
59 | |
60 // init driver | |
61 static int init(sh_video_t *sh){ | |
18301 | 62 vd_libmpeg2_ctx_t *context; |
9859 | 63 mpeg2dec_t * mpeg2dec; |
13995 | 64 // const mpeg2_info_t * info; |
9859 | 65 int accel; |
5465 | 66 |
9859 | 67 accel = 0; |
68 if(gCpuCaps.hasMMX) | |
69 accel |= MPEG2_ACCEL_X86_MMX; | |
70 if(gCpuCaps.hasMMX2) | |
71 accel |= MPEG2_ACCEL_X86_MMXEXT; | |
72 if(gCpuCaps.has3DNow) | |
73 accel |= MPEG2_ACCEL_X86_3DNOW; | |
10267
d953763cc555
libmpeg2-altivec patch by Magnus Damm <damm@opensource.se>:
arpi
parents:
10250
diff
changeset
|
74 if(gCpuCaps.hasAltiVec) |
d953763cc555
libmpeg2-altivec patch by Magnus Damm <damm@opensource.se>:
arpi
parents:
10250
diff
changeset
|
75 accel |= MPEG2_ACCEL_PPC_ALTIVEC; |
13117 | 76 #ifdef HAVE_VIS |
77 accel |= MPEG2_ACCEL_SPARC_VIS; | |
9859 | 78 #endif |
79 mpeg2_accel(accel); | |
5465 | 80 |
9859 | 81 mpeg2dec = mpeg2_init (); |
82 | |
83 if(!mpeg2dec) return 0; | |
84 | |
85 mpeg2_custom_fbuf(mpeg2dec,1); // enable DR1 | |
18301 | 86 |
87 context = calloc(1, sizeof(vd_libmpeg2_ctx_t)); | |
88 context->mpeg2dec = mpeg2dec; | |
89 sh->context = context; | |
9859 | 90 |
13112 | 91 mpeg2dec->pending_buffer = 0; |
92 mpeg2dec->pending_length = 0; | |
93 | |
9859 | 94 return 1; |
4998 | 95 } |
96 | |
97 // uninit driver | |
98 static void uninit(sh_video_t *sh){ | |
18301 | 99 int i; |
100 vd_libmpeg2_ctx_t *context = sh->context; | |
101 mpeg2dec_t * mpeg2dec = context->mpeg2dec; | |
13112 | 102 if (mpeg2dec->pending_buffer) free(mpeg2dec->pending_buffer); |
14012 | 103 mpeg2dec->decoder.convert=NULL; |
104 mpeg2dec->decoder.convert_id=NULL; | |
9859 | 105 mpeg2_close (mpeg2dec); |
18301 | 106 for (i=0; i < 3; i++) |
107 free(context->quant_store[i]); | |
108 free(sh->context); | |
4998 | 109 } |
110 | |
13112 | 111 static void draw_slice (void * _sh, uint8_t * const * src, unsigned int y){ |
9859 | 112 sh_video_t* sh = (sh_video_t*) _sh; |
18301 | 113 vd_libmpeg2_ctx_t *context = sh->context; |
114 mpeg2dec_t* mpeg2dec = context->mpeg2dec; | |
9859 | 115 const mpeg2_info_t * info = mpeg2_info (mpeg2dec); |
116 int stride[3]; | |
5465 | 117 |
13112 | 118 // printf("draw_slice() y=%d \n",y); |
5465 | 119 |
9859 | 120 stride[0]=mpeg2dec->decoder.stride; |
121 stride[1]=stride[2]=mpeg2dec->decoder.uv_stride; | |
5465 | 122 |
9859 | 123 mpcodecs_draw_slice(sh, (uint8_t **)src, |
12572
7d681d8ebab8
display height may be a lot smaller or larger than picture height, sample provided by winnicki
iive
parents:
11080
diff
changeset
|
124 stride, info->sequence->picture_width, |
7d681d8ebab8
display height may be a lot smaller or larger than picture height, sample provided by winnicki
iive
parents:
11080
diff
changeset
|
125 (y+16<=info->sequence->picture_height) ? 16 : |
7d681d8ebab8
display height may be a lot smaller or larger than picture height, sample provided by winnicki
iive
parents:
11080
diff
changeset
|
126 info->sequence->picture_height-y, |
9859 | 127 0, y); |
4998 | 128 } |
129 | |
5465 | 130 // decode a frame |
131 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ | |
18301 | 132 vd_libmpeg2_ctx_t *context = sh->context; |
133 mpeg2dec_t * mpeg2dec = context->mpeg2dec; | |
9859 | 134 const mpeg2_info_t * info = mpeg2_info (mpeg2dec); |
135 int drop_frame, framedrop=flags&3; | |
136 | |
13995 | 137 // MPlayer registers its own draw_slice callback, prevent libmpeg2 from freeing the context |
14012 | 138 mpeg2dec->decoder.convert=NULL; |
139 mpeg2dec->decoder.convert_id=NULL; | |
13150 | 140 |
11080
26f1b3ad4a77
skip null frames in mpeg files, patch by Zoltan Hidvegi <mplayer@hzoli.2y.net>
attila
parents:
10663
diff
changeset
|
141 if(len<=0) return NULL; // skipped null frame |
26f1b3ad4a77
skip null frames in mpeg files, patch by Zoltan Hidvegi <mplayer@hzoli.2y.net>
attila
parents:
10663
diff
changeset
|
142 |
9859 | 143 // append extra 'end of frame' code: |
144 ((char*)data+len)[0]=0; | |
145 ((char*)data+len)[1]=0; | |
146 ((char*)data+len)[2]=1; | |
147 ((char*)data+len)[3]=0xff; | |
148 len+=4; | |
5465 | 149 |
13112 | 150 if (mpeg2dec->pending_length) { |
151 mpeg2_buffer (mpeg2dec, mpeg2dec->pending_buffer, mpeg2dec->pending_buffer + mpeg2dec->pending_length); | |
152 } else { | |
153 mpeg2_buffer (mpeg2dec, data, data+len); | |
154 } | |
9859 | 155 |
156 while(1){ | |
157 int state=mpeg2_parse (mpeg2dec); | |
13995 | 158 int type, use_callback; |
159 mp_image_t* mpi_new; | |
18428
22805699b7b1
moved code to set aspect ratio for mpeg12 away from video.c and into decoder files; A/R changes work correctly with -vc mpeg12
nicodvb
parents:
18301
diff
changeset
|
160 unsigned long pw, ph; |
13995 | 161 |
9859 | 162 switch(state){ |
12932 | 163 case STATE_BUFFER: |
13112 | 164 if (mpeg2dec->pending_length) { |
13152 | 165 // just finished the pending data, continue with processing of the passed buffer |
13112 | 166 mpeg2dec->pending_length = 0; |
167 mpeg2_buffer (mpeg2dec, data, data+len); | |
168 } else { | |
169 // parsing of the passed buffer finished, return. | |
170 return 0; | |
171 } | |
172 break; | |
9859 | 173 case STATE_SEQUENCE: |
18428
22805699b7b1
moved code to set aspect ratio for mpeg12 away from video.c and into decoder files; A/R changes work correctly with -vc mpeg12
nicodvb
parents:
18301
diff
changeset
|
174 pw = info->sequence->display_width * info->sequence->pixel_width; |
22805699b7b1
moved code to set aspect ratio for mpeg12 away from video.c and into decoder files; A/R changes work correctly with -vc mpeg12
nicodvb
parents:
18301
diff
changeset
|
175 ph = info->sequence->display_height * info->sequence->pixel_height; |
22805699b7b1
moved code to set aspect ratio for mpeg12 away from video.c and into decoder files; A/R changes work correctly with -vc mpeg12
nicodvb
parents:
18301
diff
changeset
|
176 if(ph) sh->aspect = (float) pw / (float) ph; |
9859 | 177 // video parameters inited/changed, (re)init libvo: |
13995 | 178 if (info->sequence->width >> 1 == info->sequence->chroma_width && |
179 info->sequence->height >> 1 == info->sequence->chroma_height) { | |
180 if(!mpcodecs_config_vo(sh, | |
14016 | 181 info->sequence->picture_width, |
182 info->sequence->picture_height, IMGFMT_YV12)) return 0; | |
13995 | 183 } else if (info->sequence->width >> 1 == info->sequence->chroma_width && |
184 info->sequence->height == info->sequence->chroma_height) { | |
185 if(!mpcodecs_config_vo(sh, | |
14016 | 186 info->sequence->picture_width, |
187 info->sequence->picture_height, IMGFMT_422P)) return 0; | |
13995 | 188 } else return 0; |
9859 | 189 break; |
13995 | 190 case STATE_PICTURE: |
191 type=info->current_picture->flags&PIC_MASK_CODING_TYPE; | |
9859 | 192 |
193 drop_frame = framedrop && (mpeg2dec->decoder.coding_type == B_TYPE); | |
194 drop_frame |= framedrop>=2; // hard drop | |
195 if (drop_frame) { | |
196 mpeg2_skip(mpeg2dec, 1); | |
197 //printf("Dropping Frame ...\n"); | |
198 break; | |
199 } | |
200 mpeg2_skip(mpeg2dec, 0); //mpeg2skip skips frames until set again to 0 | |
201 | |
14012 | 202 use_callback = (!framedrop && vd_use_slices && |
203 (info->current_picture->flags&PIC_FLAG_PROGRESSIVE_FRAME)) ? | |
204 MP_IMGFLAG_DRAW_CALLBACK:0; | |
13995 | 205 |
9859 | 206 // get_buffer "callback": |
13995 | 207 mpi_new=mpcodecs_get_image(sh,MP_IMGTYPE_IPB, |
14012 | 208 (type==PIC_FLAG_CODING_TYPE_B) ? |
209 use_callback : (MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE), | |
14075 | 210 info->sequence->width, |
211 info->sequence->height); | |
13995 | 212 |
13112 | 213 if(!mpi_new) return 0; // VO ERROR!!!!!!!! |
214 mpeg2_set_buf(mpeg2dec, mpi_new->planes, mpi_new); | |
10510
73b3e4336cd4
Add mpeg2_flags to mp_image_t, copy flags in vd_libmpeg2.c,
ranma
parents:
10267
diff
changeset
|
215 if (info->current_picture->flags&PIC_FLAG_TOP_FIELD_FIRST) |
13112 | 216 mpi_new->fields |= MP_IMGFIELD_TOP_FIRST; |
217 else mpi_new->fields &= ~MP_IMGFIELD_TOP_FIRST; | |
10510
73b3e4336cd4
Add mpeg2_flags to mp_image_t, copy flags in vd_libmpeg2.c,
ranma
parents:
10267
diff
changeset
|
218 if (info->current_picture->flags&PIC_FLAG_REPEAT_FIRST_FIELD) |
13112 | 219 mpi_new->fields |= MP_IMGFIELD_REPEAT_FIRST; |
220 else mpi_new->fields &= ~MP_IMGFIELD_REPEAT_FIRST; | |
221 mpi_new->fields |= MP_IMGFIELD_ORDERED; | |
9859 | 222 |
12935 | 223 #ifdef MPEG12_POSTPROC |
18301 | 224 mpi_new->qstride=info->sequence->width>>4; |
225 { | |
226 char **p = &context->quant_store[type==PIC_FLAG_CODING_TYPE_B ? | |
227 2 : (context->quant_store_idx ^= 1)]; | |
228 *p = realloc(*p, mpi_new->qstride*(info->sequence->height>>4)); | |
229 mpi_new->qscale = *p; | |
12935 | 230 } |
13112 | 231 mpeg2dec->decoder.quant_store=mpi_new->qscale; |
232 mpeg2dec->decoder.quant_stride=mpi_new->qstride; | |
233 mpi_new->pict_type=type; // 1->I, 2->P, 3->B | |
234 mpi_new->qscale_type= 1; | |
12935 | 235 #endif |
236 | |
14012 | 237 if (mpi_new->flags&MP_IMGFLAG_DRAW_CALLBACK |
238 && !(mpi_new->flags&MP_IMGFLAG_DIRECT)) { | |
239 // nice, filter/vo likes draw_callback :) | |
240 mpeg2dec->decoder.convert=draw_slice; | |
241 mpeg2dec->decoder.convert_id=sh; | |
242 } else { | |
243 mpeg2dec->decoder.convert=NULL; | |
244 mpeg2dec->decoder.convert_id=NULL; | |
13995 | 245 } |
246 | |
9859 | 247 break; |
248 case STATE_SLICE: | |
249 case STATE_END: | |
12932 | 250 case STATE_INVALID_END: |
9859 | 251 // decoding done: |
13112 | 252 if(info->display_fbuf) { |
13152 | 253 mp_image_t* mpi = info->display_fbuf->id; |
254 if (mpeg2dec->pending_length == 0) { | |
13995 | 255 mpeg2dec->pending_length = mpeg2dec->buf_end - mpeg2dec->buf_start; |
256 mpeg2dec->pending_buffer = realloc(mpeg2dec->pending_buffer, mpeg2dec->pending_length); | |
257 memcpy(mpeg2dec->pending_buffer, mpeg2dec->buf_start, mpeg2dec->pending_length); | |
13152 | 258 } else { |
259 // still some data in the pending buffer, shouldn't happen | |
260 mpeg2dec->pending_length = mpeg2dec->buf_end - mpeg2dec->buf_start; | |
261 memmove(mpeg2dec->pending_buffer, mpeg2dec->buf_start, mpeg2dec->pending_length); | |
262 mpeg2dec->pending_buffer = realloc(mpeg2dec->pending_buffer, mpeg2dec->pending_length + len); | |
263 memcpy(mpeg2dec->pending_buffer+mpeg2dec->pending_length, data, len); | |
264 mpeg2dec->pending_length += len; | |
265 } | |
266 // fprintf(stderr, "pending = %d\n", mpeg2dec->pending_length); | |
13112 | 267 return mpi; |
268 } | |
7957
31fd09cc9ba2
passing picture_type (might be usefull for postprocessing)
michael
parents:
7756
diff
changeset
|
269 } |
31fd09cc9ba2
passing picture_type (might be usefull for postprocessing)
michael
parents:
7756
diff
changeset
|
270 } |
5465 | 271 } |
8026
b465ba5897a3
usage of libmpeg2, liba52, mp3lib & svq1 can be disabled
arpi
parents:
7957
diff
changeset
|
272 #endif |