Mercurial > mplayer.hg
annotate libmpcodecs/vd_libmpeg2.c @ 13139:653df8deffc7
prevent libmpeg2 from freeing sh
| author | faust3 |
|---|---|
| date | Wed, 25 Aug 2004 16:29:21 +0000 |
| parents | 9bba611637fb |
| children | a7542243d695 |
| 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 mp_image_t* mpi=NULL; | |
| 104 int drop_frame, framedrop=flags&3; | |
| 105 | |
|
11080
26f1b3ad4a77
skip null frames in mpeg files, patch by Zoltan Hidvegi <mplayer@hzoli.2y.net>
attila
parents:
10663
diff
changeset
|
106 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
|
107 |
| 9859 | 108 // append extra 'end of frame' code: |
| 109 ((char*)data+len)[0]=0; | |
| 110 ((char*)data+len)[1]=0; | |
| 111 ((char*)data+len)[2]=1; | |
| 112 ((char*)data+len)[3]=0xff; | |
| 113 len+=4; | |
| 5465 | 114 |
| 13112 | 115 if (mpeg2dec->pending_length) { |
| 116 mpeg2_buffer (mpeg2dec, mpeg2dec->pending_buffer, mpeg2dec->pending_buffer + mpeg2dec->pending_length); | |
| 117 } else { | |
| 118 mpeg2_buffer (mpeg2dec, data, data+len); | |
| 119 } | |
| 9859 | 120 |
| 121 while(1){ | |
| 122 int state=mpeg2_parse (mpeg2dec); | |
| 123 switch(state){ | |
| 12932 | 124 case STATE_BUFFER: |
| 13112 | 125 if (mpeg2dec->pending_length) { |
| 126 mpeg2dec->pending_length = 0; | |
| 127 mpeg2_buffer (mpeg2dec, data, data+len); | |
| 128 } else { | |
| 129 // parsing of the passed buffer finished, return. | |
| 130 // if(!mpi) fprintf(stderr, "\nNO PICTURE!\n"); | |
| 131 return 0; | |
| 132 } | |
| 133 break; | |
| 9859 | 134 case STATE_SEQUENCE: |
| 135 // video parameters inited/changed, (re)init libvo: | |
| 136 if(!mpcodecs_config_vo(sh, | |
| 137 info->sequence->width, | |
| 138 info->sequence->height, IMGFMT_YV12)) return 0; | |
| 139 break; | |
| 140 case STATE_PICTURE: { | |
| 141 int type=info->current_picture->flags&PIC_MASK_CODING_TYPE; | |
| 13112 | 142 mp_image_t* mpi_new; |
| 9859 | 143 |
| 144 drop_frame = framedrop && (mpeg2dec->decoder.coding_type == B_TYPE); | |
| 145 drop_frame |= framedrop>=2; // hard drop | |
| 146 if (drop_frame) { | |
| 147 mpeg2_skip(mpeg2dec, 1); | |
| 148 //printf("Dropping Frame ...\n"); | |
| 149 break; | |
| 150 } | |
| 151 mpeg2_skip(mpeg2dec, 0); //mpeg2skip skips frames until set again to 0 | |
| 152 | |
| 153 // get_buffer "callback": | |
| 13112 | 154 mpi_new=mpcodecs_get_image(sh,MP_IMGTYPE_IPB, |
| 155 (type==PIC_FLAG_CODING_TYPE_B) | |
| 9859 | 156 ? ((!framedrop && vd_use_slices && |
| 157 (info->current_picture->flags&PIC_FLAG_PROGRESSIVE_FRAME)) ? | |
| 158 MP_IMGFLAG_DRAW_CALLBACK:0) | |
| 13112 | 159 : (MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE), |
| 10250 | 160 (info->sequence->picture_width+15)&(~15), |
| 161 (info->sequence->picture_height+15)&(~15) ); | |
| 13112 | 162 if(!mpi_new) return 0; // VO ERROR!!!!!!!! |
| 163 // if (mpi_new == mpi) | |
| 164 // fprintf(stderr, "AIEEEEEEEEEE\n");; | |
| 165 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
|
166 if (info->current_picture->flags&PIC_FLAG_TOP_FIELD_FIRST) |
| 13112 | 167 mpi_new->fields |= MP_IMGFIELD_TOP_FIRST; |
| 168 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
|
169 if (info->current_picture->flags&PIC_FLAG_REPEAT_FIRST_FIELD) |
| 13112 | 170 mpi_new->fields |= MP_IMGFIELD_REPEAT_FIRST; |
| 171 else mpi_new->fields &= ~MP_IMGFIELD_REPEAT_FIRST; | |
| 172 mpi_new->fields |= MP_IMGFIELD_ORDERED; | |
| 9859 | 173 |
| 12935 | 174 #ifdef MPEG12_POSTPROC |
| 13112 | 175 if(!mpi_new->qscale){ |
| 176 mpi_new->qstride=(info->sequence->picture_width+15)>>4; | |
| 177 mpi_new->qscale=malloc(mpi_new->qstride*((info->sequence->picture_height+15)>>4)); | |
| 12935 | 178 } |
| 13112 | 179 mpeg2dec->decoder.quant_store=mpi_new->qscale; |
| 180 mpeg2dec->decoder.quant_stride=mpi_new->qstride; | |
| 181 mpi_new->pict_type=type; // 1->I, 2->P, 3->B | |
| 182 mpi_new->qscale_type= 1; | |
| 12935 | 183 #endif |
| 184 | |
| 13112 | 185 if(mpi_new->flags&MP_IMGFLAG_DRAW_CALLBACK && |
| 186 !(mpi_new->flags&MP_IMGFLAG_DIRECT)){ | |
| 9859 | 187 // nice, filter/vo likes draw_callback :) |
| 188 mpeg2dec->decoder.convert=draw_slice; | |
| 12932 | 189 mpeg2dec->decoder.convert_id=sh; |
| 9859 | 190 } else |
| 191 mpeg2dec->decoder.convert=NULL; | |
| 192 break; | |
| 193 } | |
| 194 case STATE_SLICE: | |
| 195 case STATE_END: | |
| 12932 | 196 case STATE_INVALID_END: |
| 9859 | 197 // decoding done: |
| 198 if(mpi) printf("AJAJJJJJJJJ2!\n"); | |
| 13112 | 199 if(info->display_fbuf) { |
| 200 mpi=info->display_fbuf->id; | |
| 201 mpeg2dec->pending_length = mpeg2dec->buf_end - mpeg2dec->buf_start; | |
| 202 // fprintf(stderr, "pending = %d\n", pending); | |
| 203 mpeg2dec->pending_buffer = realloc(mpeg2dec->pending_buffer, mpeg2dec->pending_length); | |
| 204 memcpy(mpeg2dec->pending_buffer, mpeg2dec->buf_start, mpeg2dec->pending_length); | |
| 205 return mpi; | |
| 206 } | |
|
7957
31fd09cc9ba2
passing picture_type (might be usefull for postprocessing)
michael
parents:
7756
diff
changeset
|
207 } |
|
31fd09cc9ba2
passing picture_type (might be usefull for postprocessing)
michael
parents:
7756
diff
changeset
|
208 } |
| 5465 | 209 } |
|
8026
b465ba5897a3
usage of libmpeg2, liba52, mp3lib & svq1 can be disabled
arpi
parents:
7957
diff
changeset
|
210 #endif |
