Mercurial > mplayer.hg
annotate libmpcodecs/vd_libmpeg2.c @ 13308:8ff17d153414
info packet is now file global, while meta pakcet is stream specific, as discussed with Rich
author | alex |
---|---|
date | Sat, 11 Sep 2004 09:18:07 +0000 |
parents | e264e6d6eb76 |
children | cbadd7b190b2 |
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" |
9859 | 29 //#include "libmpeg2/convert.h" |
4998 | 30 |
5465 | 31 #include "../cpudetect.h" |
32 | |
4998 | 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){ | |
9859 | 40 mpeg2dec_t * mpeg2dec; |
41 const mpeg2_info_t * info; | |
42 int accel; | |
5465 | 43 |
9859 | 44 accel = 0; |
45 if(gCpuCaps.hasMMX) | |
46 accel |= MPEG2_ACCEL_X86_MMX; | |
47 if(gCpuCaps.hasMMX2) | |
48 accel |= MPEG2_ACCEL_X86_MMXEXT; | |
49 if(gCpuCaps.has3DNow) | |
50 accel |= MPEG2_ACCEL_X86_3DNOW; | |
10267
d953763cc555
libmpeg2-altivec patch by Magnus Damm <damm@opensource.se>:
arpi
parents:
10250
diff
changeset
|
51 if(gCpuCaps.hasAltiVec) |
d953763cc555
libmpeg2-altivec patch by Magnus Damm <damm@opensource.se>:
arpi
parents:
10250
diff
changeset
|
52 accel |= MPEG2_ACCEL_PPC_ALTIVEC; |
13117 | 53 #ifdef HAVE_VIS |
54 accel |= MPEG2_ACCEL_SPARC_VIS; | |
9859 | 55 #endif |
56 mpeg2_accel(accel); | |
5465 | 57 |
9859 | 58 mpeg2dec = mpeg2_init (); |
59 | |
60 if(!mpeg2dec) return 0; | |
61 | |
62 mpeg2_custom_fbuf(mpeg2dec,1); // enable DR1 | |
5675
0ff1b9ab7afc
slices+field pictures fixed, initial sig11 workaround
arpi
parents:
5613
diff
changeset
|
63 |
9859 | 64 sh->context=mpeg2dec; |
65 | |
13112 | 66 mpeg2dec->pending_buffer = 0; |
67 mpeg2dec->pending_length = 0; | |
68 | |
9859 | 69 return 1; |
70 //return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12); | |
4998 | 71 } |
72 | |
73 // uninit driver | |
74 static void uninit(sh_video_t *sh){ | |
9859 | 75 mpeg2dec_t * mpeg2dec = sh->context; |
13112 | 76 if (mpeg2dec->pending_buffer) free(mpeg2dec->pending_buffer); |
13139 | 77 mpeg2dec->decoder.convert_id=NULL; |
9859 | 78 mpeg2_close (mpeg2dec); |
4998 | 79 } |
80 | |
13112 | 81 static void draw_slice (void * _sh, uint8_t * const * src, unsigned int y){ |
9859 | 82 sh_video_t* sh = (sh_video_t*) _sh; |
83 mpeg2dec_t* mpeg2dec = sh->context; | |
84 const mpeg2_info_t * info = mpeg2_info (mpeg2dec); | |
85 int stride[3]; | |
5465 | 86 |
13112 | 87 // printf("draw_slice() y=%d \n",y); |
5465 | 88 |
9859 | 89 stride[0]=mpeg2dec->decoder.stride; |
90 stride[1]=stride[2]=mpeg2dec->decoder.uv_stride; | |
5465 | 91 |
9859 | 92 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
|
93 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
|
94 (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
|
95 info->sequence->picture_height-y, |
9859 | 96 0, y); |
4998 | 97 } |
98 | |
5465 | 99 // decode a frame |
100 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ | |
9859 | 101 mpeg2dec_t * mpeg2dec = sh->context; |
102 const mpeg2_info_t * info = mpeg2_info (mpeg2dec); | |
103 int drop_frame, framedrop=flags&3; | |
104 | |
13150 | 105 //MPlayer registers its own draw_slice callback, prevent libmpeg2 from freeing the context |
106 mpeg2dec->decoder.convert=NULL; | |
107 mpeg2dec->decoder.convert_id=NULL; | |
108 | |
109 | |
11080
26f1b3ad4a77
skip null frames in mpeg files, patch by Zoltan Hidvegi <mplayer@hzoli.2y.net>
attila
parents:
10663
diff
changeset
|
110 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
|
111 |
9859 | 112 // append extra 'end of frame' code: |
113 ((char*)data+len)[0]=0; | |
114 ((char*)data+len)[1]=0; | |
115 ((char*)data+len)[2]=1; | |
116 ((char*)data+len)[3]=0xff; | |
117 len+=4; | |
5465 | 118 |
13112 | 119 if (mpeg2dec->pending_length) { |
120 mpeg2_buffer (mpeg2dec, mpeg2dec->pending_buffer, mpeg2dec->pending_buffer + mpeg2dec->pending_length); | |
121 } else { | |
122 mpeg2_buffer (mpeg2dec, data, data+len); | |
123 } | |
9859 | 124 |
125 while(1){ | |
126 int state=mpeg2_parse (mpeg2dec); | |
127 switch(state){ | |
12932 | 128 case STATE_BUFFER: |
13112 | 129 if (mpeg2dec->pending_length) { |
13152 | 130 // just finished the pending data, continue with processing of the passed buffer |
13112 | 131 mpeg2dec->pending_length = 0; |
132 mpeg2_buffer (mpeg2dec, data, data+len); | |
133 } else { | |
134 // parsing of the passed buffer finished, return. | |
135 return 0; | |
136 } | |
137 break; | |
9859 | 138 case STATE_SEQUENCE: |
139 // video parameters inited/changed, (re)init libvo: | |
140 if(!mpcodecs_config_vo(sh, | |
141 info->sequence->width, | |
142 info->sequence->height, IMGFMT_YV12)) return 0; | |
143 break; | |
144 case STATE_PICTURE: { | |
145 int type=info->current_picture->flags&PIC_MASK_CODING_TYPE; | |
13112 | 146 mp_image_t* mpi_new; |
9859 | 147 |
148 drop_frame = framedrop && (mpeg2dec->decoder.coding_type == B_TYPE); | |
149 drop_frame |= framedrop>=2; // hard drop | |
150 if (drop_frame) { | |
151 mpeg2_skip(mpeg2dec, 1); | |
152 //printf("Dropping Frame ...\n"); | |
153 break; | |
154 } | |
155 mpeg2_skip(mpeg2dec, 0); //mpeg2skip skips frames until set again to 0 | |
156 | |
157 // get_buffer "callback": | |
13112 | 158 mpi_new=mpcodecs_get_image(sh,MP_IMGTYPE_IPB, |
159 (type==PIC_FLAG_CODING_TYPE_B) | |
9859 | 160 ? ((!framedrop && vd_use_slices && |
161 (info->current_picture->flags&PIC_FLAG_PROGRESSIVE_FRAME)) ? | |
162 MP_IMGFLAG_DRAW_CALLBACK:0) | |
13112 | 163 : (MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE), |
10250 | 164 (info->sequence->picture_width+15)&(~15), |
165 (info->sequence->picture_height+15)&(~15) ); | |
13112 | 166 if(!mpi_new) return 0; // VO ERROR!!!!!!!! |
167 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
|
168 if (info->current_picture->flags&PIC_FLAG_TOP_FIELD_FIRST) |
13112 | 169 mpi_new->fields |= MP_IMGFIELD_TOP_FIRST; |
170 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
|
171 if (info->current_picture->flags&PIC_FLAG_REPEAT_FIRST_FIELD) |
13112 | 172 mpi_new->fields |= MP_IMGFIELD_REPEAT_FIRST; |
173 else mpi_new->fields &= ~MP_IMGFIELD_REPEAT_FIRST; | |
174 mpi_new->fields |= MP_IMGFIELD_ORDERED; | |
9859 | 175 |
12935 | 176 #ifdef MPEG12_POSTPROC |
13112 | 177 if(!mpi_new->qscale){ |
178 mpi_new->qstride=(info->sequence->picture_width+15)>>4; | |
179 mpi_new->qscale=malloc(mpi_new->qstride*((info->sequence->picture_height+15)>>4)); | |
12935 | 180 } |
13112 | 181 mpeg2dec->decoder.quant_store=mpi_new->qscale; |
182 mpeg2dec->decoder.quant_stride=mpi_new->qstride; | |
183 mpi_new->pict_type=type; // 1->I, 2->P, 3->B | |
184 mpi_new->qscale_type= 1; | |
12935 | 185 #endif |
186 | |
13112 | 187 if(mpi_new->flags&MP_IMGFLAG_DRAW_CALLBACK && |
188 !(mpi_new->flags&MP_IMGFLAG_DIRECT)){ | |
9859 | 189 // nice, filter/vo likes draw_callback :) |
190 mpeg2dec->decoder.convert=draw_slice; | |
12932 | 191 mpeg2dec->decoder.convert_id=sh; |
9859 | 192 } else |
193 mpeg2dec->decoder.convert=NULL; | |
194 break; | |
195 } | |
196 case STATE_SLICE: | |
197 case STATE_END: | |
12932 | 198 case STATE_INVALID_END: |
9859 | 199 // decoding done: |
13112 | 200 if(info->display_fbuf) { |
13152 | 201 mp_image_t* mpi = info->display_fbuf->id; |
202 if (mpeg2dec->pending_length == 0) { | |
13112 | 203 mpeg2dec->pending_length = mpeg2dec->buf_end - mpeg2dec->buf_start; |
204 mpeg2dec->pending_buffer = realloc(mpeg2dec->pending_buffer, mpeg2dec->pending_length); | |
205 memcpy(mpeg2dec->pending_buffer, mpeg2dec->buf_start, mpeg2dec->pending_length); | |
13152 | 206 } else { |
207 // still some data in the pending buffer, shouldn't happen | |
208 mpeg2dec->pending_length = mpeg2dec->buf_end - mpeg2dec->buf_start; | |
209 memmove(mpeg2dec->pending_buffer, mpeg2dec->buf_start, mpeg2dec->pending_length); | |
210 mpeg2dec->pending_buffer = realloc(mpeg2dec->pending_buffer, mpeg2dec->pending_length + len); | |
211 memcpy(mpeg2dec->pending_buffer+mpeg2dec->pending_length, data, len); | |
212 mpeg2dec->pending_length += len; | |
213 } | |
214 // fprintf(stderr, "pending = %d\n", mpeg2dec->pending_length); | |
13112 | 215 return mpi; |
216 } | |
7957
31fd09cc9ba2
passing picture_type (might be usefull for postprocessing)
michael
parents:
7756
diff
changeset
|
217 } |
31fd09cc9ba2
passing picture_type (might be usefull for postprocessing)
michael
parents:
7756
diff
changeset
|
218 } |
5465 | 219 } |
8026
b465ba5897a3
usage of libmpeg2, liba52, mp3lib & svq1 can be disabled
arpi
parents:
7957
diff
changeset
|
220 #endif |