[cvs] / xvidcore / src / decoder.c Repository:
ViewVC logotype

Diff of /xvidcore/src/decoder.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9, Thu Apr 4 13:58:06 2002 UTC revision 1.49.2.17, Thu Oct 16 12:16:00 2003 UTC
# Line 1  Line 1 
1  /**************************************************************************  /*****************************************************************************
2   *   *
3   *      XVID MPEG-4 VIDEO CODEC   *      XVID MPEG-4 VIDEO CODEC
4   *      decoder main   *  - Decoder Module -
5   *   *
6   *      This program is an implementation of a part of one or more MPEG-4   *  Copyright(C) 2002      MinChen <chenm001@163.com>
7   *      Video tools as specified in ISO/IEC 14496-2 standard.  Those intending   *               2002-2003 Peter Ross <pross@xvid.org>
  *      to use this software module in hardware or software products are  
  *      advised that its use may infringe existing patents or copyrights, and  
  *      any such use would be at such party's own risk.  The original  
  *      developer of this software module and his/her company, and subsequent  
  *      editors and their companies, will have no liability for use of this  
  *      software or modifications or derivatives thereof.  
8   *   *
9   *      This program is xvid_free software; you can redistribute it and/or modify   *  This program is free software ; you can redistribute it and/or modify
10   *      it under the terms of the GNU General Public License as published by   *      it under the terms of the GNU General Public License as published by
11   *      the xvid_free Software Foundation; either version 2 of the License, or   *  the Free Software Foundation ; either version 2 of the License, or
12   *      (at your option) any later version.   *      (at your option) any later version.
13   *   *
14   *      This program is distributed in the hope that it will be useful,   *      This program is distributed in the hope that it will be useful,
# Line 23  Line 17 
17   *      GNU General Public License for more details.   *      GNU General Public License for more details.
18   *   *
19   *      You should have received a copy of the GNU General Public License   *      You should have received a copy of the GNU General Public License
20   *      along with this program; if not, write to the xvid_free Software   *  along with this program ; if not, write to the Free Software
21   *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22   *   *
23   *************************************************************************/   * $Id$
   
 /**************************************************************************  
  *  
  *      History:  
24   *   *
25   *  29.03.2002  interlacing fix - compensated block wasn't being used when   ****************************************************************************/
  *              reconstructing blocks, thus artifacts  
  *              interlacing speedup - used transfers to re-interlace  
  *              interlaced decoding should be as fast as progressive now  
  *  26.03.2002  interlacing support - moved transfers outside decode loop  
  *      26.12.2001      decoder_mbinter: dequant/idct moved within if(coded) block  
  *      22.12.2001      block based interpolation  
  *      01.12.2001      inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>  
  *  
  *************************************************************************/  
26    
27    #include <stdio.h>
28  #include <stdlib.h>  #include <stdlib.h>
29  #include <string.h>  // memset  #include <string.h>
30    
31    #ifdef BFRAMES_DEC_DEBUG
32            #define BFRAMES_DEC
33    #endif
34    
35  #include "xvid.h"  #include "xvid.h"
36  #include "portab.h"  #include "portab.h"
37    #include "global.h"
38    
39  #include "decoder.h"  #include "decoder.h"
40  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
41  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
42    
43  #include "quant/quant_h263.h"  #include "quant/quant.h"
 #include "quant/quant_mpeg4.h"  
