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

Diff of /xvidcore/src/utils/mbtransquant.c

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

revision 1.13, Sat Sep 21 03:07:56 2002 UTC revision 1.21.2.14, Mon Jun 9 13:55:36 2003 UTC
# Line 1  Line 1 
1  /*****************************************************************************  /*****************************************************************************
2   *   *
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - MacroBlock transfer and quantization -   *  - MB Transfert/Quantization functions -
5   *   *
6   *  Copyright(C) 2002-2001 Michael Militzer <isibaar@xvid.org>   *  Copyright(C) 2001-2003  Peter Ross <pross@xvid.org>
7   *               2002-2001 Peter Ross <pross@xvid.org>   *               2001-2003  Michael Militzer <isibaar@xvid.org>
8   *   *               2003       Edouard Gomez <ed.gomez@free.fr>
  *  This program is an implementation of a part of one or more MPEG-4  
  *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending  
  *  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.  
9   *   *
10   *  This program is free software; you can redistribute it and/or modify   *  This program is free software; you can redistribute it and/or modify
11   *  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
# Line 33  Line 25 
25   *   *
26   ****************************************************************************/   ****************************************************************************/
27    
28    #include <stdio.h>
29    #include <stdlib.h>
30  #include <string.h>  #include <string.h>
31    
32  #include "../portab.h"  #include "../portab.h"
# Line 41  Line 35 
35  #include "../global.h"  #include "../global.h"
36  #include "mem_transfer.h"  #include "mem_transfer.h"
37  #include "timer.h"  #include "timer.h"
38    #include "../bitstream/mbcoding.h"
39    #include "../bitstream/zigzag.h"
40  #include "../dct/fdct.h"  #include "../dct/fdct.h"
41  #include "../dct/idct.h"  #include "../dct/idct.h"
42  #include "../quant/quant_mpeg4.h"  #include "../quant/quant_mpeg4.h"
43  #include "../quant/quant_h263.h"  #include "../quant/quant_h263.h"
44  #include "../encoder.h"  #include "../encoder.h"
45    
46  #define MIN(X, Y) ((X)<(Y)?(X):(Y))  #include "../image/reduced.h"
 #define MAX(X, Y) ((X)>(Y)?(X):(Y))  
47    
48  #define TOOSMALL_LIMIT 3                /* skip blocks having a coefficient sum below this value */  MBFIELDTEST_PTR MBFieldTest;
49    
50  /* this isnt pretty, but its better than 20 ifdefs */  /*
51     * Skip blocks having a coefficient sum below this value. This value will be
52     * corrected according to the MB quantizer to avoid artifacts for quant==1
53     */
54    #define PVOP_TOOSMALL_LIMIT 1
55    #define BVOP_TOOSMALL_LIMIT 3
56    
57  void  /*****************************************************************************
58  MBTransQuantIntra(const MBParam * pParam,   * Local functions
59                                    FRAMEINFO * frame,   ****************************************************************************/
                                   MACROBLOCK * pMB,  
                                   const uint32_t x_pos,  
                                   const uint32_t y_pos,  
                                   int16_t data[6 * 64],  
                                   int16_t qcoeff[6 * 64])  
 {  
60    
61          uint32_t stride = pParam->edged_width;  /* permute block and return field dct choice */
62          uint32_t stride2 = stride / 2;  static __inline uint32_t
63          uint32_t next_block = stride * 8;  MBDecideFieldDCT(int16_t data[6 * 64])
64          uint32_t i;  {
65          uint32_t iQuant = frame->quant;          uint32_t field = MBFieldTest(data);
         uint8_t *pY_Cur, *pU_Cur, *pV_Cur;  
         IMAGE *pCurrent = &frame->image;  
66    
67          pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);          if (field)
68          pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);                  MBFrameToField(data);
         pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);  
69    
70          start_timer();          return field;
71          transfer_8to16copy(&data[0 * 64], pY_Cur, stride);  }
         transfer_8to16copy(&data[1 * 64], pY_Cur + 8, stride);  
         transfer_8to16copy(&data[2 * 64], pY_Cur + next_block, stride);  
         transfer_8to16copy(&data[3 * 64], pY_Cur + next_block + 8, stride);  
         transfer_8to16copy(&data[4 * 64], pU_Cur, stride2);  
         transfer_8to16copy(&data[5 * 64], pV_Cur, stride2);  
         stop_transfer_timer();  
72    
73    /* Performs Forward DCT on all blocks */
74    static __inline void
75    MBfDCT(const MBParam * const pParam,
76               const FRAMEINFO * const frame,
77               MACROBLOCK * const pMB,
78               uint32_t x_pos,
79               uint32_t y_pos,
80               int16_t data[6 * 64])
81    {
82            /* Handles interlacing */
83          start_timer();          start_timer();
84          pMB->field_dct = 0;          pMB->field_dct = 0;
85          if ((frame->global_flags & XVID_INTERLACING) &&          if ((frame->vol_flags & XVID_VOL_INTERLACING) &&
86                  (x_pos>0) && (x_pos<pParam->mb_width-1) &&                  (x_pos>0) && (x_pos<pParam->mb_width-1) &&
87                  (y_pos>0) && (y_pos<pParam->mb_height-1)) {                  (y_pos>0) && (y_pos<pParam->mb_height-1)) {
88                  pMB->field_dct = MBDecideFieldDCT(data);                  pMB->field_dct = MBDecideFieldDCT(data);
89          }          }
90          stop_interlacing_timer();          stop_interlacing_timer();
91    
92          for (i = 0; i < 6; i++) {          /* Perform DCT */
                 uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);  
   
93                  start_timer();                  start_timer();
94                  fdct(&data[i * 64]);          fdct(&data[0 * 64]);
95            fdct(&data[1 * 64]);
96            fdct(&data[2 * 64]);
97            fdct(&data[3 * 64]);
98            fdct(&data[4 * 64]);
99            fdct(&data[5 * 64]);
100                  stop_dct_timer();                  stop_dct_timer();
101    }
102    
103                  if (pParam->m_quant_type == H263_QUANT) {  /* Performs Inverse DCT on all blocks */
104    static __inline void
105    MBiDCT(int16_t data[6 * 64],
106               const uint8_t cbp)
107    {
108                          start_timer();                          start_timer();
109                          quant_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);          if(cbp & (1 << (5 - 0))) idct(&data[0 * 64]);
110                          stop_quant_timer();          if(cbp & (1 << (5 - 1))) idct(&data[1 * 64]);
111            if(cbp & (1 << (5 - 2))) idct(&data[2 * 64]);
112            if(cbp & (1 << (5 - 3))) idct(&data[3 * 64]);
113            if(cbp & (1 << (5 - 4))) idct(&data[4 * 64]);
114            if(cbp & (1 << (5 - 5))) idct(&data[5 * 64]);
115            stop_idct_timer();
116    }
117    
118    /* Quantize all blocks -- Intra mode */
119    static __inline void
120    MBQuantIntra(const MBParam * pParam,
121                             const FRAMEINFO * const frame,
122                             const MACROBLOCK * pMB,
123                             int16_t qcoeff[6 * 64],
124                             int16_t data[6*64])
125    {
126            int i;
127    
128            for (i = 0; i < 6; i++) {
129                    uint32_t iDcScaler = get_dc_scaler(pMB->quant, i < 4);
130    
131                    /* Quantize the block */
132                          start_timer();                          start_timer();
133                          dequant_intra(&data[i * 64], &qcoeff[i * 64], iQuant, iDcScaler);                  if (!(pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
134                          stop_iquant_timer();                          quant_intra(&data[i * 64], &qcoeff[i * 64], pMB->quant, iDcScaler);
135                  } else {                  } else {
136                          start_timer();                          quant4_intra(&data[i * 64], &qcoeff[i * 64], pMB->quant, iDcScaler);
137                          quant4_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);                  }
138                          stop_quant_timer();                          stop_quant_timer();
   
                         start_timer();  
                         dequant4_intra(&data[i * 64], &qcoeff[i * 64], iQuant, iDcScaler);  
                         stop_iquant_timer();  
139                  }                  }
   
                 start_timer();  
                 idct(&data[i * 64]);  
                 stop_idct_timer();  
