Mercurial > libavcodec.hg
annotate h263dec.c @ 333:8aa87f1dfc52 libavcodec
divx 5.01 support
| author | michaelni |
|---|---|
| date | Mon, 22 Apr 2002 12:45:22 +0000 |
| parents | ac677a84d5df |
| children | c56b45669214 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * H263 decoder | |
| 3 * Copyright (c) 2001 Gerard Lantau. | |
| 4 * | |
| 5 * This program is free software; you can redistribute it and/or modify | |
| 6 * it under the terms of the GNU General Public License as published by | |
| 7 * the Free Software Foundation; either version 2 of the License, or | |
| 8 * (at your option) any later version. | |
| 9 * | |
| 10 * This program is distributed in the hope that it will be useful, | |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 * GNU General Public License for more details. | |
| 14 * | |
| 15 * You should have received a copy of the GNU General Public License | |
| 16 * along with this program; if not, write to the Free Software | |
| 17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
| 18 */ | |
| 19 #include <stdlib.h> | |
| 20 #include <stdio.h> | |
| 21 #include <string.h> | |
| 22 #include "dsputil.h" | |
| 23 #include "avcodec.h" | |
| 24 #include "mpegvideo.h" | |
| 25 | |
| 26 //#define DEBUG | |
| 27 | |
| 28 static int h263_decode_init(AVCodecContext *avctx) | |
| 29 { | |
| 30 MpegEncContext *s = avctx->priv_data; | |
| 60 | 31 int i; |
| 32 | |
| 67 | 33 s->avctx = avctx; |
| 0 | 34 s->out_format = FMT_H263; |
| 35 | |
| 36 s->width = avctx->width; | |
| 37 s->height = avctx->height; | |
| 38 | |
| 39 /* select sub codec */ | |
| 40 switch(avctx->codec->id) { | |
| 41 case CODEC_ID_H263: | |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
42 s->gob_number = 0; |
|
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
43 s->first_gob_line = 0; |
| 0 | 44 break; |
| 67 | 45 case CODEC_ID_MPEG4: |
| 0 | 46 s->time_increment_bits = 4; /* default value for broken headers */ |
| 47 s->h263_pred = 1; | |
| 262 | 48 s->has_b_frames = 1; |
| 0 | 49 break; |
| 307 | 50 case CODEC_ID_MSMPEG4V1: |
| 0 | 51 s->h263_msmpeg4 = 1; |
| 52 s->h263_pred = 1; | |
| 307 | 53 s->msmpeg4_version=1; |
| 54 break; | |
| 55 case CODEC_ID_MSMPEG4V2: | |
| 56 s->h263_msmpeg4 = 1; | |
| 57 s->h263_pred = 1; | |
| 58 s->msmpeg4_version=2; | |
| 59 break; | |
| 60 case CODEC_ID_MSMPEG4V3: | |
| 61 s->h263_msmpeg4 = 1; | |
| 62 s->h263_pred = 1; | |
| 63 s->msmpeg4_version=3; | |
| 0 | 64 break; |
| 311 | 65 case CODEC_ID_WMV1: |
| 66 s->h263_msmpeg4 = 1; | |
| 67 s->h263_pred = 1; | |
| 68 s->msmpeg4_version=4; | |
| 69 break; | |
| 0 | 70 case CODEC_ID_H263I: |
| 71 s->h263_intel = 1; | |
| 72 break; | |
| 73 default: | |
| 74 return -1; | |
| 75 } | |
| 76 | |
| 77 /* for h263, we allocate the images after having read the header */ | |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
78 if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4) |
| 144 | 79 if (MPV_common_init(s) < 0) |
| 80 return -1; | |
| 0 | 81 |
| 60 | 82 /* XXX: suppress this matrix init, only needed because using mpeg1 |
| 83 dequantize in mmx case */ | |
| 84 for(i=0;i<64;i++) | |
| 85 s->non_intra_matrix[i] = default_non_intra_matrix[i]; | |
| 86 | |
| 0 | 87 if (s->h263_msmpeg4) |
| 88 msmpeg4_decode_init_vlc(s); | |
| 89 else | |
| 90 h263_decode_init_vlc(s); | |
| 91 | |
| 92 return 0; | |
| 93 } | |
| 94 | |
| 95 static int h263_decode_end(AVCodecContext *avctx) | |
| 96 { | |
| 97 MpegEncContext *s = avctx->priv_data; | |
| 98 | |
| 99 MPV_common_end(s); | |
| 100 return 0; | |
| 101 } | |
| 102 | |
| 103 static int h263_decode_frame(AVCodecContext *avctx, | |
| 104 void *data, int *data_size, | |
| 105 UINT8 *buf, int buf_size) | |
| 106 { | |
| 107 MpegEncContext *s = avctx->priv_data; | |
| 108 int ret; | |
| 109 AVPicture *pict = data; | |
| 110 | |
| 111 #ifdef DEBUG | |
| 112 printf("*****frame %d size=%d\n", avctx->frame_number, buf_size); | |
| 113 printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]); | |
| 114 #endif | |
| 144 | 115 |
| 0 | 116 /* no supplementary picture */ |
| 117 if (buf_size == 0) { | |
| 118 *data_size = 0; | |
| 119 return 0; | |
| 120 } | |
| 121 | |
| 333 | 122 if(s->bitstream_buffer_size) //divx 5.01+ frame reorder |
| 123 init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size); | |
| 124 else | |
| 125 init_get_bits(&s->gb, buf, buf_size); | |
| 0 | 126 |
| 127 /* let's go :-) */ | |
| 128 if (s->h263_msmpeg4) { | |
| 129 ret = msmpeg4_decode_picture_header(s); | |
| 130 } else if (s->h263_pred) { | |
| 131 ret = mpeg4_decode_picture_header(s); | |
| 132 } else if (s->h263_intel) { | |
| 133 ret = intel_h263_decode_picture_header(s); | |
| 134 } else { | |
| 135 ret = h263_decode_picture_header(s); | |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
136 } |
| 333 | 137 if(ret==FRAME_SKIPED) return 0; |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
138 |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
139 /* After H263 & mpeg4 header decode we have the height, width,*/ |
| 160 | 140 /* and other parameters. So then we could init the picture */ |
| 141 /* FIXME: By the way H263 decoder is evolving it should have */ | |
| 142 /* an H263EncContext */ | |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
143 if (!s->context_initialized) { |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
144 avctx->width = s->width; |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
145 avctx->height = s->height; |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
274
diff
changeset
|
146 avctx->aspect_ratio_info= s->aspect_ratio_info; |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
147 if (MPV_common_init(s) < 0) |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
148 return -1; |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
149 } else if (s->width != avctx->width || s->height != avctx->height) { |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
150 /* H.263 could change picture size any time */ |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
151 MPV_common_end(s); |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
152 if (MPV_common_init(s) < 0) |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
153 return -1; |
| 0 | 154 } |
|
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
273
diff
changeset
|
155 |
| 0 | 156 if (ret < 0) |
| 157 return -1; | |
| 158 | |
| 159 MPV_frame_start(s); | |
| 160 | |
| 161 #ifdef DEBUG | |
| 162 printf("qscale=%d\n", s->qscale); | |
| 163 #endif | |
| 164 | |
| 165 /* decode each macroblock */ | |
| 266 | 166 s->block_wrap[0]= |
| 167 s->block_wrap[1]= | |
| 168 s->block_wrap[2]= | |
| 169 s->block_wrap[3]= s->mb_width*2 + 2; | |
| 170 s->block_wrap[4]= | |
| 171 s->block_wrap[5]= s->mb_width + 2; | |
| 0 | 172 for(s->mb_y=0; s->mb_y < s->mb_height; s->mb_y++) { |
| 162 | 173 /* Check for GOB headers on H.263 */ |
| 174 /* FIXME: In the future H.263+ will have intra prediction */ | |
| 175 /* and we are gonna need another way to detect MPEG4 */ | |
| 176 if (s->mb_y && !s->h263_pred) { | |
| 177 s->first_gob_line = h263_decode_gob_header(s); | |
| 178 } | |
| 296 | 179 |
| 266 | 180 s->block_index[0]= s->block_wrap[0]*(s->mb_y*2 + 1) - 1; |
| 181 s->block_index[1]= s->block_wrap[0]*(s->mb_y*2 + 1); | |
| 182 s->block_index[2]= s->block_wrap[0]*(s->mb_y*2 + 2) - 1; | |
| 183 s->block_index[3]= s->block_wrap[0]*(s->mb_y*2 + 2); | |
| 184 s->block_index[4]= s->block_wrap[4]*(s->mb_y + 1) + s->block_wrap[0]*(s->mb_height*2 + 2); | |
| 185 s->block_index[5]= s->block_wrap[4]*(s->mb_y + 1 + s->mb_height + 2) + s->block_wrap[0]*(s->mb_height*2 + 2); | |
| 0 | 186 for(s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) { |
| 266 | 187 s->block_index[0]+=2; |
| 188 s->block_index[1]+=2; | |
| 189 s->block_index[2]+=2; | |
| 190 s->block_index[3]+=2; | |
| 191 s->block_index[4]++; | |
| 192 s->block_index[5]++; | |
| 0 | 193 #ifdef DEBUG |
| 194 printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y); | |
| 195 #endif | |
| 144 | 196 //fprintf(stderr,"\nFrame: %d\tMB: %d",avctx->frame_number, (s->mb_y * s->mb_width) + s->mb_x); |
| 0 | 197 /* DCT & quantize */ |
| 198 if (s->h263_msmpeg4) { | |
| 199 msmpeg4_dc_scale(s); | |
| 200 } else if (s->h263_pred) { | |
| 201 h263_dc_scale(s); | |
| 202 } else { | |
| 203 /* default quantization values */ | |
| 204 s->y_dc_scale = 8; | |
| 205 s->c_dc_scale = 8; | |
| 206 } | |
| 296 | 207 clear_blocks(s->block[0]); |
| 208 | |
| 0 | 209 s->mv_dir = MV_DIR_FORWARD; |
| 210 s->mv_type = MV_TYPE_16X16; | |
| 211 if (s->h263_msmpeg4) { | |
|
242
d1a9663b973b
* continue after error in msmpeg4_decode_mb - helps for some movie samples
kabi
parents:
231
diff
changeset
|
212 if (msmpeg4_decode_mb(s, s->block) < 0) { |
|
d1a9663b973b
* continue after error in msmpeg4_decode_mb - helps for some movie samples
kabi
parents:
231
diff
changeset
|
213 fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x); |
| 0 | 214 return -1; |
|
242
d1a9663b973b
* continue after error in msmpeg4_decode_mb - helps for some movie samples
kabi
parents:
231
diff
changeset
|
215 } |
| 0 | 216 } else { |
| 161 | 217 if (h263_decode_mb(s, s->block) < 0) { |
| 218 fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x); | |
| 0 | 219 return -1; |
| 161 | 220 } |
| 0 | 221 } |
|
12
4d50c7d89e0f
use block[] in structure to have it aligned on 8 bytes for mmx optimizations
glantau
parents:
0
diff
changeset
|
222 MPV_decode_mb(s, s->block); |
| 0 | 223 } |
| 67 | 224 if (avctx->draw_horiz_band) { |
| 225 UINT8 *src_ptr[3]; | |
| 226 int y, h, offset; | |
| 227 y = s->mb_y * 16; | |
| 228 h = s->height - y; | |
| 229 if (h > 16) | |
| 230 h = 16; | |
| 231 offset = y * s->linesize; | |
| 308 | 232 if(s->pict_type==B_TYPE || (!s->has_b_frames)){ |
| 233 src_ptr[0] = s->current_picture[0] + offset; | |
| 234 src_ptr[1] = s->current_picture[1] + (offset >> 2); | |
| 235 src_ptr[2] = s->current_picture[2] + (offset >> 2); | |
| 236 } else { | |
| 237 src_ptr[0] = s->last_picture[0] + offset; | |
| 238 src_ptr[1] = s->last_picture[1] + (offset >> 2); | |
| 239 src_ptr[2] = s->last_picture[2] + (offset >> 2); | |
| 240 } | |
| 67 | 241 avctx->draw_horiz_band(avctx, src_ptr, s->linesize, |
| 242 y, s->width, h); | |
| 243 } | |
| 0 | 244 } |
| 208 | 245 |
| 311 | 246 if (s->h263_msmpeg4 && s->msmpeg4_version<4 && s->pict_type==I_TYPE) |
| 208 | 247 if(msmpeg4_decode_ext_header(s, buf_size) < 0) return -1; |
| 333 | 248 |
| 249 /* divx 5.01+ bistream reorder stuff */ | |
| 250 if(s->h263_pred && s->bitstream_buffer_size==0){ | |
| 251 int current_pos= get_bits_count(&s->gb)/8; | |
| 252 if( buf_size - current_pos > 5 | |
| 253 && buf_size - current_pos < BITSTREAM_BUFFER_SIZE){ | |
| 254 memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos); | |
| 255 s->bitstream_buffer_size= buf_size - current_pos; | |
| 256 } | |
| 257 }else | |
| 258 s->bitstream_buffer_size=0; | |
| 259 | |
| 0 | 260 MPV_frame_end(s); |
| 261 | |
|
273
34f40a0fc840
msmpeg4 bugfix (wrong frame displayed if some frames are skipped)
michaelni
parents:
266
diff
changeset
|
262 if(s->pict_type==B_TYPE || (!s->has_b_frames)){ |
| 262 | 263 pict->data[0] = s->current_picture[0]; |
| 264 pict->data[1] = s->current_picture[1]; | |
| 265 pict->data[2] = s->current_picture[2]; | |
| 266 } else { | |
| 267 pict->data[0] = s->last_picture[0]; | |
| 268 pict->data[1] = s->last_picture[1]; | |
| 269 pict->data[2] = s->last_picture[2]; | |
| 270 } | |
| 0 | 271 pict->linesize[0] = s->linesize; |
| 272 pict->linesize[1] = s->linesize / 2; | |
| 273 pict->linesize[2] = s->linesize / 2; | |
| 274 | |
| 275 avctx->quality = s->qscale; | |
| 231 | 276 |
| 277 /* Return the Picture timestamp as the frame number */ | |
| 278 /* we substract 1 because it is added on utils.c */ | |
| 279 avctx->frame_number = s->picture_number - 1; | |
| 280 | |
| 0 | 281 *data_size = sizeof(AVPicture); |
| 282 return buf_size; | |
| 283 } | |
| 284 | |
| 67 | 285 AVCodec mpeg4_decoder = { |
| 286 "mpeg4", | |
| 0 | 287 CODEC_TYPE_VIDEO, |
| 67 | 288 CODEC_ID_MPEG4, |
| 0 | 289 sizeof(MpegEncContext), |
| 290 h263_decode_init, | |
| 291 NULL, | |
| 292 h263_decode_end, | |
| 293 h263_decode_frame, | |
| 67 | 294 CODEC_CAP_DRAW_HORIZ_BAND, |
| 0 | 295 }; |
| 296 | |
| 297 AVCodec h263_decoder = { | |
| 298 "h263", | |
| 299 CODEC_TYPE_VIDEO, | |
| 300 CODEC_ID_H263, | |
| 301 sizeof(MpegEncContext), | |
| 302 h263_decode_init, | |
| 303 NULL, | |
| 304 h263_decode_end, | |
| 305 h263_decode_frame, | |
| 67 | 306 CODEC_CAP_DRAW_HORIZ_BAND, |
| 0 | 307 }; |
| 308 | |
| 307 | 309 AVCodec msmpeg4v1_decoder = { |
| 310 "msmpeg4v1", | |
| 311 CODEC_TYPE_VIDEO, | |
| 312 CODEC_ID_MSMPEG4V1, | |
| 313 sizeof(MpegEncContext), | |
| 314 h263_decode_init, | |
| 315 NULL, | |
| 316 h263_decode_end, | |
| 317 h263_decode_frame, | |
| 318 CODEC_CAP_DRAW_HORIZ_BAND, | |
| 319 }; | |
| 320 | |
| 321 AVCodec msmpeg4v2_decoder = { | |
| 322 "msmpeg4v2", | |
| 323 CODEC_TYPE_VIDEO, | |
| 324 CODEC_ID_MSMPEG4V2, | |
| 325 sizeof(MpegEncContext), | |
| 326 h263_decode_init, | |
| 327 NULL, | |
| 328 h263_decode_end, | |
| 329 h263_decode_frame, | |
| 330 CODEC_CAP_DRAW_HORIZ_BAND, | |
| 331 }; | |
| 332 | |
| 333 AVCodec msmpeg4v3_decoder = { | |
| 0 | 334 "msmpeg4", |
| 335 CODEC_TYPE_VIDEO, | |
| 307 | 336 CODEC_ID_MSMPEG4V3, |
| 0 | 337 sizeof(MpegEncContext), |
| 338 h263_decode_init, | |
| 339 NULL, | |
| 340 h263_decode_end, | |
| 341 h263_decode_frame, | |
| 67 | 342 CODEC_CAP_DRAW_HORIZ_BAND, |
| 0 | 343 }; |
| 344 | |
| 311 | 345 AVCodec wmv1_decoder = { |
| 346 "wmv1", | |
| 347 CODEC_TYPE_VIDEO, | |
| 348 CODEC_ID_WMV1, | |
| 349 sizeof(MpegEncContext), | |
| 350 h263_decode_init, | |
| 351 NULL, | |
| 352 h263_decode_end, | |
| 353 h263_decode_frame, | |
| 354 CODEC_CAP_DRAW_HORIZ_BAND, | |
| 355 }; | |
| 356 | |
| 0 | 357 AVCodec h263i_decoder = { |
| 358 "h263i", | |
| 359 CODEC_TYPE_VIDEO, | |
| 360 CODEC_ID_H263I, | |
| 361 sizeof(MpegEncContext), | |
| 362 h263_decode_init, | |
| 363 NULL, | |
| 364 h263_decode_end, | |
| 365 h263_decode_frame, | |
| 67 | 366 CODEC_CAP_DRAW_HORIZ_BAND, |
| 0 | 367 }; |
| 368 |