44  #include "dct/idct.h"  #include "dct/idct.h"
45  #include "dct/fdct.h"  #include "dct/fdct.h"
46  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
47  #include "image/interpolate8x8.h"  #include "image/interpolate8x8.h"
48    #include "image/reduced.h"
49    #include "image/font.h"
50    
51  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
52  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
53  #include "utils/timer.h"  #include "utils/timer.h"
54  #include "utils/emms.h"  #include "utils/emms.h"
55    #include "motion/motion.h"
56    #include "motion/gmc.h"
57    
58  #include "image/image.h"  #include "image/image.h"
59  #include "image/colorspace.h"  #include "image/colorspace.h"
60  #include "utils/mem_align.h"  #include "utils/mem_align.h"
61    
62  int decoder_create(XVID_DEC_PARAM * param)  static int
63  {  decoder_resize(DECODER * dec)
         DECODER * dec;  
   
         dec = xvid_malloc(sizeof(DECODER), CACHE_LINE);  
         if (dec == NULL)  
64          {          {
65                  return XVID_ERR_MEMORY;          /* free existing */
66          }          image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
67          param->handle = dec;          image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
68            image_destroy(&dec->refn[1], dec->edged_width, dec->edged_height);
69          dec->width = param->width;          image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);
70          dec->height = param->height;          image_destroy(&dec->qtmp, dec->edged_width, dec->edged_height);
71    
72            image_destroy(&dec->gmc, dec->edged_width, dec->edged_height);
73    
74            if (dec->last_mbs)
75                    xvid_free(dec->last_mbs);
76            if (dec->mbs)
77                    xvid_free(dec->mbs);
78    
79            /* realloc */
80          dec->mb_width = (dec->width + 15) / 16;          dec->mb_width = (dec->width + 15) / 16;
81          dec->mb_height = (dec->height + 15) / 16;          dec->mb_height = (dec->height + 15) / 16;
82    
83          dec->edged_width = 16 * dec->mb_width + 2 * EDGE_SIZE;          dec->edged_width = 16 * dec->mb_width + 2 * EDGE_SIZE;
84          dec->edged_height = 16 * dec->mb_height + 2 * EDGE_SIZE;          dec->edged_height = 16 * dec->mb_height + 2 * EDGE_SIZE;
85    
86          if (image_create(&dec->cur, dec->edged_width, dec->edged_height))          if (image_create(&dec->cur, dec->edged_width, dec->edged_height)) {
         {  
87                  xvid_free(dec);                  xvid_free(dec);
88                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
89          }          }
90    
91          if (image_create(&dec->refn, dec->edged_width, dec->edged_height))          if (image_create(&dec->refn[0], dec->edged_width, dec->edged_height)) {
         {  
92                  image_destroy(&dec->cur, dec->edged_width, dec->edged_height);                  image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
93                  xvid_free(dec);                  xvid_free(dec);
94                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
95          }          }
96    
97          dec->mbs = xvid_malloc(sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height, CACHE_LINE);          /* Support B-frame to reference last 2 frame */
98          if (dec->mbs == NULL)          if (image_create(&dec->refn[1], dec->edged_width, dec->edged_height)) {
         {  
99                  image_destroy(&dec->cur, dec->edged_width, dec->edged_height);                  image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
100                    image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
101                    xvid_free(dec);
102                    return XVID_ERR_MEMORY;
103            }
104            if (image_create(&dec->tmp, dec->edged_width, dec->edged_height)) {
105                    image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
106                    image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
107                    image_destroy(&dec->refn[1], dec->edged_width, dec->edged_height);
108                  xvid_free(dec);                  xvid_free(dec);
109                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
110          }          }
111    
112          init_timer();          if (image_create(&dec->qtmp, dec->edged_width, dec->edged_height)) {
113                    image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
114                    image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
115                    image_destroy(&dec->refn[1], dec->edged_width, dec->edged_height);
116                    image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);
117                    xvid_free(dec);
118                    return XVID_ERR_MEMORY;
119            }
120    
121          return XVID_ERR_OK;          if (image_create(&dec->gmc, dec->edged_width, dec->edged_height)) {
122                    image_destroy(&dec->qtmp, dec->edged_width, dec->edged_height);
123                    image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
124                    image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
125                    image_destroy(&dec->refn[1], dec->edged_width, dec->edged_height);
126                    image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);
127                    xvid_free(dec);
128                    return XVID_ERR_MEMORY;
129  }  }
130    
131            dec->mbs =
132                    xvid_malloc(sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height,
133                                            CACHE_LINE);
134            if (dec->mbs == NULL) {
135                    image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
136                    image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
137                    image_destroy(&dec->refn[1], dec->edged_width, dec->edged_height);
138                    image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);
139                    image_destroy(&dec->qtmp, dec->edged_width, dec->edged_height);
140                    xvid_free(dec);
141                    return XVID_ERR_MEMORY;
142            }
143            memset(dec->mbs, 0, sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height);
144    
145  int decoder_destroy(DECODER * dec)          /* For skip MB flag */
146  {          dec->last_mbs =
147                    xvid_malloc(sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height,
148                                            CACHE_LINE);
149            if (dec->last_mbs == NULL) {
150          xvid_free(dec->mbs);          xvid_free(dec->mbs);
         image_destroy(&dec->refn, dec->edged_width, dec->edged_height);  
151          image_destroy(&dec->cur, dec->edged_width, dec->edged_height);          image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
152                    image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
153                    image_destroy(&dec->refn[1], dec->edged_width, dec->edged_height);
154                    image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);
155                    image_destroy(&dec->qtmp, dec->edged_width, dec->edged_height);
156          xvid_free(dec);          xvid_free(dec);
157                    return XVID_ERR_MEMORY;
158            }
159    
160          write_timer();          memset(dec->last_mbs, 0, sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height);
161          return XVID_ERR_OK;  
162            return 0;
163  }  }
164    
165    
166    int
167    decoder_create(xvid_dec_create_t * create)
168    {
169            DECODER *dec;
170    
171  static const int32_t dquant_table[4] =          if (XVID_VERSION_MAJOR(create->version) != 1)   /* v1.x.x */
172                    return XVID_ERR_VERSION;
173    
174            dec = xvid_malloc(sizeof(DECODER), CACHE_LINE);
175            if (dec == NULL) {
176                    return XVID_ERR_MEMORY;
177            }
178            memset(dec, 0, sizeof(DECODER));
179    
180            create->handle = dec;
181    
182            dec->width = create->width;
183            dec->height = create->height;
184    
185            image_null(&dec->cur);
186            image_null(&dec->refn[0]);
187            image_null(&dec->refn[1]);
188            image_null(&dec->tmp);
189            image_null(&dec->qtmp);
190    
191            /* image based GMC */
192            image_null(&dec->gmc);
193    
194    
195            dec->mbs = NULL;
196            dec->last_mbs = NULL;
197    
198            init_timer();
199    
200            /* For B-frame support (used to save reference frame's time */
201            dec->frames = 0;
202            dec->time = dec->time_base = dec->last_time_base = 0;
203            dec->low_delay = 0;
204            dec->packed_mode = 0;
205    
206            dec->fixed_dimensions = (dec->width > 0 && dec->height > 0);
207    
208            if (dec->fixed_dimensions)
209                    return decoder_resize(dec);
210            else
211                    return 0;
212    }
213    
214    
215    int
216    decoder_destroy(DECODER * dec)
217  {  {
218          -1, -2, 1, 2          xvid_free(dec->last_mbs);
219  };          xvid_free(dec->mbs);
220    
221            /* image based GMC */
222            image_destroy(&dec->gmc, dec->edged_width, dec->edged_height);
223    
224            image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
225            image_destroy(&dec->refn[1], dec->edged_width, dec->edged_height);
226            image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);
227            image_destroy(&dec->qtmp, dec->edged_width, dec->edged_height);
228            image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
229            xvid_free(dec);
230    
231  // decode an intra macroblock          write_timer();
232            return 0;
233    }
234    
235    static const int32_t dquant_table[4] = {
236            -1, -2, 1, 2
237    };
238    
239  void decoder_mbintra(DECODER * dec,  /* decode an intra macroblock */
240    static void
241    decoder_mbintra(DECODER * dec,
242                       MACROBLOCK * pMB,                       MACROBLOCK * pMB,
243                       const uint32_t x_pos,                       const uint32_t x_pos,
244                       const uint32_t y_pos,                       const uint32_t y_pos,
# Line 145  Line 246 
246                       const uint32_t cbp,                       const uint32_t cbp,
247                       Bitstream * bs,                       Bitstream * bs,
248                       const uint32_t quant,                       const uint32_t quant,
249                       const uint32_t intra_dc_threshold)                                  const uint32_t intra_dc_threshold,
250                                    const unsigned int bound,
251                                    const int reduced_resolution)
252  {  {
253    
254          DECLARE_ALIGNED_MATRIX(block, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(block, 6, 64, int16_t, CACHE_LINE);
# Line 158  Line 261 
261          uint32_t iQuant = pMB->quant;          uint32_t iQuant = pMB->quant;
262          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
263    
264            if (reduced_resolution) {
265                    pY_Cur = dec->cur.y + (y_pos << 5) * stride + (x_pos << 5);
266                    pU_Cur = dec->cur.u + (y_pos << 4) * stride2 + (x_pos << 4);
267                    pV_Cur = dec->cur.v + (y_pos << 4) * stride2 + (x_pos << 4);
268            }else{
269          pY_Cur = dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);          pY_Cur = dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);
270          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
271          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
272            }
273    
274          memset(block, 0, 6*64*sizeof(int16_t));         // clear          memset(block, 0, 6 * 64 * sizeof(int16_t));     /* clear */
275    
276          for (i = 0; i < 6; i++)          for (i = 0; i < 6; i++) {
         {  
277                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);
278                  int16_t predictors[8];                  int16_t predictors[8];
279                  int start_coeff;                  int start_coeff;
280    
281                  start_timer();                  start_timer();
282                  predict_acdc(dec->mbs, x_pos, y_pos, dec->mb_width, i, &block[i*64], iQuant, iDcScaler, predictors);                  predict_acdc(dec->mbs, x_pos, y_pos, dec->mb_width, i, &block[i * 64],
283                  if (!acpred_flag)                                           iQuant, iDcScaler, predictors, bound);
284                  {                  if (!acpred_flag) {
285                          pMB->acpred_directions[i] = 0;                          pMB->acpred_directions[i] = 0;
286                  }                  }
287                  stop_prediction_timer();                  stop_prediction_timer();
288    
289                  if (quant < intra_dc_threshold)                  if (quant < intra_dc_threshold) {
                 {  
290                          int dc_size;                          int dc_size;
291                          int dc_dif;                          int dc_dif;
292    
293                          dc_size = i < 4 ?  get_dc_size_lum(bs) : get_dc_size_chrom(bs);                          dc_size = i < 4 ?  get_dc_size_lum(bs) : get_dc_size_chrom(bs);
294                          dc_dif = dc_size ? get_dc_dif(bs, dc_size) : 0 ;                          dc_dif = dc_size ? get_dc_dif(bs, dc_size) : 0 ;
295    
296                          if (dc_size > 8)                          if (dc_size > 8) {
297                          {                                  BitstreamSkip(bs, 1);   /* marker */
                                 BitstreamSkip(bs, 1);           // marker  
298                          }                          }
299    
300                          block[i*64 + 0] = dc_dif;                          block[i*64 + 0] = dc_dif;
301                          start_coeff = 1;                          start_coeff = 1;
302                  }  
303                  else                          DPRINTF(XVID_DEBUG_COEFF,"block[0] %i\n", dc_dif);
304                  {                  } else {
305                          start_coeff = 0;                          start_coeff = 0;
306                  }                  }
307    
308                  start_timer();                  start_timer();
309                  if (cbp & (1 << (5-i)))                 // coded                  if (cbp & (1 << (5 - i)))       /* coded */
310                  {                  {
311                          get_intra_block(bs, &block[i*64], pMB->acpred_directions[i], start_coeff);                          int direction = dec->alternate_vertical_scan ?
312                                    2 : pMB->acpred_directions[i];
313    
314                            get_intra_block(bs, &block[i * 64], direction, start_coeff);
315                  }                  }
316                  stop_coding_timer();                  stop_coding_timer();
317    
# Line 211  Line 320 
320                  stop_prediction_timer();                  stop_prediction_timer();
321    
322                  start_timer();                  start_timer();
323                  if (dec->quant_type == 0)                  if (dec->quant_type == 0) {
324                  {                          dequant_h263_intra(&data[i * 64], &block[i * 64], iQuant, iDcScaler);
325                          dequant_intra(&data[i*64], &block[i*64], iQuant, iDcScaler);                  } else {
326                  }                          dequant_mpeg_intra(&data[i * 64], &block[i * 64], iQuant, iDcScaler);
                 else  
                 {  
                         dequant4_intra(&data[i*64], &block[i*64], iQuant, iDcScaler);  
327                  }                  }
328                  stop_iquant_timer();                  stop_iquant_timer();
329    
330                  start_timer();                  start_timer();
331                  idct(&data[i*64]);                  idct(&data[i*64]);
332                  stop_idct_timer();                  stop_idct_timer();
333    
334          }          }
335    
336          if (pMB->field_dct)          if (dec->interlacing && pMB->field_dct) {
         {  
337                  next_block = stride;                  next_block = stride;
338                  stride *= 2;                  stride *= 2;
339          }          }
340    
341          start_timer();          start_timer();
342    
343            if (reduced_resolution)
344            {
345                    next_block*=2;
346                    copy_upsampled_8x8_16to8(pY_Cur, &data[0 * 64], stride);
347                    copy_upsampled_8x8_16to8(pY_Cur + 16, &data[1 * 64], stride);
348                    copy_upsampled_8x8_16to8(pY_Cur + next_block, &data[2 * 64], stride);
349                    copy_upsampled_8x8_16to8(pY_Cur + 16 + next_block, &data[3 * 64], stride);
350                    copy_upsampled_8x8_16to8(pU_Cur, &data[4 * 64], stride2);
351                    copy_upsampled_8x8_16to8(pV_Cur, &data[5 * 64], stride2);
352            }else{
353          transfer_16to8copy(pY_Cur,                  &data[0*64], stride);          transfer_16to8copy(pY_Cur,                  &data[0*64], stride);
354          transfer_16to8copy(pY_Cur + 8,              &data[1*64], stride);          transfer_16to8copy(pY_Cur + 8,              &data[1*64], stride);
355          transfer_16to8copy(pY_Cur + next_block,     &data[2*64], stride);          transfer_16to8copy(pY_Cur + next_block,     &data[2*64], stride);
356          transfer_16to8copy(pY_Cur + 8 + next_block, &data[3*64], stride);          transfer_16to8copy(pY_Cur + 8 + next_block, &data[3*64], stride);
357          transfer_16to8copy(pU_Cur,                  &data[4*64], stride2);          transfer_16to8copy(pU_Cur,                  &data[4*64], stride2);
358          transfer_16to8copy(pV_Cur,                  &data[5*64], stride2);          transfer_16to8copy(pV_Cur,                  &data[5*64], stride2);
359            }
360          stop_transfer_timer();          stop_transfer_timer();
361  }  }
362    
363    static void
364    decoder_mb_decode(DECODER * dec,
   
   
 #define SIGN(X) (((X)>0)?1:-1)  
 #define ABS(X) (((X)>0)?(X):-(X))  
 static const uint32_t roundtab[16] =  
 { 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 };  
   
   
 // decode an inter macroblock  
   
 void decoder_mbinter(DECODER * dec,  
                      const MACROBLOCK * pMB,  
                      const uint32_t x_pos,  
                      const uint32_t y_pos,  
                      const uint32_t acpred_flag,  
365                       const uint32_t cbp,                       const uint32_t cbp,
366                       Bitstream * bs,                       Bitstream * bs,
367                       const uint32_t quant,                                  uint8_t * pY_Cur,
368                       const uint32_t rounding)                                  uint8_t * pU_Cur,
369                                    uint8_t * pV_Cur,
370                                    const int reduced_resolution,
371                                    const MACROBLOCK * pMB)
372  {  {
373            DECLARE_ALIGNED_MATRIX(block, 1, 64, int16_t, CACHE_LINE);
         DECLARE_ALIGNED_MATRIX(block,6, 64, int16_t, CACHE_LINE);  
374          DECLARE_ALIGNED_MATRIX(data, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(data, 6, 64, int16_t, CACHE_LINE);
375    
376          uint32_t stride = dec->edged_width;          int stride = dec->edged_width, next_block = stride * (reduced_resolution ? 16 : 8);
377          uint32_t stride2 = stride / 2;          const int stride2 = stride/2;
378          uint32_t next_block = stride * 8;          int i;
379          uint32_t i;          const uint32_t iQuant = pMB->quant;
380          uint32_t iQuant = pMB->quant;          const int direction = dec->alternate_vertical_scan ? 2 : 0;
381          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;          const quant_interFuncPtr dequant = dec->quant_type == 0 ? dequant_h263_inter : dequant_mpeg_inter;
         int uv_dx, uv_dy;  
   
         pY_Cur = dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);  
         pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);  
         pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);  
   
         if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)  
         {  
                 uv_dx = pMB->mvs[0].x;  
                 uv_dy = pMB->mvs[0].y;  
   
                 uv_dx = (uv_dx & 3) ? (uv_dx >> 1) | 1 : uv_dx / 2;  
                 uv_dy = (uv_dy & 3) ? (uv_dy >> 1) | 1 : uv_dy / 2;  
         }  
         else  
         {  
                 int sum;  
                 sum = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;  
                 uv_dx = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) );  
382    
383                  sum = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;          for (i = 0; i < 6; i++) {
                 uv_dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) );  
         }  