140          }          }
141    
142          if (pMB->field_dct) {  /* DeQuantize all blocks -- Intra mode */
143                  next_block = stride;  static __inline void
144                  stride *= 2;  MBDeQuantIntra(const MBParam * pParam,
145          }                             const int iQuant,
146                               int16_t qcoeff[6 * 64],
147                               int16_t data[6*64])
148    {
149            int i;
150    
151          start_timer();          for (i = 0; i < 6; i++) {
152          transfer_16to8copy(pY_Cur, &data[0 * 64], stride);                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);
         transfer_16to8copy(pY_Cur + 8, &data[1 * 64], stride);  
         transfer_16to8copy(pY_Cur + next_block, &data[2 * 64], stride);  
         transfer_16to8copy(pY_Cur + next_block + 8, &data[3 * 64], stride);  
         transfer_16to8copy(pU_Cur, &data[4 * 64], stride2);  
         transfer_16to8copy(pV_Cur, &data[5 * 64], stride2);  
         stop_transfer_timer();  
153    
154                    start_timer();
155                    if (!(pParam->vol_flags & XVID_VOL_MPEGQUANT))
156                            dequant_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);
157                    else
158                            dequant4_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);
159                    stop_iquant_timer();
160            }
161  }  }
162    
163    
164  uint8_t  static int
165  MBTransQuantInter(const MBParam * pParam,  dct_quantize_trellis_h263_c(int16_t *const Out,
166                                    FRAMEINFO * frame,                                                          const int16_t *const In,
167                                    MACROBLOCK * pMB,                                                          int Q,
168                                    const uint32_t x_pos,                                                          const uint16_t * const Zigzag,
169                                    const uint32_t y_pos,                                                          int Non_Zero);
170    
171    #if 0
172    static int
173    dct_quantize_trellis_mpeg_c(int16_t *const Out,
174                                                            const int16_t *const In,
175                                                            int Q,
176                                                            const uint16_t * const Zigzag,
177                                                            int Non_Zero);
178    #endif
179    
180    /* Quantize all blocks -- Inter mode */
181    static __inline uint8_t
182    MBQuantInter(const MBParam * pParam,
183                             const FRAMEINFO * const frame,
184                             const MACROBLOCK * pMB,
185                                    int16_t data[6 * 64],                                    int16_t data[6 * 64],
186                                    int16_t qcoeff[6 * 64])                           int16_t qcoeff[6 * 64],
187                             int bvop,
188                             int limit)
189  {  {
190    
191          uint32_t stride = pParam->edged_width;          int i;
         uint32_t stride2 = stride / 2;  
         uint32_t next_block = stride * 8;  
         uint32_t i;  
         uint32_t iQuant = frame->quant;  
         uint8_t *pY_Cur, *pU_Cur, *pV_Cur;  
192          uint8_t cbp = 0;          uint8_t cbp = 0;
193          uint32_t sum;          int sum;
194          IMAGE *pCurrent = &frame->image;          int code_block;
195    
196          pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);          for (i = 0; i < 6; i++) {
         pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);  
         pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);  
