]> git.sesse.net Git - ffmpeg/blob - libavcodec/h263dec.c
1f8ef678b82d5f1932f26d201df1936381d33a79
[ffmpeg] / libavcodec / h263dec.c
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;
31
32     s->avctx = avctx;
33     s->out_format = FMT_H263;
34
35     s->width = avctx->width;
36     s->height = avctx->height;
37
38     /* select sub codec */
39     switch(avctx->codec->id) {
40     case CODEC_ID_H263:
41         s->gob_number = 0;
42         s->first_gob_line = 0;
43         break;
44     case CODEC_ID_MPEG4:
45         s->time_increment_bits = 4; /* default value for broken headers */
46         s->h263_pred = 1;
47         s->has_b_frames = 1; //default, might be overriden in the vol header during header parsing
48         break;
49     case CODEC_ID_MSMPEG4V1:
50         s->h263_msmpeg4 = 1;
51         s->h263_pred = 1;
52         s->msmpeg4_version=1;
53         break;
54     case CODEC_ID_MSMPEG4V2:
55         s->h263_msmpeg4 = 1;
56         s->h263_pred = 1;
57         s->msmpeg4_version=2;
58         break;
59     case CODEC_ID_MSMPEG4V3:
60         s->h263_msmpeg4 = 1;
61         s->h263_pred = 1;
62         s->msmpeg4_version=3;
63         break;
64     case CODEC_ID_WMV1:
65         s->h263_msmpeg4 = 1;
66         s->h263_pred = 1;
67         s->msmpeg4_version=4;
68         break;
69     case CODEC_ID_H263I:
70         s->h263_intel = 1;
71         break;
72     default:
73         return -1;
74     }
75     s->codec_id= avctx->codec->id;
76     avctx->mbskip_table= s->mbskip_table;
77     
78     /* for h263, we allocate the images after having read the header */
79     if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4)
80         if (MPV_common_init(s) < 0)
81             return -1;
82
83     if (s->h263_msmpeg4)
84         msmpeg4_decode_init_vlc(s);
85     else
86         h263_decode_init_vlc(s);
87     
88     return 0;
89 }
90
91 static int h263_decode_end(AVCodecContext *avctx)
92 {
93     MpegEncContext *s = avctx->priv_data;
94
95     MPV_common_end(s);
96     return 0;
97 }
98
99 static int h263_decode_frame(AVCodecContext *avctx, 
100                              void *data, int *data_size,
101                              UINT8 *buf, int buf_size)
102 {
103     MpegEncContext *s = avctx->priv_data;
104     int ret;
105     AVPicture *pict = data; 
106
107 #ifdef DEBUG
108     printf("*****frame %d size=%d\n", avctx->frame_number, buf_size);
109     printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
110 #endif
111
112     s->hurry_up= avctx->hurry_up;
113     
114     /* no supplementary picture */
115     if (buf_size == 0) {
116         *data_size = 0;
117         return 0;
118     }
119
120     if(s->bitstream_buffer_size){ //divx 5.01+ frame reorder
121         init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size);
122         s->bitstream_buffer_size=0;
123     }else
124         init_get_bits(&s->gb, buf, buf_size);
125
126     /* let's go :-) */
127     if (s->h263_msmpeg4) {
128         ret = msmpeg4_decode_picture_header(s);
129     } else if (s->h263_pred) {
130         ret = mpeg4_decode_picture_header(s);
131         s->has_b_frames= !s->low_delay;
132     } else if (s->h263_intel) {
133         ret = intel_h263_decode_picture_header(s);
134     } else {
135         ret = h263_decode_picture_header(s);
136     }
137
138         /* After H263 & mpeg4 header decode we have the height, width,*/
139         /* and other parameters. So then we could init the picture   */
140         /* FIXME: By the way H263 decoder is evolving it should have */
141         /* an H263EncContext                                         */
142     if (!s->context_initialized) {
143         avctx->width = s->width;
144         avctx->height = s->height;
145         avctx->aspect_ratio_info= s->aspect_ratio_info;
146         if (MPV_common_init(s) < 0)
147             return -1;
148     } else if (s->width != avctx->width || s->height != avctx->height) {
149         /* H.263 could change picture size any time */
150         MPV_common_end(s);
151         if (MPV_common_init(s) < 0)
152             return -1;
153     }
154
155     if(ret==FRAME_SKIPED) return 0;
156     if (ret < 0)
157         return -1;
158     /* skip b frames if we dont have reference frames */
159     if(s->num_available_buffers<2 && s->pict_type==B_TYPE) return 0;
160     /* skip b frames if we are in a hurry */
161     if(s->hurry_up && s->pict_type==B_TYPE) return 0;
162         
163     MPV_frame_start(s);
164
165 #ifdef DEBUG
166     printf("qscale=%d\n", s->qscale);
167 #endif
168
169     /* decode each macroblock */
170     s->block_wrap[0]=
171     s->block_wrap[1]=
172     s->block_wrap[2]=
173     s->block_wrap[3]= s->mb_width*2 + 2;
174     s->block_wrap[4]=
175     s->block_wrap[5]= s->mb_width + 2;
176     for(s->mb_y=0; s->mb_y < s->mb_height; s->mb_y++) {
177         /* Check for GOB headers on H.263 */
178         /* FIXME: In the future H.263+ will have intra prediction */
179         /* and we are gonna need another way to detect MPEG4      */
180         if (s->mb_y && !s->h263_pred) {
181             s->first_gob_line = h263_decode_gob_header(s);
182         }
183
184         s->block_index[0]= s->block_wrap[0]*(s->mb_y*2 + 1) - 1;
185         s->block_index[1]= s->block_wrap[0]*(s->mb_y*2 + 1);
186         s->block_index[2]= s->block_wrap[0]*(s->mb_y*2 + 2) - 1;
187         s->block_index[3]= s->block_wrap[0]*(s->mb_y*2 + 2);
188         s->block_index[4]= s->block_wrap[4]*(s->mb_y + 1)                    + s->block_wrap[0]*(s->mb_height*2 + 2);
189         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);
190         for(s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) {
191             s->block_index[0]+=2;
192             s->block_index[1]+=2;
193             s->block_index[2]+=2;
194             s->block_index[3]+=2;
195             s->block_index[4]++;
196             s->block_index[5]++;
197 #ifdef DEBUG
198             printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y);
199 #endif
200             //fprintf(stderr,"\nFrame: %d\tMB: %d",avctx->frame_number, (s->mb_y * s->mb_width) + s->mb_x);
201             /* DCT & quantize */
202             if (s->h263_pred && s->msmpeg4_version!=2) {
203                 h263_dc_scale(s);
204             } else {
205                 /* default quantization values */
206                 s->y_dc_scale = 8;
207                 s->c_dc_scale = 8;
208             }
209             clear_blocks(s->block[0]);
210             
211             s->mv_dir = MV_DIR_FORWARD;
212             s->mv_type = MV_TYPE_16X16; 
213             if (s->h263_msmpeg4) {
214                 if (msmpeg4_decode_mb(s, s->block) < 0) {
215                     fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x);
216                     return -1;
217                 }
218             } else {
219                 if (h263_decode_mb(s, s->block) < 0) {
220                     fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x);
221                     return -1;
222                 }
223             }
224             MPV_decode_mb(s, s->block);
225         }
226         if (    avctx->draw_horiz_band 
227             && (s->num_available_buffers>=1 || (!s->has_b_frames)) ) {
228             UINT8 *src_ptr[3];
229             int y, h, offset;
230             y = s->mb_y * 16;
231             h = s->height - y;
232             if (h > 16)
233                 h = 16;
234             offset = y * s->linesize;
235             if(s->pict_type==B_TYPE || (!s->has_b_frames)){
236                 src_ptr[0] = s->current_picture[0] + offset;
237                 src_ptr[1] = s->current_picture[1] + (offset >> 2);
238                 src_ptr[2] = s->current_picture[2] + (offset >> 2);
239             } else {
240                 src_ptr[0] = s->last_picture[0] + offset;
241                 src_ptr[1] = s->last_picture[1] + (offset >> 2);
242                 src_ptr[2] = s->last_picture[2] + (offset >> 2);
243             }
244             avctx->draw_horiz_band(avctx, src_ptr, s->linesize,
245                                    y, s->width, h);
246         }
247     }
248     
249     if (s->h263_msmpeg4 && s->msmpeg4_version<4 && s->pict_type==I_TYPE)
250         if(msmpeg4_decode_ext_header(s, buf_size) < 0) return -1;
251     
252     /* divx 5.01+ bistream reorder stuff */
253     if(s->codec_id==CODEC_ID_MPEG4 && s->bitstream_buffer_size==0){
254         int current_pos= get_bits_count(&s->gb)/8;
255         if(   buf_size - current_pos > 5 
256            && buf_size - current_pos < BITSTREAM_BUFFER_SIZE){
257             memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos);
258             s->bitstream_buffer_size= buf_size - current_pos;
259         }
260     }
261   
262     MPV_frame_end(s);
263     
264     if(s->pict_type==B_TYPE || (!s->has_b_frames)){
265         pict->data[0] = s->current_picture[0];
266         pict->data[1] = s->current_picture[1];
267         pict->data[2] = s->current_picture[2];
268     } else {
269         pict->data[0] = s->last_picture[0];
270         pict->data[1] = s->last_picture[1];
271         pict->data[2] = s->last_picture[2];
272     }
273     pict->linesize[0] = s->linesize;
274     pict->linesize[1] = s->linesize / 2;
275     pict->linesize[2] = s->linesize / 2;
276
277     avctx->quality = s->qscale;
278
279     /* Return the Picture timestamp as the frame number */
280     /* we substract 1 because it is added on utils.c    */
281     avctx->frame_number = s->picture_number - 1;
282
283     /* dont output the last pic after seeking 
284        note we allready added +1 for the current pix in MPV_frame_end(s) */
285     if(s->num_available_buffers>=2 || (!s->has_b_frames))
286         *data_size = sizeof(AVPicture);
287
288     return buf_size;
289 }
290
291 AVCodec mpeg4_decoder = {
292     "mpeg4",
293     CODEC_TYPE_VIDEO,
294     CODEC_ID_MPEG4,
295     sizeof(MpegEncContext),
296     h263_decode_init,
297     NULL,
298     h263_decode_end,
299     h263_decode_frame,
300     CODEC_CAP_DRAW_HORIZ_BAND,
301 };
302
303 AVCodec h263_decoder = {
304     "h263",
305     CODEC_TYPE_VIDEO,
306     CODEC_ID_H263,
307     sizeof(MpegEncContext),
308     h263_decode_init,
309     NULL,
310     h263_decode_end,
311     h263_decode_frame,
312     CODEC_CAP_DRAW_HORIZ_BAND,
313 };
314
315 AVCodec msmpeg4v1_decoder = {
316     "msmpeg4v1",
317     CODEC_TYPE_VIDEO,
318     CODEC_ID_MSMPEG4V1,
319     sizeof(MpegEncContext),
320     h263_decode_init,
321     NULL,
322     h263_decode_end,
323     h263_decode_frame,
324     CODEC_CAP_DRAW_HORIZ_BAND,
325 };
326
327 AVCodec msmpeg4v2_decoder = {
328     "msmpeg4v2",
329     CODEC_TYPE_VIDEO,
330     CODEC_ID_MSMPEG4V2,
331     sizeof(MpegEncContext),
332     h263_decode_init,
333     NULL,
334     h263_decode_end,
335     h263_decode_frame,
336     CODEC_CAP_DRAW_HORIZ_BAND,
337 };
338
339 AVCodec msmpeg4v3_decoder = {
340     "msmpeg4",
341     CODEC_TYPE_VIDEO,
342     CODEC_ID_MSMPEG4V3,
343     sizeof(MpegEncContext),
344     h263_decode_init,
345     NULL,
346     h263_decode_end,
347     h263_decode_frame,
348     CODEC_CAP_DRAW_HORIZ_BAND,
349 };
350
351 AVCodec wmv1_decoder = {
352     "wmv1",
353     CODEC_TYPE_VIDEO,
354     CODEC_ID_WMV1,
355     sizeof(MpegEncContext),
356     h263_decode_init,
357     NULL,
358     h263_decode_end,
359     h263_decode_frame,
360     CODEC_CAP_DRAW_HORIZ_BAND,
361 };
362
363 AVCodec h263i_decoder = {
364     "h263i",
365     CODEC_TYPE_VIDEO,
366     CODEC_ID_H263I,
367     sizeof(MpegEncContext),
368     h263_decode_init,
369     NULL,
370     h263_decode_end,
371     h263_decode_frame,
372     CODEC_CAP_DRAW_HORIZ_BAND,
373 };
374