384    
385          start_timer();                  if (cbp & (1 << (5 - i))) {     /* coded */
         interpolate8x8_switch(dec->cur.y, dec->refn.y, 16*x_pos,     16*y_pos    , pMB->mvs[0].x, pMB->mvs[0].y, stride,  rounding);  
         interpolate8x8_switch(dec->cur.y, dec->refn.y, 16*x_pos + 8, 16*y_pos    , pMB->mvs[1].x, pMB->mvs[1].y, stride,  rounding);  
         interpolate8x8_switch(dec->cur.y, dec->refn.y, 16*x_pos,     16*y_pos + 8, pMB->mvs[2].x, pMB->mvs[2].y, stride,  rounding);  
         interpolate8x8_switch(dec->cur.y, dec->refn.y, 16*x_pos + 8, 16*y_pos + 8, pMB->mvs[3].x, pMB->mvs[3].y, stride,  rounding);  
         interpolate8x8_switch(dec->cur.u, dec->refn.u, 8*x_pos,      8*y_pos,      uv_dx,         uv_dy,         stride2, rounding);  
         interpolate8x8_switch(dec->cur.v, dec->refn.v, 8*x_pos,      8*y_pos,      uv_dx,         uv_dy,         stride2, rounding);  
         stop_comp_timer();  
386    
387          for (i = 0; i < 6; i++)                          memset(block, 0, 64 * sizeof(int16_t)); /* clear */
         {  
                 if (cbp & (1 << (5-i)))                 // coded  
                 {  
                         memset(&block[i*64], 0, 64 * sizeof(int16_t));          // clear  
388    
389                          start_timer();                          start_timer();
390                          get_inter_block(bs, &block[i*64]);                          get_inter_block(bs, block, direction);
391                          stop_coding_timer();                          stop_coding_timer();
392    
393                          start_timer();                          start_timer();
394                          if (dec->quant_type == 0)                          dequant(&data[i * 64], block, iQuant);
                         {  
                                 dequant_inter(&data[i*64], &block[i*64], iQuant);  
                         }  
                         else  
                         {  
                                 dequant4_inter(&data[i*64], &block[i*64], iQuant);  
                         }  
395                          stop_iquant_timer();                          stop_iquant_timer();
396    
397                          start_timer();                          start_timer();
# Line 334  Line 400 
400                  }                  }
401          }          }
402    
403          if (pMB->field_dct)          if (dec->interlacing && pMB->field_dct) {
         {  
404                  next_block = stride;                  next_block = stride;
405                  stride *= 2;                  stride *= 2;
406          }          }
407    
408          start_timer();          start_timer();
409            if (reduced_resolution) {
410                    if (cbp & 32)
411                            add_upsampled_8x8_16to8(pY_Cur, &data[0 * 64], stride);
412                    if (cbp & 16)
413                            add_upsampled_8x8_16to8(pY_Cur + 16, &data[1 * 64], stride);
414                    if (cbp & 8)
415                            add_upsampled_8x8_16to8(pY_Cur + next_block, &data[2 * 64], stride);
416                    if (cbp & 4)
417                            add_upsampled_8x8_16to8(pY_Cur + 16 + next_block, &data[3 * 64], stride);
418                    if (cbp & 2)
419                            add_upsampled_8x8_16to8(pU_Cur, &data[4 * 64], stride2);
420                    if (cbp & 1)
421                            add_upsampled_8x8_16to8(pV_Cur, &data[5 * 64], stride2);
422            } else {
423          if (cbp & 32)          if (cbp & 32)
424                  transfer_16to8add(pY_Cur,                  &data[0*64], stride);                  transfer_16to8add(pY_Cur,                  &data[0*64], stride);
425          if (cbp & 16)          if (cbp & 16)
# Line 353  Line 432 
432                  transfer_16to8add(pU_Cur,                  &data[4*64], stride2);                  transfer_16to8add(pU_Cur,                  &data[4*64], stride2);
433          if (cbp & 1)          if (cbp & 1)
434                  transfer_16to8add(pV_Cur,                  &data[5*64], stride2);                  transfer_16to8add(pV_Cur,                  &data[5*64], stride2);
435            }
436          stop_transfer_timer();          stop_transfer_timer();
437  }  }
438    
439    /* decode an inter macroblock */
440  void decoder_iframe(DECODER * dec, Bitstream * bs, int quant, int intra_dc_threshold)  static void
441    decoder_mbinter(DECODER * dec,
442                                    const MACROBLOCK * pMB,
443                                    const uint32_t x_pos,
444                                    const uint32_t y_pos,
445                                    const uint32_t cbp,
446                                    Bitstream * bs,
447                                    const uint32_t rounding,
448                                    const int reduced_resolution,
449                                    const int ref)
450  {  {
451            uint32_t stride = dec->edged_width;
452            uint32_t stride2 = stride / 2;
453            uint32_t next_block = stride * (reduced_resolution ? 16 : 8);
454            uint32_t i;
455    
456          uint32_t x, y;          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
457    
458            int uv_dx, uv_dy;
459            VECTOR mv[4];   /* local copy of mvs */
460    
461            if (reduced_resolution) {
462                    pY_Cur = dec->cur.y + (y_pos << 5) * stride + (x_pos << 5);
463                    pU_Cur = dec->cur.u + (y_pos << 4) * stride2 + (x_pos << 4);
464                    pV_Cur = dec->cur.v + (y_pos << 4) * stride2 + (x_pos << 4);
465                    for (i = 0; i < 4; i++) {
466                            mv[i].x = RRV_MV_SCALEUP(pMB->mvs[i].x);
467                            mv[i].y = RRV_MV_SCALEUP(pMB->mvs[i].y);
468                    }
469            } else {
470                    pY_Cur = dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);
471                    pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
472                    pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
473                    for (i = 0; i < 4; i++)
474                            mv[i] = pMB->mvs[i];
475            }
476    
477            start_timer();
478    
479            if (pMB->mode != MODE_INTER4V) { /* INTER, INTER_Q, NOT_CODED, FORWARD, BACKWARD */
480    
481                    uv_dx = mv[0].x;
482                    uv_dy = mv[0].y;
483                    if (dec->quarterpel) {
484                            uv_dx /= 2;
485                            uv_dy /= 2;
486                    }
487                    uv_dx = (uv_dx >> 1) + roundtab_79[uv_dx & 0x3];
488                    uv_dy = (uv_dy >> 1) + roundtab_79[uv_dy & 0x3];
489    
490                    if (reduced_resolution)
491                            interpolate32x32_switch(dec->cur.y, dec->refn[0].y, 32*x_pos, 32*y_pos,
492                                                                            mv[0].x, mv[0].y, stride, rounding);
493                    else if (dec->quarterpel)
494                            interpolate16x16_quarterpel(dec->cur.y, dec->refn[ref].y, dec->qtmp.y, dec->qtmp.y + 64,
495                                                                            dec->qtmp.y + 128, 16*x_pos, 16*y_pos,
496                                                                                            mv[0].x, mv[0].y, stride, rounding);
497                    else
498                            interpolate16x16_switch(dec->cur.y, dec->refn[ref].y, 16*x_pos, 16*y_pos,
499                                                                            mv[0].x, mv[0].y, stride, rounding);
500    
501          for (y = 0; y < dec->mb_height; y++)          } else {        /* MODE_INTER4V */
502    
503                    if(dec->quarterpel) {
504                            uv_dx = (mv[0].x / 2) + (mv[1].x / 2) + (mv[2].x / 2) + (mv[3].x / 2);
505                            uv_dy = (mv[0].y / 2) + (mv[1].y / 2) + (mv[2].y / 2) + (mv[3].y / 2);
506                    } else {
507                            uv_dx = mv[0].x + mv[1].x + mv[2].x + mv[3].x;
508                            uv_dy = mv[0].y + mv[1].y + mv[2].y + mv[3].y;
509                    }
510    
511                    uv_dx = (uv_dx >> 3) + roundtab_76[uv_dx & 0xf];
512                    uv_dy = (uv_dy >> 3) + roundtab_76[uv_dy & 0xf];
513    
514                    if (reduced_resolution) {
515                            interpolate16x16_switch(dec->cur.y, dec->refn[0].y, 32*x_pos, 32*y_pos,
516                                                                    mv[0].x, mv[0].y, stride, rounding);
517                            interpolate16x16_switch(dec->cur.y, dec->refn[0].y , 32*x_pos + 16, 32*y_pos,
518                                                                    mv[1].x, mv[1].y, stride, rounding);
519                            interpolate16x16_switch(dec->cur.y, dec->refn[0].y , 32*x_pos, 32*y_pos + 16,
520                                                                    mv[2].x, mv[2].y, stride, rounding);
521                            interpolate16x16_switch(dec->cur.y, dec->refn[0].y , 32*x_pos + 16, 32*y_pos + 16,
522                                                                    mv[3].x, mv[3].y, stride, rounding);
523                            interpolate16x16_switch(dec->cur.u, dec->refn[0].u , 16 * x_pos, 16 * y_pos,
524                                                                    uv_dx, uv_dy, stride2, rounding);
525                            interpolate16x16_switch(dec->cur.v, dec->refn[0].v , 16 * x_pos, 16 * y_pos,
526                                                                    uv_dx, uv_dy, stride2, rounding);
527    
528                    } else if (dec->quarterpel) {
529                            interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y , dec->qtmp.y, dec->qtmp.y + 64,
530                                                                            dec->qtmp.y + 128, 16*x_pos, 16*y_pos,
531                                                                            mv[0].x, mv[0].y, stride, rounding);
532                            interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y , dec->qtmp.y, dec->qtmp.y + 64,
533                                                                            dec->qtmp.y + 128, 16*x_pos + 8, 16*y_pos,
534                                                                            mv[1].x, mv[1].y, stride, rounding);
535                            interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y , dec->qtmp.y, dec->qtmp.y + 64,
536                                                                            dec->qtmp.y + 128, 16*x_pos, 16*y_pos + 8,
537                                                                            mv[2].x, mv[2].y, stride, rounding);
538                            interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y , dec->qtmp.y, dec->qtmp.y + 64,
539                                                                            dec->qtmp.y + 128, 16*x_pos + 8, 16*y_pos + 8,
540                                                                            mv[3].x, mv[3].y, stride, rounding);
541                    } else {
542                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y , 16*x_pos, 16*y_pos,
543                                                                    mv[0].x, mv[0].y, stride, rounding);
544                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y , 16*x_pos + 8, 16*y_pos,
545                                                                    mv[1].x, mv[1].y, stride, rounding);
546                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y , 16*x_pos, 16*y_pos + 8,
547                                                                    mv[2].x, mv[2].y, stride, rounding);
548                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y , 16*x_pos + 8, 16*y_pos + 8,
549                                                                    mv[3].x, mv[3].y, stride, rounding);
550                    }
551            }
552    
553            /* chroma */
554            if (reduced_resolution) {
555                    interpolate16x16_switch(dec->cur.u, dec->refn[0].u, 16 * x_pos, 16 * y_pos,
556                                                                    uv_dx, uv_dy, stride2, rounding);
557                    interpolate16x16_switch(dec->cur.v, dec->refn[0].v, 16 * x_pos, 16 * y_pos,
558                                                                    uv_dx, uv_dy, stride2, rounding);
559            } else {
560                    interpolate8x8_switch(dec->cur.u, dec->refn[ref].u, 8 * x_pos, 8 * y_pos,
561                                                                    uv_dx, uv_dy, stride2, rounding);
562                    interpolate8x8_switch(dec->cur.v, dec->refn[ref].v, 8 * x_pos, 8 * y_pos,
563                                                                    uv_dx, uv_dy, stride2, rounding);
564            }
565    
566            stop_comp_timer();
567    
568            if (cbp)
569                    decoder_mb_decode(dec, cbp, bs, pY_Cur, pU_Cur, pV_Cur,
570                                                            reduced_resolution, pMB);
571    }
572    
573    static void
574    decoder_mbgmc(DECODER * dec,
575                                    MACROBLOCK * const pMB,
576                                    const uint32_t x_pos,
577                                    const uint32_t y_pos,
578                                    const uint32_t fcode,
579                                    const uint32_t cbp,
580                                    Bitstream * bs,
581                                    const uint32_t rounding)
582          {          {
583                  for (x = 0; x < dec->mb_width; x++)          const uint32_t stride = dec->edged_width;
584            const uint32_t stride2 = stride / 2;
585    
586            uint8_t *const pY_Cur=dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);
587            uint8_t *const pU_Cur=dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
588            uint8_t *const pV_Cur=dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
589    
590            NEW_GMC_DATA * gmc_data = &dec->new_gmc_data;
591    
592            pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
593    
594            start_timer();
595    
596    /* this is where the calculations are done */
597    
598            gmc_data->predict_16x16(gmc_data,
599                            dec->cur.y + y_pos*16*stride + x_pos*16, dec->refn[0].y,
600                            stride, stride, x_pos, y_pos, rounding);
601    
602            gmc_data->predict_8x8(gmc_data,
603                            dec->cur.u + y_pos*8*stride2 + x_pos*8, dec->refn[0].u,
604                            dec->cur.v + y_pos*8*stride2 + x_pos*8, dec->refn[0].v,
605                            stride2, stride2, x_pos, y_pos, rounding);
606    
607            gmc_data->get_average_mv(gmc_data, &pMB->amv, x_pos, y_pos, dec->quarterpel);
608    
609            pMB->amv.x = gmc_sanitize(pMB->amv.x, dec->quarterpel, fcode);
610            pMB->amv.y = gmc_sanitize(pMB->amv.y, dec->quarterpel, fcode);
611    
612            pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
613    
614            stop_transfer_timer();
615    
616            if (cbp)
617                    decoder_mb_decode(dec, cbp, bs, pY_Cur, pU_Cur, pV_Cur, 0, pMB);
618    
619    }
620    
621    
622    static void
623    decoder_iframe(DECODER * dec,
624                                    Bitstream * bs,
625                                    int reduced_resolution,
626                                    int quant,
627                                    int intra_dc_threshold)
628                  {                  {
629                          MACROBLOCK * mb = &dec->mbs[y*dec->mb_width + x];          uint32_t bound;
630            uint32_t x, y;
631            uint32_t mb_width = dec->mb_width;
632            uint32_t mb_height = dec->mb_height;
633    
634            if (reduced_resolution) {
635                    mb_width = (dec->width + 31) / 32;
636                    mb_height = (dec->height + 31) / 32;
637            }
638    
639            bound = 0;
640    
641            for (y = 0; y < mb_height; y++) {
642                    for (x = 0; x < mb_width; x++) {
643                            MACROBLOCK *mb;
644                          uint32_t mcbpc;                          uint32_t mcbpc;
645                          uint32_t cbpc;                          uint32_t cbpc;
646                          uint32_t acpred_flag;                          uint32_t acpred_flag;
647                          uint32_t cbpy;                          uint32_t cbpy;
648                          uint32_t cbp;                          uint32_t cbp;
649    
650                            while (BitstreamShowBits(bs, 9) == 1)
651                                    BitstreamSkip(bs, 9);
652    
653                            if (check_resync_marker(bs, 0))
654                            {
655                                    bound = read_video_packet_header(bs, dec, 0,
656                                                            &quant, NULL, NULL, &intra_dc_threshold);
657                                    x = bound % mb_width;
658                                    y = bound / mb_width;
659                            }
660                            mb = &dec->mbs[y * dec->mb_width + x];
661    
662                            DPRINTF(XVID_DEBUG_MB, "macroblock (%i,%i) %08x\n", x, y, BitstreamShowBits(bs, 32));
663    
664                          mcbpc = get_mcbpc_intra(bs);                          mcbpc = get_mcbpc_intra(bs);
665                          mb->mode = mcbpc & 7;                          mb->mode = mcbpc & 7;
666                          cbpc = (mcbpc >> 4);                          cbpc = (mcbpc >> 4);
667    
668                          acpred_flag = BitstreamGetBit(bs);                          acpred_flag = BitstreamGetBit(bs);
669    
                         if (mb->mode == MODE_STUFFING)  
                         {  
                                 DEBUG("-- STUFFING ?");  
                                 continue;  
                         }  
   
670                          cbpy = get_cbpy(bs, 1);                          cbpy = get_cbpy(bs, 1);
671                          cbp = (cbpy << 2) | cbpc;                          cbp = (cbpy << 2) | cbpc;
672    
673                          if (mb->mode == MODE_INTRA_Q)                          if (mb->mode == MODE_INTRA_Q) {
                         {  
674                                  quant += dquant_table[BitstreamGetBits(bs,2)];                                  quant += dquant_table[BitstreamGetBits(bs,2)];
675                                  if (quant > 31)                                  if (quant > 31) {
                                 {  
676                                          quant = 31;                                          quant = 31;
677                                    } else if (quant < 1) {
678                                            quant = 1;
679                                  }                                  }
680                                  else if (quant < 1)                          }
681                            mb->quant = quant;
682                            mb->mvs[0].x = mb->mvs[0].y =
683                            mb->mvs[1].x = mb->mvs[1].y =
684                            mb->mvs[2].x = mb->mvs[2].y =
685                            mb->mvs[3].x = mb->mvs[3].y =0;
686    
687                            if (dec->interlacing) {
688                                    mb->field_dct = BitstreamGetBit(bs);
689                                    DPRINTF(XVID_DEBUG_MB,"deci: field_dct: %i\n", mb->field_dct);
690                            }
691    
692                            decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant,
693                                                            intra_dc_threshold, bound, reduced_resolution);
694    
695                    }
696                    if(dec->out_frm)
697                            output_slice(&dec->cur, dec->edged_width,dec->width,dec->out_frm,0,y,mb_width);
698            }
699    
700    }
701    
702    
703    static void
704    get_motion_vector(DECODER * dec,
705                                    Bitstream * bs,
706                                    int x,
707                                    int y,
708                                    int k,
709                                    VECTOR * ret_mv,
710                                    int fcode,
711                                    const int bound)
712    {
713    
714            const int scale_fac = 1 << (fcode - 1);
715            const int high = (32 * scale_fac) - 1;
716            const int low = ((-32) * scale_fac);
717            const int range = (64 * scale_fac);
718    
719            const VECTOR pmv = get_pmv2(dec->mbs, dec->mb_width, bound, x, y, k);
720            VECTOR mv;
721    
722            mv.x = get_mv(bs, fcode);
723            mv.y = get_mv(bs, fcode);
724    
725            DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", mv.x, mv.y, pmv.x, pmv.y, mv.x+pmv.x, mv.y+pmv.y);
726    
727            mv.x += pmv.x;
728            mv.y += pmv.y;
729    
730            if (mv.x < low) {
731                    mv.x += range;
732            } else if (mv.x > high) {
733                    mv.x -= range;
734            }
735    
736            if (mv.y < low) {
737                    mv.y += range;
738            } else if (mv.y > high) {
739                    mv.y -= range;
740            }
741    
742            ret_mv->x = mv.x;
743            ret_mv->y = mv.y;
744    }
745    
746    /* for P_VOP set gmc_warp to NULL */
747    static void
748    decoder_pframe(DECODER * dec,
749                                    Bitstream * bs,
750                                    int rounding,
751                                    int reduced_resolution,
752                                    int quant,
753                                    int fcode,
754                                    int intra_dc_threshold,
755                                    const WARPPOINTS *const gmc_warp)
756                                  {                                  {
757            uint32_t x, y;
758            uint32_t bound;
759            int cp_mb, st_mb;
760            uint32_t mb_width = dec->mb_width;
761            uint32_t mb_height = dec->mb_height;
762    
763            if (reduced_resolution) {
764                    mb_width = (dec->width + 31) / 32;
765                    mb_height = (dec->height + 31) / 32;
766            }
767    
768            start_timer();
769            image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,
770                                            dec->width, dec->height);
771            stop_edges_timer();
772    
773            if (gmc_warp) {
774                    /* accuracy: 0==1/2, 1=1/4, 2=1/8, 3=1/16 */
775                    generate_GMCparameters( dec->sprite_warping_points,
776                                    dec->sprite_warping_accuracy, gmc_warp,
777                                    dec->width, dec->height, &dec->new_gmc_data);
778    
779                    /* image warping is done block-based in decoder_mbgmc(), now */
780            }
781    
782            bound = 0;
783    
784            for (y = 0; y < mb_height; y++) {
785                    cp_mb = st_mb = 0;
786                    for (x = 0; x < mb_width; x++) {
787                            MACROBLOCK *mb;
788    
789                            /* skip stuffing */
790                            while (BitstreamShowBits(bs, 10) == 1)
791                                    BitstreamSkip(bs, 10);
792    
793                            if (check_resync_marker(bs, fcode - 1)) {
794                                    bound = read_video_packet_header(bs, dec, fcode - 1,
795                                            &quant, &fcode, NULL, &intra_dc_threshold);
796                                    x = bound % mb_width;
797                                    y = bound / mb_width;
798                            }
799                            mb = &dec->mbs[y * dec->mb_width + x];
800    
801                            DPRINTF(XVID_DEBUG_MB, "macroblock (%i,%i) %08x\n", x, y, BitstreamShowBits(bs, 32));
802    
803                            if (!(BitstreamGetBit(bs)))     { /* block _is_ coded */
804                                    uint32_t mcbpc, cbpc, cbpy, cbp;
805                                    uint32_t intra, acpred_flag = 0;
806                                    int mcsel = 0;          /* mcsel: '0'=local motion, '1'=GMC */
807    
808                                    cp_mb++;
809                                    mcbpc = get_mcbpc_inter(bs);
810                                    mb->mode = mcbpc & 7;
811                                    cbpc = (mcbpc >> 4);
812    
813                                    DPRINTF(XVID_DEBUG_MB, "mode %i\n", mb->mode);
814                                    DPRINTF(XVID_DEBUG_MB, "cbpc %i\n", cbpc);
815    
816                                    intra = (mb->mode == MODE_INTRA || mb->mode == MODE_INTRA_Q);
817    
818                                    if (gmc_warp && (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q))
819                                            mcsel = BitstreamGetBit(bs);
820                                    else if (intra)
821                                            acpred_flag = BitstreamGetBit(bs);
822    
823                                    cbpy = get_cbpy(bs, intra);
824                                    DPRINTF(XVID_DEBUG_MB, "cbpy %i mcsel %i \n", cbpy,mcsel);
825    
826                                    cbp = (cbpy << 2) | cbpc;
827    
828                                    if (mb->mode == MODE_INTER_Q || mb->mode == MODE_INTRA_Q) {
829                                            int dquant = dquant_table[BitstreamGetBits(bs, 2)];
830                                            DPRINTF(XVID_DEBUG_MB, "dquant %i\n", dquant);
831                                            quant += dquant;
832                                            if (quant > 31) {
833                                                    quant = 31;
834                                            } else if (quant < 1) {
835                                          quant = 1;                                          quant = 1;
836                                  }                                  }
837                                            DPRINTF(XVID_DEBUG_MB, "quant %i\n", quant);
838                          }                          }
839                          mb->quant = quant;                          mb->quant = quant;
840    
841                          if (dec->interlacing)                                  if (dec->interlacing) {
842                          {                                          if ((cbp || intra) && !mcsel) {
843                                  mb->field_dct = BitstreamGetBit(bs);                                  mb->field_dct = BitstreamGetBit(bs);
844                                  DEBUG1("deci: field_dct: ", mb->field_dct);                                                  DPRINTF(XVID_DEBUG_MB,"decp: field_dct: %i\n", mb->field_dct);
845                          }                          }
846    
847                          decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant, intra_dc_threshold);                                          if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {
848                                                    mb->field_pred = BitstreamGetBit(bs);
849                                                    DPRINTF(XVID_DEBUG_MB, "decp: field_pred: %i\n", mb->field_pred);
850    
851                                                    if (mb->field_pred) {
852                                                            mb->field_for_top = BitstreamGetBit(bs);
853                                                            DPRINTF(XVID_DEBUG_MB,"decp: field_for_top: %i\n", mb->field_for_top);
854                                                            mb->field_for_bot = BitstreamGetBit(bs);
855                                                            DPRINTF(XVID_DEBUG_MB,"decp: field_for_bot: %i\n", mb->field_for_bot);
856                  }                  }
857          }          }
858                                    }
859    
860                                    if (mcsel) {
861                                            decoder_mbgmc(dec, mb, x, y, fcode, cbp, bs, rounding);
862                                            continue;
863    
864                                    } else if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {
865    
866                                            if (dec->interlacing && mb->field_pred) {
867                                                    get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode, bound);
868                                                    get_motion_vector(dec, bs, x, y, 0, &mb->mvs[1], fcode, bound);
869                                            } else {
870                                                    get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode, bound);
871                                                    mb->mvs[1] = mb->mvs[2] = mb->mvs[3] = mb->mvs[0];
872                                            }
873                                    } else if (mb->mode == MODE_INTER4V ) {
874                                            get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode, bound);
875                                            get_motion_vector(dec, bs, x, y, 1, &mb->mvs[1], fcode, bound);
876                                            get_motion_vector(dec, bs, x, y, 2, &mb->mvs[2], fcode, bound);
877                                            get_motion_vector(dec, bs, x, y, 3, &mb->mvs[3], fcode, bound);
878                                    } else {                /* MODE_INTRA, MODE_INTRA_Q */
879                                            mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = 0;
880                                            mb->mvs[0].y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y =     0;
881                                            decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant,
882                                                                            intra_dc_threshold, bound, reduced_resolution);
883                                            continue;
884  }  }
885    
886                                    decoder_mbinter(dec, mb, x, y, cbp, bs,
887                                                                    rounding, reduced_resolution, 0);
888    
889  void get_motion_vector(DECODER *dec, Bitstream *bs, int x, int y, int k, VECTOR * mv, int fcode)                          } else if (gmc_warp) {  /* a not coded S(GMC)-VOP macroblock */
890  {                                  mb->mode = MODE_NOT_CODED_GMC;
891                                    decoder_mbgmc(dec, mb, x, y, fcode, 0x00, bs, rounding);
892    
893                                    if(dec->out_frm && cp_mb > 0) {
894                                            output_slice(&dec->cur, dec->edged_width,dec->width,dec->out_frm,st_mb,y,cp_mb);
895                                            cp_mb = 0;
896                                    }
897                                    st_mb = x+1;
898                            } else {        /* not coded P_VOP macroblock */
899                                    mb->mode = MODE_NOT_CODED;
900    
901          int scale_fac = 1 << (fcode - 1);                                  mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = 0;
902          int high = (32 * scale_fac) - 1;                                  mb->mvs[0].y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = 0;
         int low = ((-32) * scale_fac);  
         int range = (64 * scale_fac);  
903    
904          VECTOR pmv[4];                                  decoder_mbinter(dec, mb, x, y, 0, bs,
905          uint32_t psad[4];                                                                  rounding, reduced_resolution, 0);
906    
907          int mv_x, mv_y;                                  if(dec->out_frm && cp_mb > 0) {
908          int pmv_x, pmv_y;                                          output_slice(&dec->cur, dec->edged_width,dec->width,dec->out_frm,st_mb,y,cp_mb);
909                                            cp_mb = 0;
910                                    }
911                                    st_mb = x+1;
912                            }
913                    }
914    
915                    if(dec->out_frm && cp_mb > 0)
916                            output_slice(&dec->cur, dec->edged_width,dec->width,dec->out_frm,st_mb,y,cp_mb);
917            }
918    }
919    
         get_pmvdata(dec->mbs, x, y, dec->mb_width, k, pmv, psad);  