197    
198                    /* Quantize the block */
199          start_timer();          start_timer();
200          pMB->field_dct = 0;                  if (!(pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
201          if ((frame->global_flags & XVID_INTERLACING) &&                          sum = quant_inter(&qcoeff[i*64], &data[i*64], pMB->quant);
202                  (x_pos>0) && (x_pos<pParam->mb_width-1) &&                          if ( (sum) && (frame->vop_flags & XVID_VOP_TRELLISQUANT) ) {
203                  (y_pos>0) && (y_pos<pParam->mb_height-1)) {                                  sum = dct_quantize_trellis_h263_c(&qcoeff[i*64], &data[i*64], pMB->quant, &scan_tables[0][0], 63)+1;
204                  pMB->field_dct = MBDecideFieldDCT(data);                                  limit = 1;
205          }          }
206          stop_interlacing_timer();                  } else {
207                            sum = quant4_inter(&qcoeff[i * 64], &data[i * 64], pMB->quant);
208    #if 0
209                            if ( (sum) && (frame->vop_flags & XVID_VOP_TRELLISQUANT) )
210                                    sum = dct_quantize_trellis_mpeg_c (&qcoeff[i*64], &data[i*64], pMB->quant)+1;
211    #endif
212                    }
213                    stop_quant_timer();
214    
         for (i = 0; i < 6; i++) {  
215                  /*                  /*
216                   *  no need to transfer 8->16-bit                   * We code the block if the sum is higher than the limit and if the first
217                   * (this is performed already in motion compensation)                   * two AC coefficients in zig zag order are not zero.
218                   */                   */
219                  start_timer();                  code_block = 0;
220                  fdct(&data[i * 64]);                  if ((sum >= limit) || (qcoeff[i*64+1] != 0) || (qcoeff[i*64+8] != 0)) {
221                  stop_dct_timer();                          code_block = 1;
222                    } else {
223    
224                  if (pParam->m_quant_type == 0) {                          if (bvop && (pMB->mode == MODE_DIRECT || pMB->mode == MODE_DIRECT_NO4V)) {
225                          start_timer();                                  /* dark blocks prevention for direct mode */
226                          sum = quant_inter(&qcoeff[i * 64], &data[i * 64], iQuant);                                  if ((qcoeff[i*64] < -1) || (qcoeff[i*64] > 0))
227                          stop_quant_timer();                                          code_block = 1;
228                  } else {                  } else {
229                          start_timer();                                  /* not direct mode */
230                          sum = quant4_inter(&qcoeff[i * 64], &data[i * 64], iQuant);                                  if (qcoeff[i*64] != 0)
231                          stop_quant_timer();                                          code_block = 1;
232                            }
233                    }
234    
235                    /* Set the corresponding cbp bit */
236                    cbp |= code_block << (5 - i);
237            }
238    
239            return(cbp);
240                  }                  }
241    
242                  if ((sum >= TOOSMALL_LIMIT) || (qcoeff[i*64] != 0) ||  /* DeQuantize all blocks -- Inter mode */
243                          (qcoeff[i*64+1] != 0) || (qcoeff[i*64+8] != 0)) {  static __inline void
244    MBDeQuantInter(const MBParam * pParam,
245                               const int iQuant,
246                               int16_t data[6 * 64],
247                               int16_t qcoeff[6 * 64],
248                               const uint8_t cbp)
249    {
250            int i;
251    
252                          if (pParam->m_quant_type == H263_QUANT) {          for (i = 0; i < 6; i++) {
253                    if (cbp & (1 << (5 - i))) {
254                                  start_timer();                                  start_timer();
255                            if (!(pParam->vol_flags & XVID_VOL_MPEGQUANT))
256                                  dequant_inter(&data[i * 64], &qcoeff[i * 64], iQuant);                                  dequant_inter(&data[i * 64], &qcoeff[i * 64], iQuant);
257                                  stop_iquant_timer();                          else
                         } else {  
                                 start_timer();  
258                                  dequant4_inter(&data[i * 64], &qcoeff[i * 64], iQuant);                                  dequant4_inter(&data[i * 64], &qcoeff[i * 64], iQuant);
259                                  stop_iquant_timer();                                  stop_iquant_timer();
260                          }                          }
261            }
262    }
263    
264                          cbp |= 1 << (5 - i);  typedef void (transfer_operation_8to16_t) (int16_t *Dst, const uint8_t *Src, int BpS);
265    typedef void (transfer_operation_16to8_t) (uint8_t *Dst, const int16_t *Src, int BpS);
266    
267                          start_timer();  
268                          idct(&data[i * 64]);  static __inline void
269                          stop_idct_timer();  MBTrans8to16(const MBParam * const pParam,
270                             const FRAMEINFO * const frame,
271                             const MACROBLOCK * const pMB,
272                             const uint32_t x_pos,
273                             const uint32_t y_pos,
274                             int16_t data[6 * 64])
275    {
276            uint32_t stride = pParam->edged_width;
277            uint32_t stride2 = stride / 2;
278            uint32_t next_block = stride * 8;
279            int32_t cst;
280            uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
281            const IMAGE * const pCurrent = &frame->image;
282            transfer_operation_8to16_t *transfer_op = NULL;
283    
284            if ((frame->vop_flags & XVID_VOP_REDUCED)) {
285    
286                    /* Image pointers */
287                    pY_Cur = pCurrent->y + (y_pos << 5) * stride  + (x_pos << 5);
288                    pU_Cur = pCurrent->u + (y_pos << 4) * stride2 + (x_pos << 4);
289                    pV_Cur = pCurrent->v + (y_pos << 4) * stride2 + (x_pos << 4);
290    
291                    /* Block size */
292                    cst = 16;
293    
294                    /* Operation function */
295                    transfer_op = (transfer_operation_8to16_t*)filter_18x18_to_8x8;
296            } else {
297    
298                    /* Image pointers */
299                    pY_Cur = pCurrent->y + (y_pos << 4) * stride  + (x_pos << 4);
300                    pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);
301                    pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);
302    
303                    /* Block size */
304                    cst = 8;
305    
306                    /* Operation function */
307                    transfer_op = (transfer_operation_8to16_t*)transfer_8to16copy;
308                  }                  }
309    
310            /* Do the transfer */
311            start_timer();
312            transfer_op(&data[0 * 64], pY_Cur, stride);
313            transfer_op(&data[1 * 64], pY_Cur + cst, stride);
314            transfer_op(&data[2 * 64], pY_Cur + next_block, stride);
315            transfer_op(&data[3 * 64], pY_Cur + next_block + cst, stride);
316            transfer_op(&data[4 * 64], pU_Cur, stride2);
317            transfer_op(&data[5 * 64], pV_Cur, stride2);
318            stop_transfer_timer();
319          }          }
320    
321    static __inline void
322    MBTrans16to8(const MBParam * const pParam,
323                             const FRAMEINFO * const frame,
324                             const MACROBLOCK * const pMB,
325                             const uint32_t x_pos,
326                             const uint32_t y_pos,
327                             int16_t data[6 * 64],
328                             const uint32_t add,
329                             const uint8_t cbp)
330    {
331            uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
332            uint32_t stride = pParam->edged_width;
333            uint32_t stride2 = stride / 2;
334            uint32_t next_block = stride * 8;
335            uint32_t cst;
336            const IMAGE * const pCurrent = &frame->image;
337            transfer_operation_16to8_t *transfer_op = NULL;
338    
339          if (pMB->field_dct) {          if (pMB->field_dct) {
340                  next_block = stride;                  next_block = stride;
341                  stride *= 2;                  stride *= 2;
342          }          }
343    
344          start_timer();          if ((frame->vop_flags & XVID_VOP_REDUCED)) {
345          if (cbp & 32)  
346                  transfer_16to8add(pY_Cur, &data[0 * 64], stride);                  /* Image pointers */
347          if (cbp & 16)                  pY_Cur = pCurrent->y + (y_pos << 5) * stride  + (x_pos << 5);
348                  transfer_16to8add(pY_Cur + 8, &data[1 * 64], stride);                  pU_Cur = pCurrent->u + (y_pos << 4) * stride2 + (x_pos << 4);
349          if (cbp & 8)                  pV_Cur = pCurrent->v + (y_pos << 4) * stride2 + (x_pos << 4);
350                  transfer_16to8add(pY_Cur + next_block, &data[2 * 64], stride);  
351          if (cbp & 4)                  /* Block size */
352                  transfer_16to8add(pY_Cur + next_block + 8, &data[3 * 64], stride);                  cst = 16;
353          if (cbp & 2)  
354                  transfer_16to8add(pU_Cur, &data[4 * 64], stride2);                  /* Operation function */
355          if (cbp & 1)                  if(add)
356                  transfer_16to8add(pV_Cur, &data[5 * 64], stride2);                          transfer_op = (transfer_operation_16to8_t*)add_upsampled_8x8_16to8;
357          stop_transfer_timer();                  else
358                            transfer_op = (transfer_operation_16to8_t*)copy_upsampled_8x8_16to8;
359            } else {
360    
361                    /* Image pointers */
362                    pY_Cur = pCurrent->y + (y_pos << 4) * stride  + (x_pos << 4);
363                    pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);
364                    pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);
365    
366          return cbp;                  /* Block size */
367                    cst = 8;
368    
369                    /* Operation function */
370                    if(add)
371                            transfer_op = (transfer_operation_16to8_t*)transfer_16to8add;
372                    else
373                            transfer_op = (transfer_operation_16to8_t*)transfer_16to8copy;
374            }
375    
376            /* Do the operation */
377            start_timer();
378            if (cbp&32) transfer_op(pY_Cur, &data[0 * 64], stride);
379            if (cbp&16) transfer_op(pY_Cur + cst, &data[1 * 64], stride);
380            if (cbp& 8) transfer_op(pY_Cur + next_block, &data[2 * 64], stride);
381            if (cbp& 4) transfer_op(pY_Cur + next_block + cst, &data[3 * 64], stride);
382            if (cbp& 2) transfer_op(pU_Cur, &data[4 * 64], stride2);
383            if (cbp& 1) transfer_op(pV_Cur, &data[5 * 64], stride2);
384            stop_transfer_timer();
385  }  }
386    
387    /*****************************************************************************
388     * Module functions
389     ****************************************************************************/
390    
391  void  void
392  MBTransQuantIntra2(const MBParam * pParam,  MBTransQuantIntra(const MBParam * const pParam,
393                                    FRAMEINFO * frame,                                    const FRAMEINFO * const frame,
394                                    MACROBLOCK * pMB,                                    MACROBLOCK * const pMB,
395                                    const uint32_t x_pos,                                    const uint32_t x_pos,
396                                    const uint32_t y_pos,                                    const uint32_t y_pos,
397                                    int16_t data[6 * 64],                                    int16_t data[6 * 64],
398                                    int16_t qcoeff[6 * 64])                                    int16_t qcoeff[6 * 64])
399  {  {
400          MBTrans(pParam,frame,pMB,x_pos,y_pos,data);  
401          MBfDCT(pParam,frame,pMB,data);          /* Transfer data */
402            MBTrans8to16(pParam, frame, pMB, x_pos, y_pos, data);
403    
404            /* Perform DCT (and field decision) */
405            MBfDCT(pParam, frame, pMB, x_pos, y_pos, data);
406    
407            /* Quantize the block */
408          MBQuantIntra(pParam,frame,pMB,data,qcoeff);          MBQuantIntra(pParam,frame,pMB,data,qcoeff);
409          MBDeQuantIntra(pParam,frame->quant,data,qcoeff);  
410            /* DeQuantize the block */
411            MBDeQuantIntra(pParam, pMB->quant, data, qcoeff);
412    
413            /* Perform inverse DCT*/
414          MBiDCT(data,0x3F);          MBiDCT(data,0x3F);
415          MBTransAdd(pParam,frame,pMB,x_pos,y_pos,data,0x3F);  
416            /* Transfer back the data -- Don't add data */
417            MBTrans16to8(pParam, frame, pMB, x_pos, y_pos, data, 0, 0x3F);
418  }  }
419    
420    
421  uint8_t  uint8_t
422  MBTransQuantInter2(const MBParam * pParam,  MBTransQuantInter(const MBParam * const pParam,
423                                    FRAMEINFO * frame,                                    const FRAMEINFO * const frame,
424                                    MACROBLOCK * pMB,                                    MACROBLOCK * const pMB,
425                                    const uint32_t x_pos,                                    const uint32_t x_pos,
426                                    const uint32_t y_pos,                                    const uint32_t y_pos,
427                                    int16_t data[6 * 64],                                    int16_t data[6 * 64],
428                                    int16_t qcoeff[6 * 64])                                    int16_t qcoeff[6 * 64])
429  {  {
430          uint8_t cbp;          uint8_t cbp;
431            uint32_t limit;
432    
433            /*
434             * There is no MBTrans8to16 for Inter block, that's done in motion compensation
435             * already
436             */
437    
438            /* Perform DCT (and field decision) */
439            MBfDCT(pParam, frame, pMB, x_pos, y_pos, data);
440    
441            /* Set the limit threshold */
442            limit = PVOP_TOOSMALL_LIMIT + ((pMB->quant == 1)? 1 : 0);
443    
444            /* Quantize the block */
445            cbp = MBQuantInter(pParam, frame, pMB, data, qcoeff, 0, limit);
446    
447  /* there is no MBTrans for Inter block, that's done in motion compensation already */          /* DeQuantize the block */
448            MBDeQuantInter(pParam, pMB->quant, data, qcoeff, cbp);
449    
450          MBfDCT(pParam,frame,pMB,data);          /* Perform inverse DCT*/
         cbp = MBQuantInter(pParam,frame->quant,data,qcoeff);  
         MBDeQuantInter(pParam,frame->quant,data,qcoeff,cbp);  
451          MBiDCT(data,cbp);          MBiDCT(data,cbp);
         MBTransAdd(pParam,frame,pMB,x_pos,y_pos,data,cbp);  
452    
453          return cbp;          /* Transfer back the data -- Add the data */
454            MBTrans16to8(pParam, frame, pMB, x_pos, y_pos, data, 1, cbp);
455    
456            return(cbp);
457  }  }
458    
459  uint8_t  uint8_t
460  MBTransQuantInterBVOP(const MBParam * pParam,  MBTransQuantInterBVOP(const MBParam * pParam,
461                                    FRAMEINFO * frame,                                    FRAMEINFO * frame,
462                                    MACROBLOCK * pMB,                                    MACROBLOCK * pMB,
463                                      const uint32_t x_pos,
464                                      const uint32_t y_pos,
465                                    int16_t data[6 * 64],                                    int16_t data[6 * 64],
466                                    int16_t qcoeff[6 * 64])                                    int16_t qcoeff[6 * 64])
467  {  {
468          uint8_t cbp;          uint8_t cbp;
469            uint32_t limit;
470    
471            /*
472             * There is no MBTrans8to16 for Inter block, that's done in motion compensation
473             * already
474             */
475    
476  /* there is no MBTrans for Inter block, that's done in motion compensation already */          /* Perform DCT (and field decision) */
477            MBfDCT(pParam, frame, pMB, x_pos, y_pos, data);
478    
479          MBfDCT(pParam,frame,pMB,data);          /* Set the limit threshold */
480          cbp = MBQuantInter(pParam,frame->quant,data,qcoeff);          limit = BVOP_TOOSMALL_LIMIT;
481    
482  /* we don't have to DeQuant, iDCT and Transfer back data for B-frames */          /* Quantize the block */
483            cbp = MBQuantInter(pParam, frame, pMB, data, qcoeff, 1, limit);
484    
485          return cbp;          /*
486  }           * History comment:
487             * We don't have to DeQuant, iDCT and Transfer back data for B-frames.
488             *
489             * BUT some plugins require the original frame to be passed so we have
490             * to take care of that here
491             */
492            if((pParam->plugin_flags & XVID_REQORIGINAL)) {
493    
494                    /* DeQuantize the block */
495                    MBDeQuantInter(pParam, pMB->quant, data, qcoeff, cbp);
496    
497  void                  /* Perform inverse DCT*/
498  MBfDCT(const MBParam * pParam,                  MBiDCT(data, cbp);
                                   FRAMEINFO * frame,  
                                   MACROBLOCK * pMB,  
                                   int16_t data[6 * 64])  
 {  
         int i;  
499    
500          start_timer();                  /* Transfer back the data -- Add the data */
501          pMB->field_dct = 0;                  MBTrans16to8(pParam, frame, pMB, x_pos, y_pos, data, 1, cbp);
         if ((frame->global_flags & XVID_INTERLACING)) {  
                 pMB->field_dct = MBDecideFieldDCT(data);  
502          }          }
         stop_interlacing_timer();  
503    
504          for (i = 0; i < 6; i++) {          return(cbp);
                 start_timer();  
                 fdct(&data[i * 64]);  
                 stop_dct_timer();  
         }  
505  }  }
506    
507  void  /* if sum(diff between field lines) < sum(diff between frame lines), use field dct */
508  MBQuantDeQuantIntra(const MBParam * pParam,  uint32_t
509                                          FRAMEINFO * frame,  MBFieldTest_c(int16_t data[6 * 64])
                                         MACROBLOCK * pMB,  
                                         int16_t qcoeff[6 * 64],  
                                         int16_t data[6*64])  
510  {  {
511          int i;          const uint8_t blocks[] =
512          int iQuant = frame->quant;                  { 0 * 64, 0 * 64, 0 * 64, 0 * 64, 2 * 64, 2 * 64, 2 * 64, 2 * 64 };
513            const uint8_t lines[] = { 0, 16, 32, 48, 0, 16, 32, 48 };
514    
515          start_timer();          int frame = 0, field = 0;
516          pMB->field_dct = 0;          int i, j;
517          if ((frame->global_flags & XVID_INTERLACING)) {  
518                  pMB->field_dct = MBDecideFieldDCT(data);          for (i = 0; i < 7; ++i) {
519                    for (j = 0; j < 8; ++j) {
520                            frame +=
521                                    abs(data[0 * 64 + (i + 1) * 8 + j] - data[0 * 64 + i * 8 + j]);
522                            frame +=
523                                    abs(data[1 * 64 + (i + 1) * 8 + j] - data[1 * 64 + i * 8 + j]);
524                            frame +=
525                                    abs(data[2 * 64 + (i + 1) * 8 + j] - data[2 * 64 + i * 8 + j]);
526                            frame +=
527                                    abs(data[3 * 64 + (i + 1) * 8 + j] - data[3 * 64 + i * 8 + j]);
528    
529                            field +=
530                                    abs(data[blocks[i + 1] + lines[i + 1] + j] -
531                                            data[blocks[i] + lines[i] + j]);
532                            field +=
533                                    abs(data[blocks[i + 1] + lines[i + 1] + 8 + j] -
534                                            data[blocks[i] + lines[i] + 8 + j]);
535                            field +=
536                                    abs(data[blocks[i + 1] + 64 + lines[i + 1] + j] -
537                                            data[blocks[i] + 64 + lines[i] + j]);
538                            field +=
539                                    abs(data[blocks[i + 1] + 64 + lines[i + 1] + 8 + j] -
540                                            data[blocks[i] + 64 + lines[i] + 8 + j]);
541                    }
542          }          }
         stop_interlacing_timer();  
543    
544          for (i = 0; i < 6; i++) {          return (frame >= (field + 350));
545                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);  }
546    
                 if (pParam->m_quant_type == H263_QUANT) {  
                         start_timer();  
                         quant_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);  
                         stop_quant_timer();  
547    
548                          start_timer();  /* deinterlace Y blocks vertically */
                         dequant_intra(&data[i * 64], &qcoeff[i * 64], iQuant, iDcScaler);  
                         stop_iquant_timer();  
                 } else {  
                         start_timer();  
                         quant4_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);  
                         stop_quant_timer();  
549    
550                          start_timer();  #define MOVLINE(X,Y) memcpy(X, Y, sizeof(tmp))
551                          dequant4_intra(&data[i * 64], &qcoeff[i * 64], iQuant, iDcScaler);  #define LINE(X,Y)       &data[X*64 + Y*8]
                         stop_iquant_timer();  
                 }  
         }  
 }  