920    
921          pmv_x = pmv[0].x;  /* decode B-frame motion vector */
922          pmv_y = pmv[0].y;  static void
923    get_b_motion_vector(Bitstream * bs,
924                                            VECTOR * mv,
925                                            int fcode,
926                                            const VECTOR pmv)
927    {
928            const int scale_fac = 1 << (fcode - 1);
929            const int high = (32 * scale_fac) - 1;
930            const int low = ((-32) * scale_fac);
931            const int range = (64 * scale_fac);
932    
933          mv_x = get_mv(bs, fcode);          int mv_x = get_mv(bs, fcode);
934          mv_y = get_mv(bs, fcode);          int mv_y = get_mv(bs, fcode);
935    
936          mv_x += pmv_x;          mv_x += pmv.x;
937          mv_y += pmv_y;          mv_y += pmv.y;
938    
939          if (mv_x < low)          if (mv_x < low)
         {  
940                  mv_x += range;                  mv_x += range;
         }  
941          else if (mv_x > high)          else if (mv_x > high)
         {  
942                  mv_x -= range;                  mv_x -= range;
         }  
943    
944          if (mv_y < low)          if (mv_y < low)
         {  
945                  mv_y += range;                  mv_y += range;
         }  
946          else if (mv_y > high)          else if (mv_y > high)
         {  
947                  mv_y -= range;                  mv_y -= range;
         }  
948    
949          mv->x = mv_x;          mv->x = mv_x;
950          mv->y = mv_y;          mv->y = mv_y;
   
951  }  }
952    
953    /* decode an B-frame direct & interpolate macroblock */
954  void decoder_pframe(DECODER * dec, Bitstream * bs, int rounding, int quant, int fcode, int intra_dc_threshold)  static void
955    decoder_bf_interpolate_mbinter(DECODER * dec,
956                                                                    IMAGE forward,
957                                                                    IMAGE backward,
958                                                                    const MACROBLOCK * pMB,
959                                                                    const uint32_t x_pos,
960                                                                    const uint32_t y_pos,
961                                                                    Bitstream * bs,
962                                                                    const int direct)
963  {  {
964            uint32_t stride = dec->edged_width;
965            uint32_t stride2 = stride / 2;
966            uint32_t next_block = stride * 8;
967            int uv_dx, uv_dy;
968            int b_uv_dx, b_uv_dy;
969            uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
970            const uint32_t cbp = pMB->cbp;
971    
972          uint32_t x, y;          pY_Cur = dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);
973            pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
974            pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
975    
976            if (!direct) {
977                    uv_dx = pMB->mvs[0].x;
978                    uv_dy = pMB->mvs[0].y;
979    
980          image_swap(&dec->cur, &dec->refn);                  b_uv_dx = pMB->b_mvs[0].x;
981                    b_uv_dy = pMB->b_mvs[0].y;
982    
983                    if (dec->quarterpel) {
984                            uv_dx /= 2;
985                            uv_dy /= 2;
986                            b_uv_dx /= 2;
987                            b_uv_dy /= 2;
988                    }
989    
990                    uv_dx = (uv_dx >> 1) + roundtab_79[uv_dx & 0x3];
991                    uv_dy = (uv_dy >> 1) + roundtab_79[uv_dy & 0x3];
992    
993                    b_uv_dx = (b_uv_dx >> 1) + roundtab_79[b_uv_dx & 0x3];
994                    b_uv_dy = (b_uv_dy >> 1) + roundtab_79[b_uv_dy & 0x3];
995    
996            } else {
997                    if(dec->quarterpel) {
998                            uv_dx = (pMB->mvs[0].x / 2) + (pMB->mvs[1].x / 2) + (pMB->mvs[2].x / 2) + (pMB->mvs[3].x / 2);
999                            uv_dy = (pMB->mvs[0].y / 2) + (pMB->mvs[1].y / 2) + (pMB->mvs[2].y / 2) + (pMB->mvs[3].y / 2);
1000                            b_uv_dx = (pMB->b_mvs[0].x / 2) + (pMB->b_mvs[1].x / 2) + (pMB->b_mvs[2].x / 2) + (pMB->b_mvs[3].x / 2);
1001                            b_uv_dy = (pMB->b_mvs[0].y / 2) + (pMB->b_mvs[1].y / 2) + (pMB->b_mvs[2].y / 2) + (pMB->b_mvs[3].y / 2);
1002                    } else {
1003                            uv_dx = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;
1004                            uv_dy = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;
1005                            b_uv_dx = pMB->b_mvs[0].x + pMB->b_mvs[1].x + pMB->b_mvs[2].x + pMB->b_mvs[3].x;
1006                            b_uv_dy = pMB->b_mvs[0].y + pMB->b_mvs[1].y + pMB->b_mvs[2].y + pMB->b_mvs[3].y;
1007                    }
1008    
1009                    uv_dx = (uv_dx >> 3) + roundtab_76[uv_dx & 0xf];
1010                    uv_dy = (uv_dy >> 3) + roundtab_76[uv_dy & 0xf];
1011                    b_uv_dx = (b_uv_dx >> 3) + roundtab_76[b_uv_dx & 0xf];
1012                    b_uv_dy = (b_uv_dy >> 3) + roundtab_76[b_uv_dy & 0xf];
1013            }
1014    
1015          start_timer();          start_timer();
1016          image_setedges(&dec->refn, dec->edged_width, dec->edged_height, dec->width, dec->height, dec->interlacing);          if(dec->quarterpel) {
1017          stop_edges_timer();                  if(!direct) {
1018                            interpolate16x16_quarterpel(dec->cur.y, forward.y, dec->qtmp.y, dec->qtmp.y + 64,
1019                                                                                    dec->qtmp.y + 128, 16*x_pos, 16*y_pos,
1020                                                                                    pMB->mvs[0].x, pMB->mvs[0].y, stride, 0);
1021                    } else {
1022                            interpolate8x8_quarterpel(dec->cur.y, forward.y, dec->qtmp.y, dec->qtmp.y + 64,
1023                                                                                    dec->qtmp.y + 128, 16*x_pos, 16*y_pos,
1024                                                                                    pMB->mvs[0].x, pMB->mvs[0].y, stride, 0);
1025                            interpolate8x8_quarterpel(dec->cur.y, forward.y, dec->qtmp.y, dec->qtmp.y + 64,
1026                                                                                    dec->qtmp.y + 128, 16*x_pos + 8, 16*y_pos,
1027                                                                                    pMB->mvs[1].x, pMB->mvs[1].y, stride, 0);
1028                            interpolate8x8_quarterpel(dec->cur.y, forward.y, dec->qtmp.y, dec->qtmp.y + 64,
1029                                                                                    dec->qtmp.y + 128, 16*x_pos, 16*y_pos + 8,
1030                                                                                    pMB->mvs[2].x, pMB->mvs[2].y, stride, 0);
1031                            interpolate8x8_quarterpel(dec->cur.y, forward.y, dec->qtmp.y, dec->qtmp.y + 64,
1032                                                                                    dec->qtmp.y + 128, 16*x_pos + 8, 16*y_pos + 8,
1033                                                                                    pMB->mvs[3].x, pMB->mvs[3].y, stride, 0);
1034                    }
1035            } else {
1036                    interpolate8x8_switch(dec->cur.y, forward.y, 16 * x_pos, 16 * y_pos,
1037                                                            pMB->mvs[0].x, pMB->mvs[0].y, stride, 0);
1038                    interpolate8x8_switch(dec->cur.y, forward.y, 16 * x_pos + 8, 16 * y_pos,
1039                                                            pMB->mvs[1].x, pMB->mvs[1].y, stride, 0);
1040                    interpolate8x8_switch(dec->cur.y, forward.y, 16 * x_pos, 16 * y_pos + 8,
1041                                                            pMB->mvs[2].x, pMB->mvs[2].y, stride, 0);
1042                    interpolate8x8_switch(dec->cur.y, forward.y, 16 * x_pos + 8,
1043                                                            16 * y_pos + 8, pMB->mvs[3].x, pMB->mvs[3].y, stride, 0);
1044            }
1045    
1046            interpolate8x8_switch(dec->cur.u, forward.u, 8 * x_pos, 8 * y_pos, uv_dx,
1047                                                    uv_dy, stride2, 0);
1048            interpolate8x8_switch(dec->cur.v, forward.v, 8 * x_pos, 8 * y_pos, uv_dx,
1049                                                    uv_dy, stride2, 0);
1050    
1051    
1052            if(dec->quarterpel) {
1053                    if(!direct) {
1054                            interpolate16x16_quarterpel(dec->tmp.y, backward.y, dec->qtmp.y, dec->qtmp.y + 64,
1055                                                                                    dec->qtmp.y + 128, 16*x_pos, 16*y_pos,
1056                                                                                    pMB->b_mvs[0].x, pMB->b_mvs[0].y, stride, 0);
1057                    } else {
1058                            interpolate8x8_quarterpel(dec->tmp.y, backward.y, dec->qtmp.y, dec->qtmp.y + 64,
1059                                                                                    dec->qtmp.y + 128, 16*x_pos, 16*y_pos,
1060                                                                                    pMB->b_mvs[0].x, pMB->b_mvs[0].y, stride, 0);
1061                            interpolate8x8_quarterpel(dec->tmp.y, backward.y, dec->qtmp.y, dec->qtmp.y + 64,
1062                                                                                    dec->qtmp.y + 128, 16*x_pos + 8, 16*y_pos,
1063                                                                                    pMB->b_mvs[1].x, pMB->b_mvs[1].y, stride, 0);
1064                            interpolate8x8_quarterpel(dec->tmp.y, backward.y, dec->qtmp.y, dec->qtmp.y + 64,
1065                                                                                    dec->qtmp.y + 128, 16*x_pos, 16*y_pos + 8,
1066                                                                                    pMB->b_mvs[2].x, pMB->b_mvs[2].y, stride, 0);
1067                            interpolate8x8_quarterpel(dec->tmp.y, backward.y, dec->qtmp.y, dec->qtmp.y + 64,
1068                                                                                    dec->qtmp.y + 128, 16*x_pos + 8, 16*y_pos + 8,
1069                                                                                    pMB->b_mvs[3].x, pMB->b_mvs[3].y, stride, 0);
1070                    }
1071            } else {
1072                    interpolate8x8_switch(dec->tmp.y, backward.y, 16 * x_pos, 16 * y_pos,
1073                                                            pMB->b_mvs[0].x, pMB->b_mvs[0].y, stride, 0);
1074                    interpolate8x8_switch(dec->tmp.y, backward.y, 16 * x_pos + 8,
1075                                                            16 * y_pos, pMB->b_mvs[1].x, pMB->b_mvs[1].y, stride, 0);
1076                    interpolate8x8_switch(dec->tmp.y, backward.y, 16 * x_pos,
1077                                                            16 * y_pos + 8, pMB->b_mvs[2].x, pMB->b_mvs[2].y, stride, 0);
1078                    interpolate8x8_switch(dec->tmp.y, backward.y, 16 * x_pos + 8,
1079                                                            16 * y_pos + 8, pMB->b_mvs[3].x, pMB->b_mvs[3].y, stride, 0);
1080            }
1081    
1082            interpolate8x8_switch(dec->tmp.u, backward.u, 8 * x_pos, 8 * y_pos,
1083                                                    b_uv_dx, b_uv_dy, stride2, 0);
1084            interpolate8x8_switch(dec->tmp.v, backward.v, 8 * x_pos, 8 * y_pos,
1085                                                    b_uv_dx, b_uv_dy, stride2, 0);
1086    
1087            interpolate8x8_avg2(dec->cur.y + (16 * y_pos * stride) + 16 * x_pos,
1088                                                    dec->cur.y + (16 * y_pos * stride) + 16 * x_pos,
1089                                                    dec->tmp.y + (16 * y_pos * stride) + 16 * x_pos,
1090                                                    stride, 1, 8);
1091    
1092            interpolate8x8_avg2(dec->cur.y + (16 * y_pos * stride) + 16 * x_pos + 8,
1093                                                    dec->cur.y + (16 * y_pos * stride) + 16 * x_pos + 8,
1094                                                    dec->tmp.y + (16 * y_pos * stride) + 16 * x_pos + 8,
1095                                                    stride, 1, 8);
1096    
1097            interpolate8x8_avg2(dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1098                                                    dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1099                                                    dec->tmp.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1100                                                    stride, 1, 8);
1101    
1102            interpolate8x8_avg2(dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1103                                                    dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1104                                                    dec->tmp.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1105                                                    stride, 1, 8);
1106    
1107            interpolate8x8_avg2(dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,
1108                                                    dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,
1109                                                    dec->tmp.u + (8 * y_pos * stride2) + 8 * x_pos,
1110                                                    stride2, 1, 8);
1111    
1112            interpolate8x8_avg2(dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,
1113                                                    dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,
1114                                                    dec->tmp.v + (8 * y_pos * stride2) + 8 * x_pos,
1115                                                    stride2, 1, 8);
1116    
1117          for (y = 0; y < dec->mb_height; y++)          stop_comp_timer();
1118          {  
1119                  for (x = 0; x < dec->mb_width; x++)          if (cbp)
1120                    decoder_mb_decode(dec, cbp, bs, pY_Cur, pU_Cur, pV_Cur, 0, pMB);
1121    }
1122    
1123    /* for decode B-frame dbquant */
1124    static __inline int32_t
1125    get_dbquant(Bitstream * bs)
1126                  {                  {
1127                          MACROBLOCK * mb = &dec->mbs[y*dec->mb_width + x];          if (!BitstreamGetBit(bs))               /*  '0' */
1128                    return (0);
1129            else if (!BitstreamGetBit(bs))  /* '10' */
1130                    return (-2);
1131            else                                                    /* '11' */
1132                    return (2);
1133    }
1134    
1135                          if (!BitstreamGetBit(bs))                       // not_coded  /*
1136     * decode B-frame mb_type
1137     * bit          ret_value
1138     * 1            0
1139     * 01           1
1140     * 001          2
1141     * 0001         3
1142     */
1143    static int32_t __inline
1144    get_mbtype(Bitstream * bs)
1145                          {                          {
1146                                  uint32_t mcbpc;          int32_t mb_type;
                                 uint32_t cbpc;  
                                 uint32_t acpred_flag;  
                                 uint32_t cbpy;  
                                 uint32_t cbp;  
                                 uint32_t intra;  
1147    
1148                                  mcbpc = get_mcbpc_inter(bs);          for (mb_type = 0; mb_type <= 3; mb_type++)
1149                                  mb->mode = mcbpc & 7;                  if (BitstreamGetBit(bs))
1150                                  cbpc = (mcbpc >> 4);                          return (mb_type);
                                 acpred_flag = 0;  
1151    
1152                                  intra = (mb->mode == MODE_INTRA || mb->mode == MODE_INTRA_Q);          return -1;
1153    }
1154    
1155                                  if (intra)  static void
1156    decoder_bframe(DECODER * dec,
1157                                    Bitstream * bs,
1158                                    int quant,
1159                                    int fcode_forward,
1160                                    int fcode_backward)
1161                                  {                                  {
1162                                          acpred_flag = BitstreamGetBit(bs);          uint32_t x, y;
1163            VECTOR mv;
1164            const VECTOR zeromv = {0,0};
1165            const int64_t TRB = dec->time_pp - dec->time_bp, TRD = dec->time_pp;
1166            int i;
1167    
1168    #ifdef BFRAMES_DEC_DEBUG
1169            FILE *fp;
1170            static char first=0;
1171    #define BFRAME_DEBUG
1172            if (!first && fp) { \
1173                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1174                                  }                                  }
1175    #endif
1176    
1177                                  if (mb->mode == MODE_STUFFING)          start_timer();
1178                                  {          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,
1179                                          DEBUG("-- STUFFING ?");                                          dec->width, dec->height);
1180            image_setedges(&dec->refn[1], dec->edged_width, dec->edged_height,
1181                                            dec->width, dec->height);
1182            stop_edges_timer();
1183    
1184    #ifdef BFRAMES_DEC_DEBUG
1185            if (!first){
1186                    fp=fopen("C:\\XVIDDBG.TXT","w");
1187            }
1188    #endif
1189    
1190            for (y = 0; y < dec->mb_height; y++) {
1191                    /* Initialize Pred Motion Vector */
1192                    dec->p_fmv = dec->p_bmv = zeromv;
1193                    for (x = 0; x < dec->mb_width; x++) {
1194                            MACROBLOCK *mb = &dec->mbs[y * dec->mb_width + x];
1195                            MACROBLOCK *last_mb = &dec->last_mbs[y * dec->mb_width + x];
1196    
1197                            mv =
1198                            mb->b_mvs[0] = mb->b_mvs[1] = mb->b_mvs[2] = mb->b_mvs[3] =
1199                            mb->mvs[0] = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] = zeromv;
1200                            mb->quant = quant;
1201    
1202                            /*
1203                             * skip if the co-located P_VOP macroblock is not coded
1204                             * if not codec in co-located S_VOP macroblock is _not_
1205                             * automatically skipped
1206                             */
1207    
1208                            if (last_mb->mode == MODE_NOT_CODED) {
1209                                    mb->cbp = 0;
1210                                    mb->mode = MODE_FORWARD;
1211                                    decoder_mbinter(dec, mb, x, y, mb->cbp, bs, 0, 0, 1);
1212                                          continue;                                          continue;
1213                                  }                                  }
1214    
1215                                  cbpy = get_cbpy(bs, intra);                          if (!BitstreamGetBit(bs)) {     /* modb=='0' */
1216                                  cbp = (cbpy << 2) | cbpc;                                  const uint8_t modb2 = BitstreamGetBit(bs);
1217    
1218                                  if (mb->mode == MODE_INTER_Q || mb->mode == MODE_INTRA_Q)                                  mb->mode = get_mbtype(bs);
1219                                  {  
1220                                          quant += dquant_table[BitstreamGetBits(bs,2)];                                  if (!modb2)             /* modb=='00' */
1221                                            mb->cbp = BitstreamGetBits(bs, 6);
1222                                    else
1223                                            mb->cbp = 0;
1224    
1225                                    if (mb->mode && mb->cbp) {
1226                                            quant += get_dbquant(bs);
1227                                          if (quant > 31)                                          if (quant > 31)
                                         {  
1228                                                  quant = 31;                                                  quant = 31;
1229                                          }                                          else if (quant < 1)
                                         else if (mb->quant < 1)  
                                         {  
1230                                                  quant = 1;                                                  quant = 1;
1231                                          }                                          }
                                 }  
1232                                  mb->quant = quant;                                  mb->quant = quant;
1233    
1234                                  if (dec->interlacing)                                  if (dec->interlacing) {
1235                                  {                                          if (mb->cbp) {
1236                                          mb->field_dct = BitstreamGetBit(bs);                                          mb->field_dct = BitstreamGetBit(bs);
1237                                          DEBUG1("decp: field_dct: ", mb->field_dct);                                                  DPRINTF(XVID_DEBUG_MB,"decp: field_dct: %i\n", mb->field_dct);
1238                                            }
1239    
1240                                          if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q)                                          if (mb->mode) {
                                         {  
1241                                                  mb->field_pred = BitstreamGetBit(bs);                                                  mb->field_pred = BitstreamGetBit(bs);
1242                                                  DEBUG1("decp: field_pred: ", mb->field_pred);                                                  DPRINTF(XVID_DEBUG_MB, "decp: field_pred: %i\n", mb->field_pred);
1243    
1244                                                  if (mb->field_pred)                                                  if (mb->field_pred) {
                                                 {  
1245                                                          mb->field_for_top = BitstreamGetBit(bs);                                                          mb->field_for_top = BitstreamGetBit(bs);
1246                                                          DEBUG1("decp: field_for_top: ", mb->field_for_top);                                                          DPRINTF(XVID_DEBUG_MB,"decp: field_for_top: %i\n", mb->field_for_top);
1247                                                          mb->field_for_bot = BitstreamGetBit(bs);                                                          mb->field_for_bot = BitstreamGetBit(bs);
1248                                                          DEBUG1("decp: field_for_bot: ", mb->field_for_bot);                                                          DPRINTF(XVID_DEBUG_MB,"decp: field_for_bot: %i\n", mb->field_for_bot);
1249                                                  }                                                  }
1250                                          }                                          }
1251                                  }                                  }
1252    
1253                                  if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q)                          } else {
1254                                  {                                  mb->mode = MODE_DIRECT_NONE_MV;
1255                                          if (dec->interlacing && mb->field_pred)                                  mb->cbp = 0;
                                         {  
                                                 get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode);  
                                                 get_motion_vector(dec, bs, x, y, 0, &mb->mvs[1], fcode);  
                                         }  
                                         else  
                                         {  
                                                 get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode);  
                                                 mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = mb->mvs[0].x;  
                                                 mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = mb->mvs[0].y;  
                                         }  
                                 }  
                                 else if (mb->mode == MODE_INTER4V /* || mb->mode == MODE_INTER4V_Q */)  
                                 {  
                                         get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode);  
                                         get_motion_vector(dec, bs, x, y, 1, &mb->mvs[1], fcode);  
                                         get_motion_vector(dec, bs, x, y, 2, &mb->mvs[2], fcode);  
                                         get_motion_vector(dec, bs, x, y, 3, &mb->mvs[3], fcode);  
                                 }  
                                 else  // MODE_INTRA, MODE_INTRA_Q  
                                 {  
                                         mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = 0;  
                                         mb->mvs[0].y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = 0;  
                                         decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant, intra_dc_threshold);  
                                         continue;  
1256                                  }                                  }
1257    
1258                                  decoder_mbinter(dec, mb, x, y, acpred_flag, cbp, bs, quant, rounding);                          switch (mb->mode) {
1259                            case MODE_DIRECT:
1260                                    get_b_motion_vector(bs, &mv, 1, zeromv);
1261    
1262                            case MODE_DIRECT_NONE_MV:
1263                                    for (i = 0; i < 4; i++) {
1264                                            mb->mvs[i].x = (int32_t) ((TRB * last_mb->mvs[i].x) / TRD + mv.x);
1265                                            mb->b_mvs[i].x = (int32_t) ((mv.x == 0)
1266                                                                            ? ((TRB - TRD) * last_mb->mvs[i].x) / TRD
1267                                                                            : mb->mvs[i].x - last_mb->mvs[i].x);
1268                                            mb->mvs[i].y = (int32_t) ((TRB * last_mb->mvs[i].y) / TRD + mv.y);
1269                                            mb->b_mvs[i].y = (int32_t) ((mv.y == 0)
1270                                                                            ? ((TRB - TRD) * last_mb->mvs[i].y) / TRD
1271                                                                            : mb->mvs[i].y - last_mb->mvs[i].y);
1272                          }                          }
                         else    // not coded  
                         {  
1273    
1274                                  mb->mode = MODE_NOT_CODED;                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],
1275                                  mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = 0;                                                                                                  mb, x, y, bs, 1);
1276                                  mb->mvs[0].y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = 0;                                  break;
1277    
1278                                  // copy macroblock directly from ref to cur                          case MODE_INTERPOLATE:
1279                                    get_b_motion_vector(bs, &mb->mvs[0], fcode_forward, dec->p_fmv);
1280                                    dec->p_fmv = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] =     mb->mvs[0];
1281    
1282                                  start_timer();                                  get_b_motion_vector(bs, &mb->b_mvs[0], fcode_backward, dec->p_bmv);
1283                                    dec->p_bmv = mb->b_mvs[1] = mb->b_mvs[2] = mb->b_mvs[3] = mb->b_mvs[0];
1284    
1285                                  transfer8x8_copy(dec->cur.y + (16*y)*dec->edged_width + (16*x),                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],
1286                                                   dec->refn.y + (16*y)*dec->edged_width + (16*x),                                                                                          mb, x, y, bs, 0);
1287                                                   dec->edged_width);                                  break;
1288    
1289                                  transfer8x8_copy(dec->cur.y + (16*y)*dec->edged_width + (16*x+8),                          case MODE_BACKWARD:
1290                                                   dec->refn.y + (16*y)*dec->edged_width + (16*x+8),                                  get_b_motion_vector(bs, &mb->mvs[0], fcode_backward, dec->p_bmv);
1291                                                   dec->edged_width);                                  dec->p_bmv = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] =     mb->mvs[0];
1292    
1293                                  transfer8x8_copy(dec->cur.y + (16*y+8)*dec->edged_width + (16*x),                                  decoder_mbinter(dec, mb, x, y, mb->cbp, bs, 0, 0, 0);
1294                                                   dec->refn.y + (16*y+8)*dec->edged_width + (16*x),                                  break;
                                                  dec->edged_width);  