552    
553  void  void
554  MBQuantIntra(const MBParam * pParam,  MBFrameToField(int16_t data[6 * 64])
                          FRAMEINFO * frame,  
                          MACROBLOCK *pMB,  
                      int16_t qcoeff[6 * 64],  
                          int16_t data[6*64])  
555  {  {
556          int i;          int16_t tmp[8];
         int iQuant = frame->quant;  
557    
558          start_timer();          /* left blocks */
         pMB->field_dct = 0;  
         if ((frame->global_flags & XVID_INTERLACING)) {  
                 pMB->field_dct = MBDecideFieldDCT(data);  
         }  
         stop_interlacing_timer();  
559    
560          for (i = 0; i < 6; i++) {          /* 1=2, 2=4, 4=8, 8=1 */
561                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);          MOVLINE(tmp, LINE(0, 1));
562            MOVLINE(LINE(0, 1), LINE(0, 2));
563            MOVLINE(LINE(0, 2), LINE(0, 4));
564            MOVLINE(LINE(0, 4), LINE(2, 0));
565            MOVLINE(LINE(2, 0), tmp);
566    
567                  if (pParam->m_quant_type == H263_QUANT) {          /* 3=6, 6=12, 12=9, 9=3 */
568                          start_timer();          MOVLINE(tmp, LINE(0, 3));
569                          quant_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);          MOVLINE(LINE(0, 3), LINE(0, 6));
570                          stop_quant_timer();          MOVLINE(LINE(0, 6), LINE(2, 4));
571                  } else {          MOVLINE(LINE(2, 4), LINE(2, 1));
572                          start_timer();          MOVLINE(LINE(2, 1), tmp);
573                          quant4_intra(&qcoeff[i * 64], &data[i * 64], iQuant, iDcScaler);  
574                          stop_quant_timer();          /* 5=10, 10=5 */
575            MOVLINE(tmp, LINE(0, 5));
576            MOVLINE(LINE(0, 5), LINE(2, 2));
577            MOVLINE(LINE(2, 2), tmp);
578    
579            /* 7=14, 14=13, 13=11, 11=7 */
580            MOVLINE(tmp, LINE(0, 7));
581            MOVLINE(LINE(0, 7), LINE(2, 6));
582            MOVLINE(LINE(2, 6), LINE(2, 5));
583            MOVLINE(LINE(2, 5), LINE(2, 3));
584            MOVLINE(LINE(2, 3), tmp);
585    
586            /* right blocks */
587    
588            /* 1=2, 2=4, 4=8, 8=1 */
589            MOVLINE(tmp, LINE(1, 1));
590            MOVLINE(LINE(1, 1), LINE(1, 2));
591            MOVLINE(LINE(1, 2), LINE(1, 4));
592            MOVLINE(LINE(1, 4), LINE(3, 0));
593            MOVLINE(LINE(3, 0), tmp);
594    
595            /* 3=6, 6=12, 12=9, 9=3 */
596            MOVLINE(tmp, LINE(1, 3));
597            MOVLINE(LINE(1, 3), LINE(1, 6));
598            MOVLINE(LINE(1, 6), LINE(3, 4));
599            MOVLINE(LINE(3, 4), LINE(3, 1));
600            MOVLINE(LINE(3, 1), tmp);
601    
602            /* 5=10, 10=5 */
603            MOVLINE(tmp, LINE(1, 5));
604            MOVLINE(LINE(1, 5), LINE(3, 2));
605            MOVLINE(LINE(3, 2), tmp);
606    
607            /* 7=14, 14=13, 13=11, 11=7 */
608            MOVLINE(tmp, LINE(1, 7));
609            MOVLINE(LINE(1, 7), LINE(3, 6));
610            MOVLINE(LINE(3, 6), LINE(3, 5));
611            MOVLINE(LINE(3, 5), LINE(3, 3));
612            MOVLINE(LINE(3, 3), tmp);
613                  }                  }
614    
615    
616    
617    
618    
619    /*****************************************************************************
620     *               Trellis based R-D optimal quantization
621     *
622     *   Trellis Quant code (C) 2003 Pascal Massimino skal(at)planet-d.net
623     *
624     ****************************************************************************/
625    
626    
627    #if 0
628    static int
629    dct_quantize_trellis_mpeg_c(int16_t *const Out,
630                                                            const int16_t *const In,
631                                                            int Q,
632                                                            const uint16_t * const Zigzag,
633                                                            int Non_Zero)
634    {
635            return 63;
636          }          }
637    #endif
638    
639    /*----------------------------------------------------------------------------
640     *
641     *        Trellis-Based quantization
642     *
643     * So far I understand this paper:
644     *
645     *  "Trellis-Based R-D Optimal Quantization in H.263+"
646     *    J.Wen, M.Luttrell, J.Villasenor
647     *    IEEE Transactions on Image Processing, Vol.9, No.8, Aug. 2000.
648     *
649     * we are at stake with a simplified Bellmand-Ford / Dijkstra Single
650     * Source Shorted Path algo. But due to the underlying graph structure
651     * ("Trellis"), it can be turned into a dynamic programming algo,
652     * partially saving the explicit graph's nodes representation. And
653     * without using a heap, since the open frontier of the DAG is always
654     * known, and of fixed sized.
655     *--------------------------------------------------------------------------*/
656    
657    
658    
659    /* Codes lengths for relevant levels. */
660    
661      /* let's factorize: */
662    static const uint8_t Code_Len0[64] = {
663      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
664      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
665    static const uint8_t Code_Len1[64] = {
666      20,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
667      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
668    static const uint8_t Code_Len2[64] = {
669      19,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
670      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
671    static const uint8_t Code_Len3[64] = {
672      18,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
673      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
674    static const uint8_t Code_Len4[64] = {
675      17,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
676      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
677    static const uint8_t Code_Len5[64] = {
678      16,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
679      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
680    static const uint8_t Code_Len6[64] = {
681      15,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
682      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
683    static const uint8_t Code_Len7[64] = {
684      13,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
685      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
686    static const uint8_t Code_Len8[64] = {
687      11,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
688      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
689    static const uint8_t Code_Len9[64] = {
690      12,21,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
691      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
692    static const uint8_t Code_Len10[64] = {
693      12,20,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
694      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
695    static const uint8_t Code_Len11[64] = {
696      12,19,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
697      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
698    static const uint8_t Code_Len12[64] = {
699      11,17,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
700      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
701    static const uint8_t Code_Len13[64] = {
702      11,15,21,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
703      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
704    static const uint8_t Code_Len14[64] = {
705      10,12,19,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
706      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
707    static const uint8_t Code_Len15[64] = {
708      10,13,17,19,21,21,21,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
709      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
710    static const uint8_t Code_Len16[64] = {
711       9,12,13,18,18,19,19,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
712      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30};
713    static const uint8_t Code_Len17[64] = {
714       8,11,13,14,14,14,15,19,19,19,21,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
715      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
716    static const uint8_t Code_Len18[64] = {
717       7, 9,11,11,13,13,13,15,15,15,16,22,22,22,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
718      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
719    static const uint8_t Code_Len19[64] = {
720       5, 7, 9,10,10,11,11,11,11,11,13,14,16,17,17,18,18,18,18,18,18,18,18,20,20,21,21,30,30,30,30,30,
721      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30 };
722    static const uint8_t Code_Len20[64] = {
723       3, 4, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9,10,10,10,10,10,10,10,10,12,12,13,13,12,13,14,15,15,
724      15,16,16,16,16,17,17,17,18,18,19,19,19,19,19,19,19,19,21,21,22,22,30,30,30,30,30,30,30,30,30,30 };
725    
726      /* a few more table for LAST table: */
727    static const uint8_t Code_Len21[64] = {
728      13,20,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
729      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30};
730    static const uint8_t Code_Len22[64] = {
731      12,15,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,
732      30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30};
733    static const uint8_t Code_Len23[64] = {
734      10,12,15,15,15,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,20,20,20,
735      20,21,21,21,21,21,21,21,21,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30};
736    static const uint8_t Code_Len24[64] = {
737       5, 7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9,10,10,10,10,10,10,10,10,11,11,11,11,12,12,12,
738      12,13,13,13,13,13,13,13,13,14,16,16,16,16,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19};
739    
740    
741    static const uint8_t * const B16_17_Code_Len[24] = { /* levels [1..24] */
742      Code_Len20,Code_Len19,Code_Len18,Code_Len17,
743      Code_Len16,Code_Len15,Code_Len14,Code_Len13,
744      Code_Len12,Code_Len11,Code_Len10,Code_Len9,
745      Code_Len8, Code_Len7 ,Code_Len6 ,Code_Len5,
746      Code_Len4, Code_Len3, Code_Len3 ,Code_Len2,
747      Code_Len2, Code_Len1, Code_Len1, Code_Len1,
748    };
749    
750    static const uint8_t * const B16_17_Code_Len_Last[6] = { /* levels [1..6] */
751      Code_Len24,Code_Len23,Code_Len22,Code_Len21, Code_Len3, Code_Len1,
752    };
753    
754    #define TL(q) 0xfe00/(q*q)
755    
756    static const int Trellis_Lambda_Tabs[31] = {
757             TL( 1),TL( 2),TL( 3),TL( 4),TL( 5),TL( 6), TL( 7),
758      TL( 8),TL( 9),TL(10),TL(11),TL(12),TL(13),TL(14), TL(15),
759      TL(16),TL(17),TL(18),TL(19),TL(20),TL(21),TL(22), TL(23),
760      TL(24),TL(25),TL(26),TL(27),TL(28),TL(29),TL(30), TL(31)
761    };
762    #undef TL
763    
764    static __inline int Find_Last(const int16_t *C, const uint16_t *Zigzag, int i)
765    {
766      while(i>=0)
767        if (C[Zigzag[i]])
768          return i;
769        else i--;
770      return -1;
771  }  }
772    
773  void  /* this routine has been strippen of all debug code */
774  MBDeQuantIntra(const MBParam * pParam,  
775                             const int iQuant,  static int
776                                    int16_t qcoeff[6 * 64],  dct_quantize_trellis_h263_c(int16_t *const Out, const int16_t *const In, int Q, const uint16_t * const Zigzag, int Non_Zero)
                                   int16_t data[6*64])  
777  {  {
         int i;  
778    
779          for (i = 0; i < 6; i++) {      /*
780                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);           * Note: We should search last non-zero coeffs on *real* DCT input coeffs (In[]),
781             * not quantized one (Out[]). However, it only improves the result *very*
782             * slightly (~0.01dB), whereas speed drops to crawling level :)
783             * Well, actually, taking 1 more coeff past Non_Zero into account sometimes helps.
784             */
785      typedef struct { int16_t Run, Level; } NODE;
786    
787                  if (pParam->m_quant_type == H263_QUANT) {    NODE Nodes[65], Last;
788                          start_timer();    uint32_t Run_Costs0[64+1];
789                          dequant_intra(&data[i * 64], &qcoeff[i * 64], iQuant, iDcScaler);    uint32_t * const Run_Costs = Run_Costs0 + 1;
790                          stop_iquant_timer();    const int Mult = 2*Q;
791      const int Bias = (Q-1) | 1;
792      const int Lev0 = Mult + Bias;
793      const int Lambda = Trellis_Lambda_Tabs[Q-1];    /* it's 1/lambda, actually */
794    
795      int Run_Start = -1;
796      uint32_t Min_Cost = 2<<16;
797    
798      int Last_Node = -1;
799      uint32_t Last_Cost = 0;
800    
801      int i, j;
802      Run_Costs[-1] = 2<<16;                          /* source (w/ CBP penalty) */
803    
804      Non_Zero = Find_Last(Out, Zigzag, Non_Zero);
805      if (Non_Zero<0)
806          return -1;
807    
808      for(i=0; i<=Non_Zero; i++)
809      {
810        const int AC = In[Zigzag[i]];
811        const int Level1 = Out[Zigzag[i]];
812        const int Dist0 = Lambda* AC*AC;
813        uint32_t Best_Cost = 0xf0000000;
814        Last_Cost += Dist0;
815    
816        if ((uint32_t)(Level1+1)<3)                 /* very specialized loop for -1,0,+1 */
817        {
818            int dQ;
819                    int Run;
820          uint32_t Cost0;
821    
822          if (AC<0) {
823            Nodes[i].Level = -1;
824            dQ = Lev0 + AC;
825                  } else {                  } else {
826                          start_timer();          Nodes[i].Level = 1;
827                          dequant4_intra(&data[i * 64], &qcoeff[i * 64], iQuant, iDcScaler);          dQ = Lev0 - AC;
                         stop_iquant_timer();  
                 }  
         }  
828  }  }
829                    Cost0 = Lambda*dQ*dQ;
830    
831  uint8_t        Nodes[i].Run = 1;
832  MBQuantInter(const MBParam * pParam,        Best_Cost = (Code_Len20[0]<<16) + Run_Costs[i-1]+Cost0;
833                           const int iQuant,        for(Run=i-Run_Start; Run>0; --Run)
                                   int16_t data[6 * 64],  
                                   int16_t qcoeff[6 * 64])  
834  {  {
835            const uint32_t Cost_Base = Cost0 + Run_Costs[i-Run];
836            const uint32_t Cost = Cost_Base + (Code_Len20[Run-1]<<16);
837            const uint32_t lCost = Cost_Base + (Code_Len24[Run-1]<<16);
838    
839          int i;            /*
840          uint8_t cbp = 0;                     * TODO: what about tie-breaks? Should we favor short runs or
841          int sum;                     * long runs? Although the error is the same, it would not be
842                       * spread the same way along high and low frequencies...
843                       */
844    
845          for (i = 0; i < 6; i++) {                          /* (I'd say: favour short runs => hifreq errors (HVS) -- gruel ) */
846    
847                  if (pParam->m_quant_type == 0) {          if (Cost<Best_Cost) {
848                          start_timer();            Best_Cost    = Cost;
849                          sum = quant_inter(&qcoeff[i * 64], &data[i * 64], iQuant);            Nodes[i].Run = Run;
                         stop_quant_timer();  
                 } else {  
                         start_timer();  
                         sum = quant4_inter(&qcoeff[i * 64], &data[i * 64], iQuant);  
                         stop_quant_timer();  
850                  }                  }
851    
852                  if (sum >= TOOSMALL_LIMIT) {    // skip block ?          if (lCost<Last_Cost) {
853                          cbp |= 1 << (5 - i);            Last_Cost  = lCost;
854              Last.Run   = Run;
855              Last_Node  = i;
856                  }                  }
857          }          }
858          return cbp;        if (Last_Node==i)
859                            Last.Level = Nodes[i].Level;
860  }  }
861        else                      /* "big" levels */
 void  
 MBDeQuantInter( const MBParam * pParam,  
                                 const int iQuant,  
                                   int16_t data[6 * 64],  
                                   int16_t qcoeff[6 * 64],  
                                   const uint8_t cbp)  
862  {  {
863          int i;        const uint8_t *Tbl_L1, *Tbl_L2, *Tbl_L1_Last, *Tbl_L2_Last;
864          int Level2;
865          int dQ1, dQ2;
866          int Run;
867                    uint32_t Dist1,Dist2;
868                    int dDist21;
869    
870              if (Level1>1) {
871            dQ1 = Level1*Mult-AC + Bias;
872            dQ2 = dQ1 - Mult;
873            Level2 = Level1-1;
874            Tbl_L1      = (Level1<=24) ? B16_17_Code_Len[Level1-1]     : Code_Len0;
875            Tbl_L2      = (Level2<=24) ? B16_17_Code_Len[Level2-1]     : Code_Len0;
876            Tbl_L1_Last = (Level1<=6) ? B16_17_Code_Len_Last[Level1-1] : Code_Len0;
877            Tbl_L2_Last = (Level2<=6) ? B16_17_Code_Len_Last[Level2-1] : Code_Len0;
878          } else { /* Level1<-1 */
879            dQ1 = Level1*Mult-AC - Bias;
880            dQ2 = dQ1 + Mult;
881            Level2 = Level1 + 1;
882            Tbl_L1      = (Level1>=-24) ? B16_17_Code_Len[Level1^-1]      : Code_Len0;
883            Tbl_L2      = (Level2>=-24) ? B16_17_Code_Len[Level2^-1]      : Code_Len0;
884            Tbl_L1_Last = (Level1>=- 6) ? B16_17_Code_Len_Last[Level1^-1] : Code_Len0;
885            Tbl_L2_Last = (Level2>=- 6) ? B16_17_Code_Len_Last[Level2^-1] : Code_Len0;
886          }
887          Dist1 = Lambda*dQ1*dQ1;
888          Dist2 = Lambda*dQ2*dQ2;
889          dDist21 = Dist2-Dist1;
890    
891          for (i = 0; i < 6; i++) {        for(Run=i-Run_Start; Run>0; --Run)
                 if (cbp & (1 << (5 - i)))  
892                  {                  {
893                          if (pParam->m_quant_type == H263_QUANT) {          const uint32_t Cost_Base = Dist1 + Run_Costs[i-Run];
894                                  start_timer();          uint32_t Cost1, Cost2;
895                                  dequant_inter(&data[i * 64], &qcoeff[i * 64], iQuant);          int bLevel;
896                                  stop_iquant_timer();  
897                          } else {  /*
898                                  start_timer();   * for sub-optimal (but slightly worth it, speed-wise) search, uncomment the following:
899                                  dequant4_inter(&data[i * 64], &qcoeff[i * 64], iQuant);   *      if (Cost_Base>=Best_Cost) continue;
900                                  stop_iquant_timer();   * (? doesn't seem to have any effect -- gruel )
901                          }   */
902    
903            Cost1 = Cost_Base + (Tbl_L1[Run-1]<<16);
904            Cost2 = Cost_Base + (Tbl_L2[Run-1]<<16) + dDist21;
905    
906            if (Cost2<Cost1) {
907                             Cost1 = Cost2;
908                             bLevel = Level2;
909                      } else
910                             bLevel = Level1;
911    
912            if (Cost1<Best_Cost) {
913              Best_Cost = Cost1;
914              Nodes[i].Run   = Run;
915              Nodes[i].Level = bLevel;
916                  }                  }
917    
918            Cost1 = Cost_Base + (Tbl_L1_Last[Run-1]<<16);
919            Cost2 = Cost_Base + (Tbl_L2_Last[Run-1]<<16) + dDist21;
920    
921            if (Cost2<Cost1) {
922                             Cost1 = Cost2;
923                             bLevel = Level2;
924                      } else
925                             bLevel = Level1;
926    
927            if (Cost1<Last_Cost) {
928              Last_Cost  = Cost1;
929              Last.Run   = Run;
930              Last.Level = bLevel;
931              Last_Node  = i;
932          }          }
933          } /* end of "for Run" */
934    
935  }  }
936    
937  void      Run_Costs[i] = Best_Cost;
 MBiDCT( int16_t data[6 * 64],  
                 const uint8_t cbp)  
 {  
         int i;  
938    
939          for (i = 0; i < 6; i++) {      if (Best_Cost < Min_Cost + Dist0) {
940                  if (cbp & (1 << (5 - i)))        Min_Cost = Best_Cost;
941          Run_Start = i;
942        }
943        else
944                  {                  {
945                          start_timer();          /*
946                          idct(&data[i * 64]);                   * as noticed by Michael Niedermayer (michaelni at gmx.at), there's
947                          stop_idct_timer();                   * a code shorter by 1 bit for a larger run (!), same level. We give
948                     * it a chance by not moving the left barrier too much.
949                     */
950    
951          while( Run_Costs[Run_Start]>Min_Cost+(1<<16) )
952            Run_Start++;
953    
954            /* spread on preceding coeffs the cost incurred by skipping this one */
955          for(j=Run_Start; j<i; ++j) Run_Costs[j] += Dist0;
956          Min_Cost += Dist0;
957        }
958                  }                  }
959    
960      if (Last_Node<0)
961        return -1;
962    
963           /* reconstruct optimal sequence backward with surviving paths */
964      memset(Out, 0x00, 64*sizeof(*Out));
965      Out[Zigzag[Last_Node]] = Last.Level;
966      i = Last_Node - Last.Run;
967      while(i>=0) {
968        Out[Zigzag[i]] = Nodes[i].Level;
969        i -= Nodes[i].Run;
970          }          }
971      return Last_Node;
972  }  }
973    
974    
 void  
 MBTrans(const MBParam * pParam,  
                                   FRAMEINFO * frame,  
                                   MACROBLOCK * pMB,  
                                   const uint32_t x_pos,  
                                   const uint32_t y_pos,  
                                   int16_t data[6 * 64])  
 {  
         uint32_t stride = pParam->edged_width;  
         uint32_t stride2 = stride / 2;  
         uint32_t next_block = stride * 8;  
         uint8_t *pY_Cur, *pU_Cur, *pV_Cur;  
         IMAGE *pCurrent = &frame->image;  
975    
         pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);  
         pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);  
         pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);  
976    
         start_timer();  
         transfer_8to16copy(&data[0 * 64], pY_Cur, stride);  
         transfer_8to16copy(&data[1 * 64], pY_Cur + 8, stride);  
         transfer_8to16copy(&data[2 * 64], pY_Cur + next_block, stride);  
         transfer_8to16copy(&data[3 * 64], pY_Cur + next_block + 8, stride);  
         transfer_8to16copy(&data[4 * 64], pU_Cur, stride2);  
         transfer_8to16copy(&data[5 * 64], pV_Cur, stride2);  
         stop_transfer_timer();  
 }  
977    
 void  
 MBTransAdd(const MBParam * pParam,  
                                   FRAMEINFO * frame,  
                                   MACROBLOCK * pMB,  
                                   const uint32_t x_pos,  
                                   const uint32_t y_pos,  
                                   int16_t data[6 * 64],  
                                   const uint8_t cbp)  
 {  
         uint8_t *pY_Cur, *pU_Cur, *pV_Cur;  
         uint32_t stride = pParam->edged_width;  
         uint32_t stride2 = stride / 2;  
         uint32_t next_block = stride * 8;  
         IMAGE *pCurrent = &frame->image;  
978    
         pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);  
         pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);  
         pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);  
979    
         if (pMB->field_dct) {  
                 next_block = stride;  
                 stride *= 2;  
         }  
980    
         start_timer();  
         if (cbp & 32)  
                 transfer_16to8add(pY_Cur, &data[0 * 64], stride);  
         if (cbp & 16)  
                 transfer_16to8add(pY_Cur + 8, &data[1 * 64], stride);  
         if (cbp & 8)  
                 transfer_16to8add(pY_Cur + next_block, &data[2 * 64], stride);  
         if (cbp & 4)  
                 transfer_16to8add(pY_Cur + next_block + 8, &data[3 * 64], stride);  
         if (cbp & 2)  
                 transfer_16to8add(pU_Cur, &data[4 * 64], stride2);  
         if (cbp & 1)  
                 transfer_16to8add(pV_Cur, &data[5 * 64], stride2);  
         stop_transfer_timer();  
 }  
981    
982    
983    
984  /* if sum(diff between field lines) < sum(diff between frame lines), use field dct */  /* original version including heavy debugging info */
985    
986    #ifdef DBGTRELL
987    
988  uint32_t  #define DBG 0
989  MBDecideFieldDCT(int16_t data[6 * 64])  
990    static __inline uint32_t Evaluate_Cost(const int16_t *C, int Mult, int Bias,
991                                    const uint16_t * Zigzag, int Max, int Lambda)
992  {  {
993    #if (DBG>0)
994      const int16_t * const Ref = C + 6*64;
995      int Last = Max;
996      int Bits = 0;
997      int Dist = 0;
998      int i;
999      uint32_t Cost;
1000    
1001          const uint8_t blocks[] =    while(Last>=0 && C[Zigzag[Last]]==0)
1002                  { 0 * 64, 0 * 64, 0 * 64, 0 * 64, 2 * 64, 2 * 64, 2 * 64, 2 * 64 };          Last--;
1003          const uint8_t lines[] = { 0, 16, 32, 48, 0, 16, 32, 48 };  
1004      if (Last>=0) {
1005        int j=0, j0=0;
1006        int Run, Level;
1007    
1008        Bits = 2;   /* CBP */
1009        while(j<Last) {
1010          while(!C[Zigzag[j]])
1011                            j++;
1012          if (j==Last)
1013                            break;
1014          Level=C[Zigzag[j]];
1015          Run = j - j0;
1016          j0 = ++j;
1017          if (Level>=-24 && Level<=24)
1018                            Bits += B16_17_Code_Len[(Level<0) ? -Level-1 : Level-1][Run];
1019          else
1020                            Bits += 30;
1021        }
1022        Level = C[Zigzag[Last]];
1023        Run = j - j0;
1024        if (Level>=-6 && Level<=6)
1025                    Bits += B16_17_Code_Len_Last[(Level<0) ? -Level-1 : Level-1][Run];
1026        else
1027                    Bits += 30;
1028      }
1029    
1030      for(i=0; i<=Last; ++i) {
1031        int V = C[Zigzag[i]]*Mult;
1032        if (V>0)
1033                    V += Bias;
1034        else
1035                    if (V<0)
1036                            V -= Bias;
1037        V -= Ref[Zigzag[i]];
1038        Dist += V*V;
1039      }
1040      Cost = Lambda*Dist + (Bits<<16);
1041      if (DBG==1)
1042        printf( " Last:%2d/%2d Cost = [(Bits=%5.0d) + Lambda*(Dist=%6.0d) = %d ] >>12= %d ", Last,Max, Bits, Dist, Cost, Cost>>12 );
1043      return Cost;
1044    
1045    #else
1046      return 0;
1047    #endif
1048    }
1049    
1050    
1051    static int
1052    dct_quantize_trellis_h263_c(int16_t *const Out, const int16_t *const In, int Q, const uint16_t * const Zigzag, int Non_Zero)
1053    {
1054    
1055        /*
1056             * Note: We should search last non-zero coeffs on *real* DCT input coeffs (In[]),
1057             * not quantized one (Out[]). However, it only improves the result *very*
1058             * slightly (~0.01dB), whereas speed drops to crawling level :)
1059             * Well, actually, taking 1 more coeff past Non_Zero into account sometimes helps.
1060             */
1061      typedef struct { int16_t Run, Level; } NODE;
1062    
1063      NODE Nodes[65], Last;
1064      uint32_t Run_Costs0[64+1];
1065      uint32_t * const Run_Costs = Run_Costs0 + 1;
1066      const int Mult = 2*Q;
1067      const int Bias = (Q-1) | 1;
1068      const int Lev0 = Mult + Bias;
1069      const int Lambda = Trellis_Lambda_Tabs[Q-1];    /* it's 1/lambda, actually */
1070    
1071      int Run_Start = -1;
1072      Run_Costs[-1] = 2<<16;                          /* source (w/ CBP penalty) */
1073      uint32_t Min_Cost = 2<<16;
1074    
1075      int Last_Node = -1;
1076      uint32_t Last_Cost = 0;
1077    
         int frame = 0, field = 0;  
1078          int i, j;          int i, j;
1079    
1080          for (i = 0; i < 7; ++i) {  #if (DBG>0)
1081                  for (j = 0; j < 8; ++j) {    Last.Level = 0; Last.Run = -1; /* just initialize to smthg */
1082                          frame +=  #endif
1083                                  ABS(data[0 * 64 + (i + 1) * 8 + j] - data[0 * 64 + i * 8 + j]);  
1084                          frame +=    Non_Zero = Find_Last(Out, Zigzag, Non_Zero);
1085                                  ABS(data[1 * 64 + (i + 1) * 8 + j] - data[1 * 64 + i * 8 + j]);    if (Non_Zero<0)
1086                          frame +=        return -1;
                                 ABS(data[2 * 64 + (i + 1) * 8 + j] - data[2 * 64 + i * 8 + j]);  
                         frame +=  
                                 ABS(data[3 * 64 + (i + 1) * 8 + j] - data[3 * 64 + i * 8 + j]);  
1087    
1088                          field +=    for(i=0; i<=Non_Zero; i++)
1089                                  ABS(data[blocks[i + 1] + lines[i + 1] + j] -    {
1090                                          data[blocks[i] + lines[i] + j]);      const int AC = In[Zigzag[i]];
1091                          field +=      const int Level1 = Out[Zigzag[i]];
1092                                  ABS(data[blocks[i + 1] + lines[i + 1] + 8 + j] -      const int Dist0 = Lambda* AC*AC;
1093                                          data[blocks[i] + lines[i] + 8 + j]);      uint32_t Best_Cost = 0xf0000000;
1094                          field +=      Last_Cost += Dist0;
1095                                  ABS(data[blocks[i + 1] + 64 + lines[i + 1] + j] -  
1096                                          data[blocks[i] + 64 + lines[i] + j]);      if ((uint32_t)(Level1+1)<3)                 /* very specialized loop for -1,0,+1 */
1097                          field +=      {
1098                                  ABS(data[blocks[i + 1] + 64 + lines[i + 1] + 8 + j] -          int dQ;
1099                                          data[blocks[i] + 64 + lines[i] + 8 + j]);                  int Run;
1100          uint32_t Cost0;
1101    
1102          if (AC<0) {
1103            Nodes[i].Level = -1;
1104            dQ = Lev0 + AC;
1105          } else {
1106            Nodes[i].Level = 1;
1107            dQ = Lev0 - AC;
1108                  }                  }
1109                    Cost0 = Lambda*dQ*dQ;
1110    
1111          Nodes[i].Run = 1;
1112          Best_Cost = (Code_Len20[0]<<16) + Run_Costs[i-1]+Cost0;
1113          for(Run=i-Run_Start; Run>0; --Run)
1114          {
1115            const uint32_t Cost_Base = Cost0 + Run_Costs[i-Run];
1116            const uint32_t Cost = Cost_Base + (Code_Len20[Run-1]<<16);
1117            const uint32_t lCost = Cost_Base + (Code_Len24[Run-1]<<16);
1118    
1119              /*
1120                       * TODO: what about tie-breaks? Should we favor short runs or
1121                       * long runs? Although the error is the same, it would not be
1122                       * spread the same way along high and low frequencies...
1123                       */
1124            if (Cost<Best_Cost) {
1125              Best_Cost    = Cost;
1126              Nodes[i].Run = Run;
1127          }          }
1128    
1129          if (frame > field) {          if (lCost<Last_Cost) {
1130                  MBFrameToField(data);            Last_Cost  = lCost;
1131              Last.Run   = Run;
1132              Last_Node  = i;
1133            }
1134          }          }
1135          if (Last_Node==i)
1136                            Last.Level = Nodes[i].Level;
1137    
1138          return (frame > field);        if (DBG==1) {
1139            Run_Costs[i] = Best_Cost;
1140            printf( "Costs #%2d: ", i);
1141            for(j=-1;j<=Non_Zero;++j) {
1142              if (j==Run_Start)            printf( " %3.0d|", Run_Costs[j]>>12 );
1143              else if (j>Run_Start && j<i) printf( " %3.0d|", Run_Costs[j]>>12 );
1144              else if (j==i)               printf( "(%3.0d)", Run_Costs[j]>>12 );
1145              else                         printf( "  - |" );
1146  }  }
1147            printf( "<%3.0d %2d %d>", Min_Cost>>12, Nodes[i].Level, Nodes[i].Run );
1148            printf( "  Last:#%2d {%3.0d %2d %d}", Last_Node, Last_Cost>>12, Last.Level, Last.Run );
1149            printf( " AC:%3.0d Dist0:%3d Dist(%d)=%d", AC, Dist0>>12, Nodes[i].Level, Cost0>>12 );
1150            printf( "\n" );
1151          }
1152        }
1153        else                      /* "big" levels */
1154        {
1155          const uint8_t *Tbl_L1, *Tbl_L2, *Tbl_L1_Last, *Tbl_L2_Last;
1156          int Level2;
1157          int dQ1, dQ2;
1158          int Run;
1159                    uint32_t Dist1,Dist2;
1160                    int dDist21;
1161    
1162              if (Level1>1) {
1163            dQ1 = Level1*Mult-AC + Bias;
1164            dQ2 = dQ1 - Mult;
1165            Level2 = Level1-1;
1166            Tbl_L1      = (Level1<=24) ? B16_17_Code_Len[Level1-1]     : Code_Len0;
1167            Tbl_L2      = (Level2<=24) ? B16_17_Code_Len[Level2-1]     : Code_Len0;
1168            Tbl_L1_Last = (Level1<=6) ? B16_17_Code_Len_Last[Level1-1] : Code_Len0;
1169            Tbl_L2_Last = (Level2<=6) ? B16_17_Code_Len_Last[Level2-1] : Code_Len0;
1170          } else { /* Level1<-1 */
1171            dQ1 = Level1*Mult-AC - Bias;
1172            dQ2 = dQ1 + Mult;
1173            Level2 = Level1 + 1;
1174            Tbl_L1      = (Level1>=-24) ? B16_17_Code_Len[Level1^-1]      : Code_Len0;
1175            Tbl_L2      = (Level2>=-24) ? B16_17_Code_Len[Level2^-1]      : Code_Len0;
1176            Tbl_L1_Last = (Level1>=- 6) ? B16_17_Code_Len_Last[Level1^-1] : Code_Len0;
1177            Tbl_L2_Last = (Level2>=- 6) ? B16_17_Code_Len_Last[Level2^-1] : Code_Len0;
1178          }
1179          Dist1 = Lambda*dQ1*dQ1;
1180          Dist2 = Lambda*dQ2*dQ2;
1181          dDist21 = Dist2-Dist1;
1182    
1183          for(Run=i-Run_Start; Run>0; --Run)
1184          {
1185            const uint32_t Cost_Base = Dist1 + Run_Costs[i-Run];
1186            uint32_t Cost1, Cost2;
1187            int bLevel;
1188    
1189  /* deinterlace Y blocks vertically */  /*
1190     * for sub-optimal (but slightly worth it, speed-wise) search, uncomment the following:
1191     *        if (Cost_Base>=Best_Cost) continue;
1192     */
1193            Cost1 = Cost_Base + (Tbl_L1[Run-1]<<16);
1194            Cost2 = Cost_Base + (Tbl_L2[Run-1]<<16) + dDist21;
1195    
1196  #define MOVLINE(X,Y) memcpy(X, Y, sizeof(tmp))          if (Cost2<Cost1) {
1197  #define LINE(X,Y)    &data[X*64 + Y*8]                           Cost1 = Cost2;
1198                             bLevel = Level2;
1199                      } else
1200                             bLevel = Level1;
1201    
1202  void          if (Cost1<Best_Cost) {
1203  MBFrameToField(int16_t data[6 * 64])            Best_Cost = Cost1;
1204  {            Nodes[i].Run   = Run;
1205          int16_t tmp[8];            Nodes[i].Level = bLevel;
1206            }
1207    
1208          /* left blocks */          Cost1 = Cost_Base + (Tbl_L1_Last[Run-1]<<16);
1209            Cost2 = Cost_Base + (Tbl_L2_Last[Run-1]<<16) + dDist21;
1210    
1211          // 1=2, 2=4, 4=8, 8=1          if (Cost2<Cost1) {
1212          MOVLINE(tmp, LINE(0, 1));                           Cost1 = Cost2;
1213          MOVLINE(LINE(0, 1), LINE(0, 2));                           bLevel = Level2;
1214          MOVLINE(LINE(0, 2), LINE(0, 4));                    } else
1215          MOVLINE(LINE(0, 4), LINE(2, 0));                           bLevel = Level1;
         MOVLINE(LINE(2, 0), tmp);  
1216    
1217          // 3=6, 6=12, 12=9, 9=3          if (Cost1<Last_Cost) {
1218          MOVLINE(tmp, LINE(0, 3));            Last_Cost  = Cost1;
1219          MOVLINE(LINE(0, 3), LINE(0, 6));            Last.Run   = Run;
1220          MOVLINE(LINE(0, 6), LINE(2, 4));            Last.Level = bLevel;
1221          MOVLINE(LINE(2, 4), LINE(2, 1));            Last_Node  = i;
1222          MOVLINE(LINE(2, 1), tmp);          }
1223          } /* end of "for Run" */
1224    
1225          // 5=10, 10=5        if (DBG==1) {
1226          MOVLINE(tmp, LINE(0, 5));          Run_Costs[i] = Best_Cost;
1227          MOVLINE(LINE(0, 5), LINE(2, 2));          printf( "Costs #%2d: ", i);
1228          MOVLINE(LINE(2, 2), tmp);          for(j=-1;j<=Non_Zero;++j) {
1229              if (j==Run_Start)            printf( " %3.0d|", Run_Costs[j]>>12 );
1230              else if (j>Run_Start && j<i) printf( " %3.0d|", Run_Costs[j]>>12 );
1231              else if (j==i)               printf( "(%3.0d)", Run_Costs[j]>>12 );
1232              else                         printf( "  - |" );
1233            }
1234            printf( "<%3.0d %2d %d>", Min_Cost>>12, Nodes[i].Level, Nodes[i].Run );
1235            printf( "  Last:#%2d {%3.0d %2d %d}", Last_Node, Last_Cost>>12, Last.Level, Last.Run );
1236            printf( " AC:%3.0d Dist0:%3d Dist(%2d):%3d Dist(%2d):%3d", AC, Dist0>>12, Level1, Dist1>>12, Level2, Dist2>>12 );
1237            printf( "\n" );
1238          }
1239        }
1240    
1241          // 7=14, 14=13, 13=11, 11=7      Run_Costs[i] = Best_Cost;
         MOVLINE(tmp, LINE(0, 7));  
         MOVLINE(LINE(0, 7), LINE(2, 6));  
         MOVLINE(LINE(2, 6), LINE(2, 5));  
         MOVLINE(LINE(2, 5), LINE(2, 3));  
         MOVLINE(LINE(2, 3), tmp);  
1242    
1243          /* right blocks */      if (Best_Cost < Min_Cost + Dist0) {
1244          Min_Cost = Best_Cost;
1245          Run_Start = i;
1246        }
1247        else
1248        {
1249            /*
1250                     * as noticed by Michael Niedermayer (michaelni at gmx.at), there's
1251                     * a code shorter by 1 bit for a larger run (!), same level. We give
1252                     * it a chance by not moving the left barrier too much.
1253                     */
1254    
1255          // 1=2, 2=4, 4=8, 8=1        while( Run_Costs[Run_Start]>Min_Cost+(1<<16) )
1256          MOVLINE(tmp, LINE(1, 1));          Run_Start++;
         MOVLINE(LINE(1, 1), LINE(1, 2));  
         MOVLINE(LINE(1, 2), LINE(1, 4));  
         MOVLINE(LINE(1, 4), LINE(3, 0));  
         MOVLINE(LINE(3, 0), tmp);  
1257    
1258          // 3=6, 6=12, 12=9, 9=3          /* spread on preceding coeffs the cost incurred by skipping this one */
1259          MOVLINE(tmp, LINE(1, 3));        for(j=Run_Start; j<i; ++j) Run_Costs[j] += Dist0;
1260          MOVLINE(LINE(1, 3), LINE(1, 6));        Min_Cost += Dist0;
1261          MOVLINE(LINE(1, 6), LINE(3, 4));      }
1262          MOVLINE(LINE(3, 4), LINE(3, 1));    }
         MOVLINE(LINE(3, 1), tmp);  
1263    
1264          // 5=10, 10=5    if (DBG) {
1265          MOVLINE(tmp, LINE(1, 5));      Last_Cost = Evaluate_Cost(Out,Mult,Bias, Zigzag,Non_Zero, Lambda);
1266          MOVLINE(LINE(1, 5), LINE(3, 2));      if (DBG==1) {
1267          MOVLINE(LINE(3, 2), tmp);        printf( "=> " );
1268          for(i=0; i<=Non_Zero; ++i) printf( "[%3.0d] ", Out[Zigzag[i]] );
1269          printf( "\n" );
1270       }
1271      }
1272    
1273          // 7=14, 14=13, 13=11, 11=7    if (Last_Node<0)
1274          MOVLINE(tmp, LINE(1, 7));      return -1;
1275          MOVLINE(LINE(1, 7), LINE(3, 6));  
1276          MOVLINE(LINE(3, 6), LINE(3, 5));         /* reconstruct optimal sequence backward with surviving paths */
1277          MOVLINE(LINE(3, 5), LINE(3, 3));    memset(Out, 0x00, 64*sizeof(*Out));
1278          MOVLINE(LINE(3, 3), tmp);    Out[Zigzag[Last_Node]] = Last.Level;
1279      i = Last_Node - Last.Run;
1280      while(i>=0) {
1281        Out[Zigzag[i]] = Nodes[i].Level;
1282        i -= Nodes[i].Run;
1283      }
1284    
1285      if (DBG) {
1286        uint32_t Cost = Evaluate_Cost(Out,Mult,Bias, Zigzag,Non_Zero, Lambda);
1287        if (DBG==1) {
1288          printf( "<= " );
1289          for(i=0; i<=Last_Node; ++i) printf( "[%3.0d] ", Out[Zigzag[i]] );
1290          printf( "\n--------------------------------\n" );
1291        }
1292        if (Cost>Last_Cost) printf( "!!! %u > %u\n", Cost, Last_Cost );
1293      }
1294      return Last_Node;
1295  }  }
1296    
1297    #undef DBG
1298    
1299    #endif

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.21.2.14

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