1295    
1296                                  transfer8x8_copy(dec->cur.y + (16*y+8)*dec->edged_width + (16*x+8),                          case MODE_FORWARD:
1297                                                   dec->refn.y + (16*y+8)*dec->edged_width + (16*x+8),                                  get_b_motion_vector(bs, &mb->mvs[0], fcode_forward, dec->p_fmv);
1298                                                   dec->edged_width);                                  dec->p_fmv = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] =     mb->mvs[0];
1299    
1300                                  transfer8x8_copy(dec->cur.u + (8*y)*dec->edged_width/2 + (8*x),                                  decoder_mbinter(dec, mb, x, y, mb->cbp, bs, 0, 0, 1);
1301                                                   dec->refn.u + (8*y)*dec->edged_width/2 + (8*x),                                  break;
                                                  dec->edged_width/2);  
1302    
1303                                  transfer8x8_copy(dec->cur.v + (8*y)*dec->edged_width/2 + (8*x),                          default:
1304                                                   dec->refn.v + (8*y)*dec->edged_width/2 + (8*x),                                  DPRINTF(XVID_DEBUG_ERROR,"Not supported B-frame mb_type = %i\n", mb->mode);
1305                                                   dec->edged_width/2);                          }
1306                    } /* End of for */
1307            }
1308    
1309                                  stop_transfer_timer();  #ifdef BFRAMES_DEC_DEBUG
1310            if (!first){
1311                    first=1;
1312                    if (fp)
1313                            fclose(fp);
1314                          }                          }
1315    #endif
1316                  }                  }
1317    
1318    /* perform post processing if necessary, and output the image */
1319    void decoder_output(DECODER * dec, IMAGE * img, MACROBLOCK * mbs,
1320                                            xvid_dec_frame_t * frame, xvid_dec_stats_t * stats, int coding_type)
1321    {
1322            image_output(img, dec->width, dec->height,
1323                                     dec->edged_width, (uint8_t**)frame->output.plane, frame->output.stride,
1324                                     frame->output.csp, dec->interlacing);
1325    
1326            if (stats) {
1327                    stats->type = coding2type(coding_type);
1328                    stats->data.vop.time_base = (int)dec->time_base;
1329                    stats->data.vop.time_increment = 0;     /* XXX: todo */
1330          }          }
1331  }  }
1332    
1333  int decoder_decode(DECODER * dec, XVID_DEC_FRAME * frame)  
1334    int
1335    decoder_decode(DECODER * dec,
1336                                    xvid_dec_frame_t * frame, xvid_dec_stats_t * stats)
1337  {  {
1338    
1339          Bitstream bs;          Bitstream bs;
1340          uint32_t rounding;          uint32_t rounding;
1341            uint32_t reduced_resolution;
1342          uint32_t quant;          uint32_t quant;
1343          uint32_t fcode;          uint32_t fcode_forward;
1344            uint32_t fcode_backward;
1345          uint32_t intra_dc_threshold;          uint32_t intra_dc_threshold;
1346            WARPPOINTS gmc_warp;
1347            int coding_type;
1348            int success, output, seen_something;
1349    
1350            if (XVID_VERSION_MAJOR(frame->version) != 1 || (stats && XVID_VERSION_MAJOR(stats->version) != 1))      /* v1.x.x */
1351                    return XVID_ERR_VERSION;
1352    
1353          start_global_timer();          start_global_timer();
1354    
1355            dec->low_delay_default = (frame->general & XVID_LOWDELAY);
1356            if ((frame->general & XVID_DISCONTINUITY))
1357                    dec->frames = 0;
1358            dec->out_frm = (frame->output.csp == XVID_CSP_SLICE) ? &frame->output : NULL;
1359    
1360            if (frame->length < 0) {        /* decoder flush */
1361                    int ret;
1362                    /* if not decoding "low_delay/packed", and this isn't low_delay and
1363                            we have a reference frame, then outout the reference frame */
1364                    if (!(dec->low_delay_default && dec->packed_mode) && !dec->low_delay && dec->frames>0) {
1365                            decoder_output(dec, &dec->refn[0], dec->last_mbs, frame, stats, dec->last_coding_type);
1366                            dec->frames = 0;
1367                            ret = 0;
1368                    } else {
1369                            if (stats) stats->type = XVID_TYPE_NOTHING;
1370                            ret = XVID_ERR_END;
1371                    }
1372    
1373                    emms();
1374                    stop_global_timer();
1375                    return ret;
1376            }
1377    
1378          BitstreamInit(&bs, frame->bitstream, frame->length);          BitstreamInit(&bs, frame->bitstream, frame->length);
1379    
1380          switch (BitstreamReadHeaders(&bs, dec, &rounding, &quant, &fcode, &intra_dc_threshold))          /* XXX: 0x7f is only valid whilst decoding vfw xvid/divx5 avi's */
1381            if(dec->low_delay_default && frame->length == 1 && BitstreamShowBits(&bs, 8) == 0x7f)
1382          {          {
1383          case P_VOP :                  image_output(&dec->refn[0], dec->width, dec->height, dec->edged_width,
1384                  decoder_pframe(dec, &bs, rounding, quant, fcode, intra_dc_threshold);                                           (uint8_t**)frame->output.plane, frame->output.stride, frame->output.csp, dec->interlacing);
1385                  break;                  if (stats) stats->type = XVID_TYPE_NOTHING;
1386                    emms();
1387                    return 1;       /* one byte consumed */
1388            }
1389    
1390          case I_VOP :          success = 0;
1391                  //DEBUG1("",intra_dc_threshold);          output = 0;
1392                  decoder_iframe(dec, &bs, quant, intra_dc_threshold);          seen_something = 0;
                 break;  
1393    
1394          case B_VOP :    // ignore  repeat:
                 break;  
1395    
1396          case N_VOP :    // vop not coded          coding_type = BitstreamReadHeaders(&bs, dec, &rounding, &reduced_resolution,
1397                  break;                          &quant, &fcode_forward, &fcode_backward, &intra_dc_threshold, &gmc_warp);
1398    
1399          default :          DPRINTF(XVID_DEBUG_HEADER, "coding_type=%i,  packed=%i,  time=%lli,  time_pp=%i,  time_bp=%i\n",
1400                  return XVID_ERR_FAIL;                                                          coding_type,    dec->packed_mode, dec->time, dec->time_pp, dec->time_bp);
1401    
1402            if (coding_type == -1) { /* nothing */
1403                    if (success) goto done;
1404                    if (stats) stats->type = XVID_TYPE_NOTHING;
1405                    emms();
1406                    return BitstreamPos(&bs)/8;
1407          }          }
1408    
1409          frame->length = BitstreamPos(&bs) / 8;          if (coding_type == -2 || coding_type == -3) {   /* vol and/or resize */
1410    
1411          start_timer();                  if (coding_type == -3)
1412          image_output(&dec->cur, dec->width, dec->height, dec->edged_width,                          decoder_resize(dec);
                      frame->image, frame->stride, frame->colorspace);  
         stop_conv_timer();  
1413    
1414                    if (stats) {
1415                            stats->type = XVID_TYPE_VOL;
1416                            stats->data.vol.general = 0;
1417                            /*XXX: if (dec->interlacing)
1418                                    stats->data.vol.general |= ++INTERLACING; */
1419                            stats->data.vol.width = dec->width;
1420                            stats->data.vol.height = dec->height;
1421                            stats->data.vol.par = dec->aspect_ratio;
1422                            stats->data.vol.par_width = dec->par_width;
1423                            stats->data.vol.par_height = dec->par_height;
1424          emms();          emms();
1425                            return BitstreamPos(&bs)/8;     /* number of bytes consumed */
1426                    }
1427                    goto repeat;
1428            }
1429    
1430          stop_global_timer();          dec->p_bmv.x = dec->p_bmv.y = dec->p_fmv.y = dec->p_fmv.y = 0;  /* init pred vector to 0 */
1431    
1432          return XVID_ERR_OK;          /* packed_mode: special-N_VOP treament */
1433            if (dec->packed_mode && coding_type == N_VOP) {
1434                    if (dec->low_delay_default && dec->frames > 0) {
1435                            decoder_output(dec, &dec->refn[0], dec->last_mbs, frame, stats, dec->last_coding_type);
1436                            output = 1;
1437                    }
1438                    /* ignore otherwise */
1439            } else if (coding_type != B_VOP) {
1440                    switch(coding_type) {
1441                    case I_VOP :
1442                            decoder_iframe(dec, &bs, reduced_resolution, quant, intra_dc_threshold);
1443                            break;
1444                    case P_VOP :
1445                            decoder_pframe(dec, &bs, rounding, reduced_resolution, quant,
1446                                                    fcode_forward, intra_dc_threshold, NULL);
1447                            break;
1448                    case S_VOP :
1449                            decoder_pframe(dec, &bs, rounding, reduced_resolution, quant,
1450                                                    fcode_forward, intra_dc_threshold, &gmc_warp);
1451                            break;
1452                    case N_VOP :
1453                            /* XXX: not_coded vops are not used for forward prediction */
1454                            /* we should not swap(last_mbs,mbs) */
1455                            image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);
1456                            break;
1457                    }
1458    
1459                    if (reduced_resolution) {
1460                            image_deblock_rrv(&dec->cur, dec->edged_width, dec->mbs,
1461                                    (dec->width + 31) / 32, (dec->height + 31) / 32, dec->mb_width,
1462                                    16, 0);
1463                    }
1464    
1465                    /* note: for packed_mode, output is performed when the special-N_VOP is decoded */
1466                    if (!(dec->low_delay_default && dec->packed_mode)) {
1467                            if (dec->low_delay) {
1468                                    decoder_output(dec, &dec->cur, dec->mbs, frame, stats, coding_type);
1469                                    output = 1;
1470                            } else if (dec->frames > 0)     { /* is the reference frame valid? */
1471                                    /* output the reference frame */
1472                                    decoder_output(dec, &dec->refn[0], dec->last_mbs, frame, stats, dec->last_coding_type);
1473                                    output = 1;
1474                            }
1475                    }
1476    
1477                    image_swap(&dec->refn[0], &dec->refn[1]);
1478                    image_swap(&dec->cur, &dec->refn[0]);
1479                    SWAP(MACROBLOCK *, dec->mbs, dec->last_mbs);
1480                    dec->last_reduced_resolution = reduced_resolution;
1481                    dec->last_coding_type = coding_type;
1482    
1483                    dec->frames++;
1484                    seen_something = 1;
1485    
1486            } else {        /* B_VOP */
1487    
1488                    if (dec->low_delay) {
1489                            DPRINTF(XVID_DEBUG_ERROR, "warning: bvop found in low_delay==1 stream\n");
1490                            dec->low_delay = 1;
1491                    }
1492    
1493                    if (dec->frames < 2) {
1494                            /* attemping to decode a bvop without atleast 2 reference frames */
1495                            image_printf(&dec->cur, dec->edged_width, dec->height, 16, 16,
1496                                                    "broken b-frame, mising ref frames");
1497                    } else if (dec->time_pp <= dec->time_bp) {
1498                            /* this occurs when dx50_bvop_compatibility==0 sequences are
1499                            decoded in vfw. */
1500                            image_printf(&dec->cur, dec->edged_width, dec->height, 16, 16,
1501                                                    "broken b-frame, tpp=%i tbp=%i", dec->time_pp, dec->time_bp);
1502                    } else {
1503                            decoder_bframe(dec, &bs, quant, fcode_forward, fcode_backward);
1504                    }
1505    
1506                    decoder_output(dec, &dec->cur, dec->mbs, frame, stats, coding_type);
1507                    output = 1;
1508                    dec->frames++;
1509            }
1510    
1511            BitstreamByteAlign(&bs);
1512    
1513            /* low_delay_default mode: repeat in packed_mode */
1514            if (dec->low_delay_default && dec->packed_mode && output == 0 && success == 0) {
1515                    success = 1;
1516                    goto repeat;
1517            }
1518    
1519    done :
1520    
1521            /* low_delay_default mode: if we've gotten here without outputting anything,
1522               then output the recently decoded frame, or print an error message  */
1523            if (dec->low_delay_default && output == 0) {
1524                    if (dec->packed_mode && seen_something) {
1525                            /* output the recently decoded frame */
1526                            decoder_output(dec, &dec->refn[0], dec->last_mbs, frame, stats, dec->last_coding_type);
1527                    } else {
1528                            image_clear(&dec->cur, dec->width, dec->height, dec->edged_width, 0, 128, 128);
1529                            image_printf(&dec->cur, dec->edged_width, dec->height, 16, 16,
1530                                    "warning: nothing to output");
1531                            image_printf(&dec->cur, dec->edged_width, dec->height, 16, 64,
1532                                    "bframe decoder lag");
1533    
1534                            decoder_output(dec, &dec->cur, NULL, frame, stats, P_VOP);
1535                            if (stats) stats->type = XVID_TYPE_NOTHING;
1536                    }
1537            }
1538    
1539            emms();
1540            stop_global_timer();
1541    
1542            return BitstreamPos(&bs) / 8;   /* number of bytes consumed */
1543  }  }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.49.2.17

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4