[svn] / branches / dev-api-4 / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/src/encoder.c

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

trunk/xvidcore/src/encoder.c revision 194, Sun Jun 9 23:30:50 2002 UTC branches/dev-api-4/xvidcore/src/encoder.c revision 914, Mon Mar 10 00:38:49 2003 UTC
# Line 26  Line 26 
26   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
27   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
28   *   *
29   ****************************************************************************/   *  $Id: encoder.c,v 1.95.2.3 2003-03-10 00:38:49 edgomez Exp $
   
 /*****************************************************************************  
  *  
  *  History  
  *  
  *  08.05.2002 fix some problem in DEBUG mode;  
  *             MinChen <chenm001@163.com>  
  *  14.04.2002 added FrameCodeB()  
  *  
  *  $Id: encoder.c,v 1.40 2002-06-09 23:30:50 edgomez Exp $  
30   *   *
31   ****************************************************************************/   ****************************************************************************/
32    
33  #include <stdlib.h>  #include <stdlib.h>
34  #include <stdio.h>  #include <stdio.h>
35  #include <math.h>  #include <math.h>
36    #include <string.h>
37    
38  #include "encoder.h"  #include "encoder.h"
39  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
40  #include "global.h"  #include "global.h"
41  #include "utils/timer.h"  #include "utils/timer.h"
42  #include "image/image.h"  #include "image/image.h"
43    #include "image/font.h"
44    #include "motion/sad.h"
45  #include "motion/motion.h"  #include "motion/motion.h"
46  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
47  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 65  Line 58 
58   * Local macros   * Local macros
59   ****************************************************************************/   ****************************************************************************/
60    
61  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  #define SWAP(_T_,A,B)    { _T_ tmp = A; A = B; B = tmp; }
 #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }  
62    
63  /*****************************************************************************  /*****************************************************************************
64   * Local function prototypes   * Local function prototypes
65   ****************************************************************************/   ****************************************************************************/
66    
67  static int FrameCodeI(Encoder * pEnc,  static int FrameCodeI(Encoder * pEnc,
68                        Bitstream * bs,                                            Bitstream * bs);
                       uint32_t *pBits);  
69    
70  static int FrameCodeP(Encoder * pEnc,  static int FrameCodeP(Encoder * pEnc,
71                        Bitstream * bs,                        Bitstream * bs,
                       uint32_t *pBits,  
72                        bool force_inter,                        bool force_inter,
73                        bool vol_header);                        bool vol_header);
74    
 #ifdef BFRAMES  
75  static void FrameCodeB(Encoder * pEnc,  static void FrameCodeB(Encoder * pEnc,
76                         FRAMEINFO * frame,                         FRAMEINFO * frame,
77                         Bitstream * bs,                                             Bitstream * bs);
                        uint32_t *pBits);  
 #endif  
78    
79  /*****************************************************************************  /*****************************************************************************
80   * Local data   * Local data
81   ****************************************************************************/   ****************************************************************************/
82    
83  static int DQtab[4] =  static int DQtab[4] = {
 {  
84          -1, -2, 1, 2          -1, -2, 1, 2
85  };  };
86    
87  static int iDQtab[5] =  static int iDQtab[5] = {
 {  
88          1, 0, NO_CHANGE, 2, 3          1, 0, NO_CHANGE, 2, 3
89  };  };
90    
91    
 static void __inline image_null(IMAGE * image)  
 {  
         image->y = image->u = image->v = NULL;  
 }  
   
   
92  /*****************************************************************************  /*****************************************************************************
93   * Encoder creation   * Encoder creation
94   *   *
# Line 121  Line 100 
100   * and cleaning code.   * and cleaning code.
101   *   *
102   * Returned values :   * Returned values :
103   *    - XVID_ERR_OK     - no errors   *    - 0                - no errors
104   *    - XVID_ERR_MEMORY - the libc could not allocate memory, the function   *    - XVID_ERR_MEMORY - the libc could not allocate memory, the function
105   *                        cleans the structure before exiting.   *                        cleans the structure before exiting.
106   *                        pParam->handle is also set to NULL.   *                        pParam->handle is also set to NULL.
107   *   *
108   ****************************************************************************/   ****************************************************************************/
109    
 int  
 encoder_create(XVID_ENC_PARAM * pParam)  
 {  
         Encoder *pEnc;  
         uint32_t i;  
   
         pParam->handle = NULL;  
   
         ENC_CHECK(pParam);  
   
         ENC_CHECK(pParam->width > 0 && pParam->width <= 1920);  
         ENC_CHECK(pParam->height > 0 && pParam->height <= 1280);  
         ENC_CHECK(!(pParam->width % 2));  
         ENC_CHECK(!(pParam->height % 2));  
   
         /* Fps */  
   
         if (pParam->fincr <= 0 || pParam->fbase <= 0)  
         {  
                 pParam->fincr = 1;  
                 pParam->fbase = 25;  
         }  
   
110          /*          /*
111           * Simplify the "fincr/fbase" fraction           * Simplify the "fincr/fbase" fraction
          * (neccessary, since windows supplies us with huge numbers)  
112           */           */
113    static void
114          i = pParam->fincr;  simplify_time(int *inc, int *base)
         while (i > 1)  
         {  
                 if (pParam->fincr % i == 0 && pParam->fbase % i == 0)  
115                  {                  {
116                          pParam->fincr /= i;          /* common factor */
117                          pParam->fbase /= i;          int i = *inc;
118                          i = pParam->fincr;          while (i > 1) {
119                    if (*inc % i == 0 && *base % i == 0) {
120                            *inc /= i;
121                            *base /= i;
122                            i = *inc;
123                          continue;                          continue;
124                  }                  }
125                  i--;                  i--;
126          }          }
127    
128          if (pParam->fbase > 65535)          /* if neccessary, round to 65535 accuracy */
129          {          if (*base > 65535) {
130                  float div = (float)pParam->fbase / 65535;                  float div = (float) *base / 65535;
131                  pParam->fbase = (int)(pParam->fbase / div);                  *base = (int) (*base / div);
132                  pParam->fincr = (int)(pParam->fincr / div);                  *inc = (int) (*inc / div);
133            }
134          }          }
135    
         /* Bitrate allocator defaults */  
136    
137          if (pParam->rc_bitrate <= 0)  int
138                  pParam->rc_bitrate = 900000;  enc_create(xvid_enc_create_t * create, xvid_enc_rc_t * rc)
139    {
140            Encoder *pEnc;
141        int n;
142    
143            if (XVID_MAJOR(create->version) != 1 || (rc && XVID_MAJOR(rc->version) != 1))   /* v1.x.x */
144                    return XVID_ERR_VERSION;
145    
146            if (create->width%2 || create->height%2)
147                    return XVID_ERR_FAIL;
148    
149          if (pParam->rc_reaction_delay_factor <= 0)          /* allocate encoder struct */
                 pParam->rc_reaction_delay_factor = 16;  
150    
151          if (pParam->rc_averaging_period <= 0)          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
152                  pParam->rc_averaging_period = 100;          if (pEnc == NULL)
153                    return XVID_ERR_MEMORY;
154            memset(pEnc, 0, sizeof(Encoder));
155    
156          if (pParam->rc_buffer <= 0)          /* global flags */
157                  pParam->rc_buffer = 100;      pEnc->mbParam.global_flags = create->global;
158    
159          /* Max and min quantizers */      /* width, height */
160            pEnc->mbParam.width = create->width;
161            pEnc->mbParam.height = create->height;
162            pEnc->mbParam.mb_width = (pEnc->mbParam.width + 15) / 16;
163            pEnc->mbParam.mb_height = (pEnc->mbParam.height + 15) / 16;
164            pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;
165            pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;
166    
167          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))      /* framerate */
168                  pParam->min_quantizer = 1;      pEnc->mbParam.fincr = MAX(create->fincr, 0);
169            pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;
170            simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);
171    
172          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))          /* bframes */
173                  pParam->max_quantizer = 31;          pEnc->mbParam.max_bframes = MAX(create->max_bframes, 0);
174            pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);
175            pEnc->mbParam.bquant_offset = create->bquant_offset;
176    
177          if (pParam->max_quantizer < pParam->min_quantizer)          /* frame drop ratio */
178                  pParam->max_quantizer = pParam->min_quantizer;          pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);
179    
180          /* 1 keyframe each 10 seconds */      /* max keyframe interval */
181        pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <=0 ? 250 : create->max_key_interval;
182        /*XXX: replace 250 hard code with "10seconds * framerate" */
183    
184          if (pParam->max_key_interval == 0)          /* Bitrate allocator defaults
                 pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;  
185    
186            if (create->rc_bitrate <= 0)
187                    create->rc_bitrate = 900000;
188    
189          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          if (create->rc_reaction_delay_factor <= 0)
190          if (pEnc == NULL)                  create->rc_reaction_delay_factor = 16;
                 return XVID_ERR_MEMORY;  
191    
192          /* Fill members of Encoder structure */          if (create->rc_averaging_period <= 0)
193                    create->rc_averaging_period = 100;
194    
195          pEnc->mbParam.width = pParam->width;          if (create->rc_buffer <= 0)
196          pEnc->mbParam.height = pParam->height;                  create->rc_buffer = 100;
197    
         pEnc->mbParam.mb_width = (pEnc->mbParam.width + 15) / 16;  
         pEnc->mbParam.mb_height = (pEnc->mbParam.height + 15) / 16;  
198    
         pEnc->mbParam.edged_width  = 16*pEnc->mbParam.mb_width  + 2*EDGE_SIZE;  
         pEnc->mbParam.edged_height = 16*pEnc->mbParam.mb_height + 2*EDGE_SIZE;  
199    
200          pEnc->mbParam.fbase = pParam->fbase;          if ((create->min_quantizer <= 0) || (create->min_quantizer > 31))
201          pEnc->mbParam.fincr = pParam->fincr;                  create->min_quantizer = 1;
202    
203          pEnc->sStat.fMvPrevSigma = -1;          if ((create->max_quantizer <= 0) || (create->max_quantizer > 31))
204                    create->max_quantizer = 31;
205    
206          /* Fill rate control parameters */          if (create->max_quantizer < create->min_quantizer)
207                    create->max_quantizer = create->min_quantizer;
208    
209          pEnc->bitrate = pParam->rc_bitrate;          pEnc->bitrate = create->rc_bitrate; */
210    
         pEnc->iFrameNum = 0;  
         pEnc->iMaxKeyInterval = pParam->max_key_interval;  
211    
212          /* try to allocate frame memory */      /* allocate working frame-image memory */
213    
214          pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);          pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
215          pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);          pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
# Line 242  Line 217 
217          if ( pEnc->current == NULL || pEnc->reference == NULL)          if ( pEnc->current == NULL || pEnc->reference == NULL)
218                  goto xvid_err_memory1;                  goto xvid_err_memory1;
219    
220          /* try to allocate mb memory */          /* allocate macroblock memory */
221    
222          pEnc->current->mbs = xvid_malloc(sizeof(MACROBLOCK) * \          pEnc->current->mbs =
223                                           pEnc->mbParam.mb_width * \                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
224                                           pEnc->mbParam.mb_height,                                          pEnc->mbParam.mb_height, CACHE_LINE);
225                                           CACHE_LINE);          pEnc->reference->mbs =
226          pEnc->reference->mbs = xvid_malloc(sizeof(MACROBLOCK) * \                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
227                                             pEnc->mbParam.mb_width * \                                          pEnc->mbParam.mb_height, CACHE_LINE);
                                            pEnc->mbParam.mb_height,  
                                            CACHE_LINE);  
228    
229          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
230                  goto xvid_err_memory2;                  goto xvid_err_memory2;
231    
232          /* try to allocate image memory */          /* allocate interpolation image memory */
233    
234  #ifdef _DEBUG          if (create->global & XVID_EXTRASTATS_ENABLE)
235          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
236  #endif  
 #ifdef BFRAMES  
237          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
238          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
239          image_null(&pEnc->f_refhv);          image_null(&pEnc->f_refhv);
240  #endif  
241          image_null(&pEnc->current->image);          image_null(&pEnc->current->image);
242          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
243          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
# Line 274  Line 246 
246          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
247          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
248    
249  #ifdef _DEBUG          if (create->global & XVID_EXTRASTATS_ENABLE)
250          if (image_create(&pEnc->sOriginal,          {       if (image_create
251                           pEnc->mbParam.edged_width,                          (&pEnc->sOriginal, pEnc->mbParam.edged_width,
252                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
253                  goto xvid_err_memory3;                  goto xvid_err_memory3;
254  #endif          }
255  #ifdef BFRAMES  
256          if (image_create(&pEnc->f_refh,          if (image_create
257                           pEnc->mbParam.edged_width,                  (&pEnc->f_refh, pEnc->mbParam.edged_width,
258                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
259                  goto xvid_err_memory3;                  goto xvid_err_memory3;
260          if (image_create(&pEnc->f_refv,          if (image_create
261                           pEnc->mbParam.edged_width,                  (&pEnc->f_refv, pEnc->mbParam.edged_width,
262                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
263                  goto xvid_err_memory3;                  goto xvid_err_memory3;
264          if (image_create(&pEnc->f_refhv,          if (image_create
265                           pEnc->mbParam.edged_width,                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,
266                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
267                  goto xvid_err_memory3;                  goto xvid_err_memory3;
268  #endif  
269          if (image_create(&pEnc->current->image,          if (image_create
270                           pEnc->mbParam.edged_width,                  (&pEnc->current->image, pEnc->mbParam.edged_width,
271                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
272                  goto xvid_err_memory3;                  goto xvid_err_memory3;
273          if (image_create(&pEnc->reference->image,          if (image_create
274                           pEnc->mbParam.edged_width,                  (&pEnc->reference->image, pEnc->mbParam.edged_width,
275                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
276                  goto xvid_err_memory3;                  goto xvid_err_memory3;
277          if (image_create(&pEnc->vInterH,          if (image_create
278                           pEnc->mbParam.edged_width,                  (&pEnc->vInterH, pEnc->mbParam.edged_width,
279                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
280                  goto xvid_err_memory3;                  goto xvid_err_memory3;
281          if (image_create(&pEnc->vInterV,          if (image_create
282                           pEnc->mbParam.edged_width,                  (&pEnc->vInterV, pEnc->mbParam.edged_width,
283                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
284                  goto xvid_err_memory3;                  goto xvid_err_memory3;
285          if (image_create(&pEnc->vInterVf,          if (image_create
286                           pEnc->mbParam.edged_width,                  (&pEnc->vInterVf, pEnc->mbParam.edged_width,
287                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
288                  goto xvid_err_memory3;                  goto xvid_err_memory3;
289          if (image_create(&pEnc->vInterHV,          if (image_create
290                           pEnc->mbParam.edged_width,                  (&pEnc->vInterHV, pEnc->mbParam.edged_width,
291                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
292                  goto xvid_err_memory3;                  goto xvid_err_memory3;
293          if (image_create(&pEnc->vInterHVf,          if (image_create
294                           pEnc->mbParam.edged_width,                  (&pEnc->vInterHVf, pEnc->mbParam.edged_width,
295                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
296                  goto xvid_err_memory3;                  goto xvid_err_memory3;
297    
298    /* Create full bitplane for GMC, this might be wasteful */
299            if (image_create
300                    (&pEnc->vGMC, pEnc->mbParam.edged_width,
301                     pEnc->mbParam.edged_height) < 0)
302                    goto xvid_err_memory3;
303    
304            /* init bframe image buffers */
305    
306          /* B Frames specific init */          pEnc->bframenum_head = 0;
307  #ifdef BFRAMES          pEnc->bframenum_tail = 0;
308            pEnc->flush_bframes = 0;
309            pEnc->closed_bframenum = -1;
310    
311          pEnc->mbParam.max_bframes = pParam->max_bframes;          /* B Frames specific init */
         pEnc->bquant_ratio = pParam->bquant_ratio;  
312          pEnc->bframes = NULL;          pEnc->bframes = NULL;
313    
314          if (pEnc->mbParam.max_bframes > 0)          if (pEnc->mbParam.max_bframes > 0) {
         {  
                 int n;  
315    
316                  pEnc->bframes = xvid_malloc(pEnc->mbParam.max_bframes * \                  pEnc->bframes =
317                                              sizeof(FRAMEINFO *),                          xvid_malloc(pEnc->mbParam.max_bframes * sizeof(FRAMEINFO *),
318                                              CACHE_LINE);                                              CACHE_LINE);
319    
320                  if (pEnc->bframes == NULL)                  if (pEnc->bframes == NULL)
# Line 347  Line 324 
324                          pEnc->bframes[n] = NULL;                          pEnc->bframes[n] = NULL;
325    
326    
327                  for (n = 0; n < pEnc->mbParam.max_bframes; n++)                  for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
328                  {                          pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
                         pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO),  
                                                        CACHE_LINE);  
329    
330                          if (pEnc->bframes[n] == NULL)                          if (pEnc->bframes[n] == NULL)
331                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
332    
333                          pEnc->bframes[n]->mbs = xvid_malloc(sizeof(MACROBLOCK) * \                          pEnc->bframes[n]->mbs =
334                                                              pEnc->mbParam.mb_width * \                                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
335                                                              pEnc->mbParam.mb_height,                                                          pEnc->mbParam.mb_height, CACHE_LINE);
                                                             CACHE_LINE);  
336    
337                          if (pEnc->bframes[n]->mbs == NULL)                          if (pEnc->bframes[n]->mbs == NULL)
338                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
339    
340                          image_null(&pEnc->bframes[n]->image);                          image_null(&pEnc->bframes[n]->image);
341    
342                          if (image_create(&pEnc->bframes[n]->image,                          if (image_create
343                                           pEnc->mbParam.edged_width,                                  (&pEnc->bframes[n]->image, pEnc->mbParam.edged_width,
344                                           pEnc->mbParam.edged_height) < 0)                                           pEnc->mbParam.edged_height) < 0)
345                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
346    
347                  }                  }
348          }          }
349    
350          pEnc->bframenum_head = 0;      /* init incoming frame queue */
351          pEnc->bframenum_tail = 0;          pEnc->queue_head = 0;
352          pEnc->flush_bframes = 0;          pEnc->queue_tail = 0;
353            pEnc->queue_size = 0;
354    
355          pEnc->mbParam.m_seconds = 0;          pEnc->queue =
356          pEnc->mbParam.m_ticks = 0;                  xvid_malloc((pEnc->mbParam.max_bframes+1) * sizeof(QUEUEINFO),
357  #endif                                          CACHE_LINE);
358    
359          pParam->handle = (void *)pEnc;          if (pEnc->queue == NULL)
360                    goto xvid_err_memory4;
361    
362            for (n = 0; n < pEnc->mbParam.max_bframes+1; n++)
363                    image_null(&pEnc->queue[n].image);
364    
365          if (pParam->rc_bitrate)  
366            for (n = 0; n < pEnc->mbParam.max_bframes+1; n++)
367          {          {
368                  RateControlInit(&pEnc->rate_control,                  if (image_create
369                                  pParam->rc_bitrate,                          (&pEnc->queue[n].image, pEnc->mbParam.edged_width,
370                                  pParam->rc_reaction_delay_factor,                           pEnc->mbParam.edged_height) < 0)
371                                  pParam->rc_averaging_period,                          goto xvid_err_memory5;
372                                  pParam->rc_buffer,  
                                 pParam->fbase * 1000 / pParam->fincr,  
                                 pParam->max_quantizer,  
                                 pParam->min_quantizer);  
373          }          }
374    
375    
376            /* timestamp stuff */
377    
378            pEnc->mbParam.m_stamp = 0;
379            pEnc->m_framenum = 0;
380            pEnc->current->stamp = 0;
381            pEnc->reference->stamp = 0;
382    
383            /* other stuff */
384    
385            pEnc->iFrameNum = 0;
386            pEnc->fMvPrevSigma = -1;
387    
388        /* XXX: cleanup ratecontol when new code is ready */
389    /*      if (create->rc_bitrate) {
390                    RateControlInit(&pEnc->rate_control, create->rc_bitrate,
391                                                    create->rc_reaction_delay_factor,
392                                                    create->rc_averaging_period, create->rc_buffer,
393                                                    create->fbase * 1000 / create->fincr,
394                                                    create->max_quantizer, create->min_quantizer);
395            } */
396    
397        create->handle = (void *) pEnc;
398    
399          init_timer();          init_timer();
400    
401          return XVID_ERR_OK;      return 0;   /* ok */
402    
403          /*          /*
404           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
405           */           */
406  #ifdef BFRAMES  
407      xvid_err_memory5:
408    
409            if (pEnc->mbParam.max_bframes > 0) {
410            int i;
411    
412                    for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {
413                            image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,
414                                                      pEnc->mbParam.edged_height);
415                    }
416                    xvid_free(pEnc->queue);
417            }
418    
419   xvid_err_memory4:   xvid_err_memory4:
         for (i=0; i<pEnc->mbParam.max_bframes; i++)  
         {  
420    
421                  if (pEnc->bframes[i] == NULL) continue;          if (pEnc->mbParam.max_bframes > 0) {
422            int i;
423    
424                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
425    
426                  image_destroy(&pEnc->bframes[i]->image,                          if (pEnc->bframes[i] == NULL)
427                                pEnc->mbParam.edged_width,                                  continue;
428    
429                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
430                                pEnc->mbParam.edged_height);                                pEnc->mbParam.edged_height);
431    
432                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
# Line 420  Line 436 
436          }          }
437    
438          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
439            }
 #endif  
440    
441   xvid_err_memory3:   xvid_err_memory3:
442  #ifdef _DEBUG  
443          image_destroy(&pEnc->sOriginal,          if (pEnc->mbParam.global_flags & XVID_EXTRASTATS_ENABLE)
444                        pEnc->mbParam.edged_width,          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
445                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
446  #endif          }
447    
448  #ifdef BFRAMES          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
         image_destroy(&pEnc->f_refh,  
                       pEnc->mbParam.edged_width,  
449                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
450          image_destroy(&pEnc->f_refv,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
451                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
452          image_destroy(&pEnc->f_refhv,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
453                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
 #endif  
454    
455          image_destroy(&pEnc->current->image,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
456                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
457          image_destroy(&pEnc->reference->image,          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
458                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
459          image_destroy(&pEnc->vInterH,          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
460                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
461          image_destroy(&pEnc->vInterV,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
462                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
463          image_destroy(&pEnc->vInterVf,          image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
464                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
465          image_destroy(&pEnc->vInterHV,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
466                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
467          image_destroy(&pEnc->vInterHVf,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
468                        pEnc->mbParam.edged_width,                                    pEnc->mbParam.edged_height);
469    
470    /* destroy GMC image */
471            image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
472                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
473    
474    
475   xvid_err_memory2:   xvid_err_memory2:
476          xvid_free(pEnc->current->mbs);          xvid_free(pEnc->current->mbs);
477          xvid_free(pEnc->reference->mbs);          xvid_free(pEnc->reference->mbs);
# Line 473  Line 481 
481          xvid_free(pEnc->reference);          xvid_free(pEnc->reference);
482          xvid_free(pEnc);          xvid_free(pEnc);
483    
484          pParam->handle = NULL;          create->handle = NULL;
485    
486          return XVID_ERR_MEMORY;          return XVID_ERR_MEMORY;
487  }  }
# Line 482  Line 490 
490   * Encoder destruction   * Encoder destruction
491   *   *
492   * This function destroy the entire encoder structure created by a previous   * This function destroy the entire encoder structure created by a previous
493   * successful encoder_create call.   * successful enc_create call.
494   *   *
495   * Returned values (for now only one returned value) :   * Returned values (for now only one returned value) :
496   *    - XVID_ERR_OK     - no errors   *    - 0     - no errors
497   *   *
498   ****************************************************************************/   ****************************************************************************/
499    
500  int  int
501  encoder_destroy(Encoder * pEnc)  enc_destroy(Encoder * pEnc)
502  {  {
503          ENC_CHECK(pEnc);          int i;
504    
505          /* B Frames specific */          /* B Frames specific */
506  #ifdef BFRAMES          if (pEnc->mbParam.max_bframes > 0) {
         int i;  
507    
508          for (i=0; i<pEnc->mbParam.max_bframes; i++)                  for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {
         {  
509    
510                  if (pEnc->bframes[i] == NULL) continue;                          image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,
511                                              pEnc->mbParam.edged_height);
512                    }
513                    xvid_free(pEnc->queue);
514            }
515    
516                  image_destroy(&pEnc->bframes[i]->image,  
517                                pEnc->mbParam.edged_width,          if (pEnc->mbParam.max_bframes > 0) {
518    
519                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
520    
521                            if (pEnc->bframes[i] == NULL)
522                                    continue;
523    
524                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
525                                pEnc->mbParam.edged_height);                                pEnc->mbParam.edged_height);
526    
527                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
528    
529                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
530          }          }
531    
532          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
533    
534  #endif          }
535    
536          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
537    
538          image_destroy(&pEnc->current->image,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
539                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
540          image_destroy(&pEnc->reference->image,          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
541                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
542          image_destroy(&pEnc->vInterH,          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
543                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
544          image_destroy(&pEnc->vInterV,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
545                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
546          image_destroy(&pEnc->vInterVf,          image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
547                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
548          image_destroy(&pEnc->vInterHV,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
549                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
550          image_destroy(&pEnc->vInterHVf,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
551                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
552  #ifdef BFRAMES  
553          image_destroy(&pEnc->f_refh,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
554                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
555          image_destroy(&pEnc->f_refv,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
556                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
557          image_destroy(&pEnc->f_refhv,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
558                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
559  #endif  
560  #ifdef _DEBUG          if (pEnc->mbParam.global_flags & XVID_EXTRASTATS_ENABLE)
561          image_destroy(&pEnc->sOriginal,          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
562                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
563  #endif          }
564    
565          /* Encoder structure */          /* Encoder structure */
566    
# Line 567  Line 572 
572    
573          xvid_free(pEnc);          xvid_free(pEnc);
574    
575          return XVID_ERR_OK;          return 0;  /* ok */
576    }
577    
578    
579    static __inline void inc_frame_num(Encoder * pEnc)
580    {
581            pEnc->current->stamp = pEnc->mbParam.m_stamp;   /* first frame is zero */
582            pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
583    
584        pEnc->m_framenum++; /* debug ticker */
585    }
586    
587    
588    
589    static __inline void
590    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
591    {
592    
593                    pCur->ticks = (int32_t)pCur->stamp % time_base;
594                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
595    
596                    /* HEAVY DEBUG OUTPUT remove when timecodes prove to be stable */
597    
598    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
599                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
600                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
601                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
602                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
603                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
604    
605    */
606    }
607    
608    
609    static void
610    set_stats(xvid_enc_stats_t * stats, RateControl * rc,
611                      const MBParam * pParam, const FRAMEINFO * frame)
612    {
613            if (stats)
614            {
615                    stats->type = coding2type(frame->coding_type);
616                    stats->quant = frame->quant;
617                    stats->vol_flags = frame->vol_flags;
618                    stats->vop_flags = frame->vop_flags;
619                    stats->length = frame->length;
620                    stats->hlength = frame->length - (frame->sStat.iTextBits / 8);
621                    stats->kblks = frame->sStat.kblks;
622                    stats->mblks = frame->sStat.mblks;
623                    stats->ublks = frame->sStat.ublks;
624            }
625    
626            RateControlUpdate(rc, frame->quant, frame->length, frame->coding_type==I_VOP );
627  }  }
628    
629    
630    
631  /*****************************************************************************  /*****************************************************************************
632   * Frame encoder entry point   * IPB frame encoder entry point
  *  
  * At this moment 2 versions coexist : one for IPB compatible encoder,  
  *                                     another one for the old IP encoder.  
633   *   *
634   * Returned values :   * Returned values :
635   *    - XVID_ERR_OK     - no errors   *    - >0               - output bytes
636     *    - 0                - no output
637     *    - XVID_ERR_VERSION - wrong version passed to core
638     *    - XVID_ERR_END     - End of stream reached before end of coding
639   *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong   *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
640   *                        format   *                        format
641   ****************************************************************************/   ****************************************************************************/
642    
643    
644  #ifdef BFRAMES  /* XXX: dx50bvop broken! something todo with queue */
645  /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
646  int  int
647  encoder_encode(Encoder * pEnc,  enc_encode(Encoder * pEnc,
648                 XVID_ENC_FRAME * pFrame,                             xvid_enc_frame_t * xFrame,
649                 XVID_ENC_STATS * pResult)                             xvid_enc_stats_t * stats)
650  {  {
651            xvid_enc_frame_t * frame;
652            int type;
653          uint16_t x, y;          uint16_t x, y;
654          Bitstream bs;          Bitstream bs;
         uint32_t bits;  
655    
656  #ifdef _DEBUG          if (XVID_MAJOR(xFrame->version) != 1 || (stats && XVID_MAJOR(stats->version) != 1))     /* v1.x.x */
657          float psnr;                  return XVID_ERR_VERSION;
         char temp[128];  
 #endif  
658    
659          ENC_CHECK(pEnc);          xFrame->out_flags = 0;
         ENC_CHECK(pFrame);  
660    
661          start_global_timer();          start_global_timer();
662            BitstreamInit(&bs, xFrame->bitstream, 0);
663    
         BitstreamInit(&bs, pFrame->bitstream, 0);  
664    
665          /*          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
666           * bframe "flush" code           * enqueue image to the encoding-queue
667           */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
668    
669          if ( (pFrame->image == NULL || pEnc->flush_bframes) &&          if (xFrame->input.csp != XVID_CSP_NULL)
              (pEnc->bframenum_head < pEnc->bframenum_tail))  
670          {          {
671                    QUEUEINFO * q = &pEnc->queue[pEnc->queue_tail];
672    
673                  if (pEnc->flush_bframes == 0)                  start_timer();
674                    if (image_input
675                            (&q->image, pEnc->mbParam.width, pEnc->mbParam.height,
676                            pEnc->mbParam.edged_width, (uint8_t**)xFrame->input.plane, xFrame->input.stride,
677                            xFrame->input.csp, xFrame->vol_flags & XVID_INTERLACING))
678                  {                  {
679                          /*                          emms();
680                           * we have reached the end of stream without getting                          return XVID_ERR_FORMAT;
681                           * a future reference frame... so encode last final                  }
682                           * frame as a pframe                  stop_conv_timer();
                          */  
683    
684                          /* ToDo : remove dprintf calls */                  if ((xFrame->vop_flags & XVID_CHROMAOPT)) {
685                          /*                          image_chroma_optimize(&q->image,
686                            dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
687                          */                  }
                         pEnc->bframenum_tail--;  
                         SWAP(pEnc->current, pEnc->reference);  
688    
689                          SWAP(pEnc->current,                  q->frame = *xFrame;
                              pEnc->bframes[pEnc->bframenum_tail]);  
690    
691                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                  if (xFrame->quant_intra_matrix)
692                    {
693                            memcpy(q->quant_intra_matrix, xFrame->quant_intra_matrix, sizeof(xFrame->quant_intra_matrix));
694                            q->frame.quant_intra_matrix = q->quant_intra_matrix;
695                    }
696    
697                          BitstreamPad(&bs);                  if (xFrame->quant_inter_matrix)
698                          pFrame->length = BitstreamLength(&bs);                  {
699                          pFrame->input_consumed = 0;                          memcpy(q->quant_inter_matrix, xFrame->quant_inter_matrix, sizeof(xFrame->quant_inter_matrix));
700                          pFrame->intra = 0;                          q->frame.quant_inter_matrix = q->quant_inter_matrix;
701                    }
702    
703                          return XVID_ERR_OK;                  pEnc->queue_tail = (pEnc->queue_tail + 1) % (pEnc->mbParam.max_bframes+1);
704                    pEnc->queue_size++;
705                  }                  }
706    
                 /* ToDo : remove dprintf calls */  
                 /*  
                   dprintf("--- BFRAME (flush) --- ");  
                 */  
                 FrameCodeB(pEnc,  
                            pEnc->bframes[pEnc->bframenum_head],  
                            &bs,  
                            &bits);  
                 pEnc->bframenum_head++;  
707    
708            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
709             * bframe flush code
710             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
711    
712    repeat:
713    
714                  BitstreamPad(&bs);          if (pEnc->flush_bframes)
715                  pFrame->length = BitstreamLength(&bs);          {
716                  pFrame->input_consumed = 0;                  if (pEnc->bframenum_head < pEnc->bframenum_tail)
717                  pFrame->intra = 0;                  {
718    
719                  return XVID_ERR_OK;                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
720                                            pEnc->bframenum_head, pEnc->bframenum_tail,
721                                            pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
722    
723                            if (pEnc->bframes[pEnc->bframenum_head]->vop_flags & XVID_EXTRASTATS) {
724                                    image_copy(&pEnc->sOriginal, &pEnc->bframes[pEnc->bframenum_head]->image,
725                                                       pEnc->mbParam.edged_width, pEnc->mbParam.height);
726          }          }
727    
728          if (pFrame->image == NULL)                          FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);
729          {  
730                  pFrame->length = 0;                          if (pEnc->bframes[pEnc->bframenum_head]->vop_flags & XVID_EXTRASTATS) {
731                  pFrame->input_consumed = 1;                                  stats->sse_y =
732                  pFrame->intra = 0;                                          plane_sse( pEnc->sOriginal.y, pEnc->bframes[pEnc->bframenum_head]->image.y,
733                                                               pEnc->mbParam.edged_width, pEnc->mbParam.width,
734                                                               pEnc->mbParam.height);
735    
736                  return XVID_ERR_OK;                                  stats->sse_u =
737                                            plane_sse( pEnc->sOriginal.u, pEnc->bframes[pEnc->bframenum_head]->image.u,
738                                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
739                                                               pEnc->mbParam.height/2);
740    
741                                    stats->sse_v =
742                                            plane_sse( pEnc->sOriginal.v, pEnc->bframes[pEnc->bframenum_head]->image.v,
743                                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
744                                                               pEnc->mbParam.height/2);
745          }          }
746    
747          if (pEnc->bframenum_head > 0)                          set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->bframes[pEnc->bframenum_head]);
748          {  
749                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                          pEnc->bframenum_head++;
750    
751    
752                            goto done;
753          }          }
754    
755                    /* flush complete: reset counters */
756    
757          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
758                    pEnc->bframenum_head = pEnc->bframenum_tail = 0;
759    
760          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%                  /* write an empty marker to the bitstream.
          * Well there was a separation here so i put it in ANSI C  
          * comment style :-)  
          * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */  
761    
762          SWAP(pEnc->current, pEnc->reference);                     for divx5 decoder compatibility, this marker must consist
763                       of a not-coded p-vop, with a time_base of zero, and time_increment
764                       indentical to the future-referece frame.
765                    */
766    
767          EMMS();                  if ((pEnc->mbParam.global_flags & XVID_PACKED)) {
768                            int tmp;
769                            int bits;
770    
771          if (pFrame->quant == 0)                          DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
772                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                                  pEnc->bframenum_head, pEnc->bframenum_tail,
773          else                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                 pEnc->current->quant = pFrame->quant;  
774    
775          if(pEnc->current->quant < 1)                          bits = BitstreamPos(&bs);
                 pEnc->current->quant = 1;  
776    
777          if(pEnc->current->quant > 31)                          tmp = pEnc->current->seconds;
778                  pEnc->current->quant = 31;                          pEnc->current->seconds = 0; /* force time_base = 0 */
779    
780          pEnc->current->global_flags = pFrame->general;                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
781          pEnc->current->motion_flags = pFrame->motion;                          BitstreamPad(&bs);
782          pEnc->current->seconds = pEnc->mbParam.m_seconds;                          pEnc->current->seconds = tmp;
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
         /* ToDo : dynamic fcode (in both directions) */  
         pEnc->current->fcode = pEnc->mbParam.m_fcode;  
         pEnc->current->bcode = pEnc->mbParam.m_fcode;  
783    
784          start_timer();                          /* add the not-coded length to the reference frame size */
785          if (image_input(&pEnc->current->image,                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;
786                          pEnc->mbParam.width,                          set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->current);
                         pEnc->mbParam.height,  
                         pEnc->mbParam.edged_width,  
                         pFrame->image,  
                         pFrame->colorspace))  
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
   
 #ifdef _DEBUG  
         image_copy(&pEnc->sOriginal,  
                    &pEnc->current->image,  
                    pEnc->mbParam.edged_width,  
                    pEnc->mbParam.height);  
 #endif  
   
         EMMS();  
   
         /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  
          * Luminance masking  
          * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */  
   
         if ((pEnc->current->global_flags & XVID_LUMIMASKING))  
         {  
                 int *temp_dquants =  
                         (int *) xvid_malloc(pEnc->mbParam.mb_width * \  
                                             pEnc->mbParam.mb_height * \  
                                             sizeof(int),  
                                             CACHE_LINE);  
   
                 pEnc->current->quant =  
                         adaptive_quantization(pEnc->current->image.y,  
                                               pEnc->mbParam.edged_width,  
                                               temp_dquants,  
                                               pEnc->current->quant,  
                                               pEnc->current->quant,  
                                               2*pEnc->current->quant,  
                                               pEnc->mbParam.mb_width,  
                                               pEnc->mbParam.mb_height);  
787    
788                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                          // xFrame->out_flags |= XVID_PACKED_FIXUP?;
                 {  
789    
790                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)                          goto done;
791    
                         for (x = 0; x < pEnc->mbParam.mb_width; x++)  
                         {  
                                 MACROBLOCK *pMB =  
                                         &pEnc->current->mbs[OFFSET(x,y)];  
                                 pMB->dquant =  
                                         iDQtab[temp_dquants[OFFSET(x,y)] + 2];  
792                          }                          }
   
                         #undef OFFSET  
   
793                  }                  }
794    
                 xvid_free(temp_dquants);  
         }  
795    
796          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
797           * ivop/pvop/bvop selection           * dequeue frame from the encoding queue
798           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
799    
800            if (pEnc->queue_size == 0)              /* empty */
         if (pEnc->iFrameNum == 0 ||  
             pFrame->intra   == 1 ||  
   
             (pFrame->intra < 0  &&  
              pEnc->iMaxKeyInterval > 0 &&  
              pEnc->iFrameNum >= pEnc->iMaxKeyInterval) ||  
   
             image_mad(&pEnc->reference->image,  
                       &pEnc->current->image,  
                       pEnc->mbParam.edged_width,  
                       pEnc->mbParam.width,  
                       pEnc->mbParam.height) > 30)  
801          {          {
802                  /*                  if (xFrame->input.csp == XVID_CSP_NULL) /* no futher input */
                  * This will be coded as an Intra Frame  
                  */  
   
                 /* ToDo : Remove dprintf calls */  
                 /*  
                   dprintf("--- IFRAME ---");  
                 */  
   
                 FrameCodeI(pEnc, &bs, &bits);  
   
                 pFrame->intra = 1;  
                 pEnc->flush_bframes = 1;  
   
                 /*  
                  * NB : sequences like "IIBB" decode fine with msfdam but,  
                  *      go screwy with divx 5.00  
                  */  
         }  
         else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes)  
803          {          {
804                  /*                          if (pEnc->bframenum_tail > 0)   /* are bframes */
                  * This will be coded as a Predicted Frame  
                  */  
   
                 /* ToDo : Remove dprintf calls */  
                 /*  
                   dprintf("--- PFRAME ---");  
                 */  
   
                 FrameCodeP(pEnc, &bs, &bits, 1, 0);  
                 pFrame->intra = 0;  
                 pEnc->flush_bframes = 1;  
         }  
         else  
805          {          {
806                  /*                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
807                   * This will be coded as a Bidirectional Frame                                  pEnc->bframenum_tail--;
808                   */                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
   
                 /* ToDo : Remove dprintf calls */  
                 /*  
                   dprintf("--- BFRAME (store) ---  head=%i tail=%i",  
                   pEnc->bframenum_head,  
                   pEnc->bframenum_tail);  
                 */  
   
                 if (pFrame->bquant < 1)  
                 {  
                         pEnc->current->quant =  
                                 ((pEnc->reference->quant+pEnc->current->quant)*\  
                                  pEnc->bquant_ratio) / 200;  
                 }  
                 else  
                 {  
                         pEnc->current->quant = pFrame->bquant;  
                 }  
   
                 /* store frame into bframe buffer & swap ref back to current */  
                 SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);  
                 SWAP(pEnc->current, pEnc->reference);  
   
                 pEnc->bframenum_tail++;  
809    
810                  pFrame->intra = 0;                                  /* XXX: convert B-VOP to P-VOP */
811                  pFrame->length = 0;                                  pEnc->current->quant *= 2;
                 pFrame->input_consumed = 1;  
812    
813                  pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;                                  FrameCodeP(pEnc, &bs, 1, 0);
814                  if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)                                  goto done_flush;
                 {  
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
815                  }                  }
816    
817                  return XVID_ERR_OK;                          emms();
818                            return XVID_ERR_END;    /* end of stream reached */
819          }          }
820                    goto done;      /* nothing to encode yet; encoder lag */
         BitstreamPad(&bs);  
         pFrame->length = BitstreamLength(&bs);  
   
         if (pResult)  
         {  
                 pResult->quant = pEnc->current->quant;  
                 pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits/8);  
                 pResult->kblks = pEnc->sStat.kblks;  
                 pResult->mblks = pEnc->sStat.mblks;  
                 pResult->ublks = pEnc->sStat.ublks;  
821          }          }
822    
823          EMMS();          // the current FRAME becomes the reference
824            SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
825    
826  #ifdef _DEBUG          // remove frame from encoding-queue (head), and move it into the current
827          psnr = image_psnr(&pEnc->sOriginal,          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
828                            &pEnc->current->image,          frame = &pEnc->queue[pEnc->queue_head].frame;
829                            pEnc->mbParam.edged_width,          pEnc->queue_head = (pEnc->queue_head+1) % (pEnc->mbParam.max_bframes+1);
830                            pEnc->mbParam.width,          pEnc->queue_size--;
                           pEnc->mbParam.height);  
831    
         snprintf(temp, 127, "PSNR: %f\n", psnr);  
         DEBUG(temp);  
 #endif  
832    
833          if (pFrame->quant == 0)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
834          {           * init pEnc->current field
835                  RateControlUpdate(&pEnc->rate_control,           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
                                   pEnc->current->quant,  
                                   pFrame->length,  
                                   pFrame->intra);  
         }  
836    
837          pEnc->iFrameNum++;          emms();         /* float-point region */
         pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;  
         if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)  
         {  
                 pEnc->mbParam.m_seconds++;  
                 pEnc->mbParam.m_ticks = 0;  
         }  
         pFrame->input_consumed = 1;  
838    
839          stop_global_timer();      pEnc->current->vol_flags = pEnc->mbParam.vol_flags;
840          write_timer();      pEnc->current->vop_flags = frame->vop_flags;
841            pEnc->current->motion_flags = frame->motion;
842            pEnc->current->fcode = pEnc->mbParam.m_fcode;
843            pEnc->current->bcode = pEnc->mbParam.m_fcode;
844    
845          return XVID_ERR_OK;      if ((xFrame->vop_flags & XVID_CHROMAOPT)) {
846                image_chroma_optimize(&pEnc->current->image,
847                        pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
848  }  }
 #else  
 /*****************************************************************************  
  * Frame encoder entry point for IP capable encoder  
  ****************************************************************************/  
 int  
 encoder_encode(Encoder * pEnc,  
                XVID_ENC_FRAME * pFrame,  
                XVID_ENC_STATS * pResult)  
 {  
         uint16_t x, y;  
         Bitstream bs;  
         uint32_t bits;  
         uint16_t write_vol_header = 0;  
 #ifdef _DEBUG  
         float psnr;  
         uint8_t temp[128];  
 #endif  
   
         start_global_timer();  
   
         ENC_CHECK(pEnc);  
         ENC_CHECK(pFrame);  
         ENC_CHECK(pFrame->bitstream);  
         ENC_CHECK(pFrame->image);  
   
         SWAP(pEnc->current, pEnc->reference);  
   
         pEnc->current->global_flags = pFrame->general;  
         pEnc->current->motion_flags = pFrame->motion;  
         pEnc->mbParam.hint = &pFrame->hint;  
   
         start_timer();  
         if (image_input(&pEnc->current->image,  
                         pEnc->mbParam.width,  
                         pEnc->mbParam.height,  
                         pEnc->mbParam.edged_width,  
                         pFrame->image,  
                         pFrame->colorspace) < 0)  
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
   
 #ifdef _DEBUG  
         image_copy(&pEnc->sOriginal,  
                    &pEnc->current->image,  
                    pEnc->mbParam.edged_width,  
                    pEnc->mbParam.height);  
 #endif  
849    
850          EMMS();      if (xFrame->vop_flags & XVID_EXTRASTATS) {
851                    image_copy(&pEnc->sOriginal, &pEnc->current->image,
852          BitstreamInit(&bs, pFrame->bitstream, 0);                         pEnc->mbParam.edged_width, pEnc->mbParam.height);
   
         if (pFrame->quant == 0)  
         {  
                 pEnc->current->quant = RateControlGetQ(&pEnc->rate_control,0);  
         }  
         else  
         {  
                 pEnc->current->quant = pFrame->quant;  
853          }          }
854    
855          if ((pEnc->current->global_flags & XVID_LUMIMASKING))          if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {
856          {                  int *temp_dquants =     (int *) xvid_malloc(pEnc->mbParam.mb_width *
857                  int * temp_dquants = (int *)                                          pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);
                         xvid_malloc(pEnc->mbParam.mb_width * \  
                                     pEnc->mbParam.mb_height * \  
                                     sizeof(int),  
                                     CACHE_LINE);  
858    
859                  pEnc->current->quant =                  pEnc->current->quant =
860                          adaptive_quantization(pEnc->current->image.y,                          adaptive_quantization(pEnc->current->image.y,
861                                                pEnc->mbParam.edged_width,                                                            pEnc->mbParam.edged_width, temp_dquants,
862                                                temp_dquants,                                                            pEnc->current->quant, pEnc->current->quant,
                                               pEnc->current->quant,  
                                               pEnc->current->quant,  
863                                                2*pEnc->current->quant,                                                2*pEnc->current->quant,
864                                                pEnc->mbParam.mb_width,                                                pEnc->mbParam.mb_width,
865                                                pEnc->mbParam.mb_height);                                                pEnc->mbParam.mb_height);
866    
867                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                  for (y = 0; y < pEnc->mbParam.mb_height; y++) {
                 {  
868    
869                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
870    
871                          for (x = 0; x < pEnc->mbParam.mb_width; x++)                          for (x = 0; x < pEnc->mbParam.mb_width; x++) {
872                          {                                  MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
873    
874                                    pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
                                 MACROBLOCK *pMB =  
                                         &pEnc->current->mbs[OFFSET(x,y)];  
                                 pMB->dquant =  
                                         iDQtab[temp_dquants[OFFSET(x,y)] + 2];  
875                          }                          }
876    
877                          #undef OFFSET                          #undef OFFSET
# Line 1011  Line 880 
880                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
881          }          }
882    
883          if (pEnc->current->global_flags & XVID_H263QUANT)          if (frame->quant > 0)
884          {          {
885                  if(pEnc->mbParam.m_quant_type != H263_QUANT)                  pEnc->current->quant = frame->quant;
886                          write_vol_header = 1;                  type = frame->type;
                 pEnc->mbParam.m_quant_type = H263_QUANT;  
887          }          }
888          else if (pEnc->current->global_flags & XVID_MPEGQUANT)          else
889          {          {
890                  int matrix1_changed, matrix2_changed;                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
891                    type = XVID_TYPE_AUTO;  //RateControlGetType(&pEnc->rate_control, ...);
                 matrix1_changed = matrix2_changed = 0;  
   
                 if(pEnc->mbParam.m_quant_type != MPEG4_QUANT)  
                         write_vol_header = 1;  
   
                 pEnc->mbParam.m_quant_type = MPEG4_QUANT;  
   
                 if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {  
                         if(pFrame->quant_intra_matrix != NULL)  
                                 matrix1_changed =  
                                         set_intra_matrix(pFrame->quant_intra_matrix);  
                         if(pFrame->quant_inter_matrix != NULL)  
                                 matrix2_changed  
                                         = set_inter_matrix(pFrame->quant_inter_matrix);  
                 }  
                 else {  
                         matrix1_changed = set_intra_matrix(get_default_intra_matrix());  
                         matrix2_changed = set_inter_matrix(get_default_inter_matrix());  
                 }  
                 if(write_vol_header == 0)  
                         write_vol_header = matrix1_changed | matrix2_changed;  
892          }          }
893    
894          if (pFrame->intra < 0)          emms();         /* END floating-point region */
         {  
                 if ((pEnc->iFrameNum == 0) ||  
895    
896                      ((pEnc->iMaxKeyInterval > 0) &&  
897                       (pEnc->iFrameNum >= pEnc->iMaxKeyInterval)))          if (type > 0)   /* XVID_TYPE_?VOP */
                 {  
                         pFrame->intra = FrameCodeI(pEnc,  
                                                    &bs,  
                                                    &bits);  
                 }  
                 else  
898                  {                  {
899                          pFrame->intra = FrameCodeP(pEnc,                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */
                                                    &bs,  
                                                    &bits,  
                                                    0,  
                                                    write_vol_header);  
                 }  
900          }          }
901          else          else                    /* XVID_TYPE_AUTO */
902          {          {
903                  if (pFrame->intra == 1)                  if (pEnc->iFrameNum == 0 ||
904                            (pEnc->mbParam.iMaxKeyInterval > 0 && pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))
905                  {                  {
906                          pFrame->intra = FrameCodeI(pEnc,                          pEnc->iFrameNum = 0;
907                                                     &bs,                          type = I_VOP;
908                                                     &bits);                  }else{
909                            type = MEanalysis(&pEnc->reference->image, pEnc->current,
910                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
911                                            pEnc->iFrameNum, pEnc->bframenum_tail);
912                  }                  }
                 else  
                 {  
                         pFrame->intra = FrameCodeP(pEnc,  
                                                    &bs,  
                                                    &bits,  
                                                    1,  
                                                    write_vol_header);  
913                  }                  }
914            inc_frame_num(pEnc);
915            pEnc->iFrameNum++;
916    
917    
918            if ((pEnc->current->vop_flags & XVID_DEBUG)) {
919                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
920                            "%i  st:%i  if:%i", pEnc->m_framenum, pEnc->current->stamp, pEnc->iFrameNum);
921          }          }
922    
923          BitstreamPutBits(&bs, 0xFFFF, 16);          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
924          BitstreamPutBits(&bs, 0xFFFF, 16);           * ivop/pvop/bvop selection
925          BitstreamPad(&bs);           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
         pFrame->length = BitstreamLength(&bs);  
926    
927          if (pResult)          if (type == I_VOP) {
         {  
                 pResult->quant = pEnc->current->quant;  
                 pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);  
                 pResult->kblks = pEnc->sStat.kblks;  
                 pResult->mblks = pEnc->sStat.mblks;  
                 pResult->ublks = pEnc->sStat.ublks;  
         }  
928    
929          EMMS();                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
930                                    pEnc->bframenum_head, pEnc->bframenum_tail,
931                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
932    
933          if (pFrame->quant == 0)                  if ((pEnc->current->vop_flags & XVID_DEBUG)) {
934          {                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
                 RateControlUpdate(&pEnc->rate_control,  
                                   pEnc->current->quant,  
                                   pFrame->length,  
                                   pFrame->intra);  
935          }          }
936    
937  #ifdef _DEBUG                  // when we reach an iframe in CLOSED_GOP mode, encode the last bframe as a xFrame
938          psnr = image_psnr(&pEnc->sOriginal,                  if ((pEnc->mbParam.global_flags & XVID_CLOSED_GOP) && pEnc->bframenum_tail > 0) {
                           &pEnc->current->image,  
                           pEnc->mbParam.edged_width,  
                           pEnc->mbParam.width,  
                           pEnc->mbParam.height);  
939    
940          snprintf(temp, 127, "PSNR: %f\n", psnr);                          // place this frame back on the encoding-queue (head)
941          DEBUG(temp);                          // we will deal with it next time
942  #endif                          pEnc->queue_head = (pEnc->queue_head + (pEnc->mbParam.max_bframes+1) - 1) % (pEnc->mbParam.max_bframes+1);
943                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
944    
945          pEnc->iFrameNum++;                          // grab the last frame from the bframe-queue
946    
947          stop_global_timer();                          pEnc->bframenum_tail--;
948          write_timer();                          SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
949    
950          return XVID_ERR_OK;                          if ((pEnc->current->vop_flags & XVID_DEBUG)) {
951                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
952  }  }
 #endif  
953    
954                            /* XXX: convert B-VOP to P-VOP */
955                            pEnc->current->quant *= 2;
956    
957  static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {                          FrameCodeP(pEnc, &bs, 1, 0);
958    
959          pMB->mode = MODE_INTRA;                  } else {
960    
961          /* zero mv statistics */                          /* ---- update vol flags at IVOP ----------- */
962          pMB->mvs[0].x = pMB->mvs[1].x = pMB->mvs[2].x = pMB->mvs[3].x = 0;                          pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
         pMB->mvs[0].y = pMB->mvs[1].y = pMB->mvs[2].y = pMB->mvs[3].y = 0;  
         pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;  
         pMB->sad16 = 0;  
963    
964          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {              if ((pEnc->mbParam.vol_flags & XVID_MPEGQUANT)) {
965                  if(pMB->dquant != NO_CHANGE)                                  if (frame->quant_intra_matrix != NULL)
966                  {                                          set_intra_matrix(frame->quant_intra_matrix);
967                          pMB->mode = MODE_INTRA_Q;                                  if (frame->quant_inter_matrix != NULL)
968                          pEnc->current->quant += DQtab[pMB->dquant];                                          set_inter_matrix(frame->quant_inter_matrix);
   
                         if (pEnc->current->quant > 31) pEnc->current->quant = 31;  
                         if (pEnc->current->quant < 1) pEnc->current->quant = 1;  
                 }  
969          }          }
970    
971          pMB->quant = pEnc->current->quant;              /* prevent vol/vop misuse */
 }  
972    
973                if (!(pEnc->current->vol_flags & XVID_REDUCED_ENABLE))
974                    pEnc->current->vop_flags &= ~XVID_REDUCED;
975    
976  #define FCODEBITS       3              if (!(pEnc->current->vol_flags & XVID_INTERLACING))
977  #define MODEBITS        5                  pEnc->current->vop_flags &= ~(XVID_TOPFIELDFIRST|XVID_ALTERNATESCAN);
978    
979  void HintedMESet(Encoder * pEnc, int * intra)                          /* ^^^------------------------ */
 {  
         HINTINFO * hint;  
         Bitstream bs;  
         int length, high;  
         uint32_t x, y;  
   
         hint = pEnc->mbParam.hint;  
980    
981          if (hint->rawhints)                          FrameCodeI(pEnc, &bs);
982          {                          xFrame->out_flags |= XVID_KEYFRAME;
                 *intra = hint->mvhint.intra;  
         }  
         else  
         {  
                 BitstreamInit(&bs, hint->hintstream, hint->hintlength);  
                 *intra = BitstreamGetBit(&bs);  
983          }          }
984    
985          if (*intra)          } else if (((pEnc->current->vop_flags & XVID_DYNAMIC_BFRAMES) && type == P_VOP) ||
986          {                                  pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
987                  return;                  /*
988                     * This will be coded as a Predicted Frame
989                     */
990    
991                    DPRINTF(DPRINTF_DEBUG,"*** xFrame bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
992                                    pEnc->bframenum_head, pEnc->bframenum_tail,
993                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
994    
995                    if ((pEnc->current->vop_flags & XVID_DEBUG)) {
996                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
997          }          }
998    
999          pEnc->current->fcode = (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs, FCODEBITS);                  FrameCodeP(pEnc, &bs, 1, 0);
1000    
1001          length  = pEnc->current->fcode + 5;          } else {        /* type == B_VOP */
         high    = 1 << (length - 1);  
1002    
1003          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)                  if ((pEnc->current->vop_flags & XVID_DEBUG)) {
1004          {                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1005                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)                  }
                 {  
                         MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
                         MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];  
                         VECTOR pred[4];  
                         VECTOR tmp;  
                         int32_t dummy[4];  
                         int vec;  
1006    
1007                          pMB->mode = (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs, MODEBITS);                  if (frame->bquant < 1) {
1008                            pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1009                                    pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1010    
1011                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;                  } else {
1012                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;                          pEnc->current->quant = frame->bquant;
1013                    }
1014    
1015                          if (pMB->mode == MODE_INTER)                  if (pEnc->current->quant < 1)
1016                          {                          pEnc->current->quant = 1;
1017                                  tmp.x  = (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs, length);                  else if (pEnc->current->quant > 31)
1018                                  tmp.y  = (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs, length);              pEnc->current->quant = 31;
                                 tmp.x -= (tmp.x >= high) ? high*2 : 0;  
                                 tmp.y -= (tmp.y >= high) ? high*2 : 0;  
1019    
1020                                  get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, 0, pred, dummy);                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1021                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1022                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1023    
1024                                  for (vec=0 ; vec<4 ; ++vec)                  /* store frame into bframe buffer & swap ref back to current */
1025                                  {                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1026                                          pMB->mvs[vec].x  = tmp.x;                  SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
                                         pMB->mvs[vec].y  = tmp.y;  
                                         pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;  
                                         pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;  
                                 }  
                         }  
                         else if (pMB->mode == MODE_INTER4V)  
                         {  
                                 for (vec=0 ; vec<4 ; ++vec)  
                                 {  
                                         tmp.x  = (hint->rawhints) ? bhint->mvs[vec].x : BitstreamGetBits(&bs, length);  
                                         tmp.y  = (hint->rawhints) ? bhint->mvs[vec].y : BitstreamGetBits(&bs, length);  
                                         tmp.x -= (tmp.x >= high) ? high*2 : 0;  
                                         tmp.y -= (tmp.y >= high) ? high*2 : 0;  
1027    
1028                                          get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, vec, pred, dummy);                  pEnc->bframenum_tail++;
1029    
1030                    goto repeat;
1031    
                                         pMB->mvs[vec].x  = tmp.x;  
                                         pMB->mvs[vec].y  = tmp.y;  
                                         pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;  
                                         pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;  
                                 }  
                         }  
                         else    // intra / stuffing / not_coded  
                         {  
                                 for (vec=0 ; vec<4 ; ++vec)  
                                 {  
                                         pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;  
                                 }  
1032                          }                          }
1033    
1034                          if (pMB->mode == MODE_INTER4V &&          if (xFrame->vop_flags & XVID_EXTRASTATS) {
1035                                  (pEnc->current->global_flags & XVID_LUMIMASKING) && pMB->dquant != NO_CHANGE)                  stats->sse_y =
1036                          {                          plane_sse( pEnc->sOriginal.y, pEnc->current->image.y,
1037                                  pMB->mode = MODE_INTRA;                                             pEnc->mbParam.edged_width, pEnc->mbParam.width,
1038                                               pEnc->mbParam.height);
1039    
1040                                  for (vec=0 ; vec<4 ; ++vec)                  stats->sse_u =
1041                                  {                          plane_sse( pEnc->sOriginal.u, pEnc->current->image.u,
1042                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;                                             pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
1043                                  }                                             pEnc->mbParam.height/2);
1044                          }  
1045                  }                  stats->sse_v =
1046                            plane_sse( pEnc->sOriginal.v, pEnc->current->image.v,
1047                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
1048                                               pEnc->mbParam.height/2);
1049          }          }
 }  
   
1050    
1051  void HintedMEGet(Encoder * pEnc, int intra)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1052  {           * okay, on next enc_encode call we must flush bframes
1053          HINTINFO * hint;           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
         Bitstream bs;  
         uint32_t x, y;  
         int length, high;  
1054    
1055          hint = pEnc->mbParam.hint;  done_flush:
1056    
1057          if (hint->rawhints)  #if 0
         {  
                 hint->mvhint.intra = intra;  
         }  
         else  
1058          {          {
1059                  BitstreamInit(&bs, hint->hintstream, 0);                  char tmp[100];
1060                  BitstreamPutBit(&bs, intra);                  wsprintf(tmp,"\\frame%03i.pgm", pEnc->m_framenum);
1061                    image_dump_yuvpgm(&pEnc->current->image, pEnc->mbParam.edged_width,
1062                            pEnc->mbParam.width, pEnc->mbParam.height, tmp);
1063          }          }
1064    #endif
1065    
1066          if (intra)          /* packed_mode: repeat */
1067          {          pEnc->flush_bframes = 1;
1068                  if (!hint->rawhints)          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0) {
1069                  {                  goto repeat;
                         BitstreamPad(&bs);  
                         hint->hintlength = BitstreamLength(&bs);  
                 }  
                 return;  
1070          }          }
1071    
1072          length  = pEnc->current->fcode + 5;          if ((pEnc->mbParam.global_flags & XVID_PACKED) || pEnc->mbParam.max_bframes == 0)
         high    = 1 << (length - 1);  
   
         if (hint->rawhints)  
1073          {          {
1074                  hint->mvhint.fcode = pEnc->current->fcode;                  /* packed(and low_delay) encoding gives us graceful reorded-stats output */
1075                    set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->current);
1076          }          }
1077          else          else
1078          {          {
1079                  BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);                  /* outherwise, output the previous frame */
1080                    /* XXX: for this to work, refernce must be valid for IVOPs too */
1081                    if (pEnc->current->stamp > 0)
1082                            set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->reference);
1083                    else
1084                            stats->type = XVID_TYPE_NOTHING;
1085          }          }
1086    
1087          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1088          {           * done; return number of bytes consumed
1089                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
                 {  
                         MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
                         MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];  
                         VECTOR tmp;  
1090    
1091                          if (hint->rawhints)  done:
                         {  
                                 bhint->mode = pMB->mode;  
                         }  
                         else  
                         {  
                                 BitstreamPutBits(&bs, pMB->mode, MODEBITS);  
                         }  
1092    
1093                          if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)          stop_global_timer();
1094                          {          write_timer();
                                 tmp.x  = pMB->mvs[0].x;  
                                 tmp.y  = pMB->mvs[0].y;  
                                 tmp.x += (tmp.x < 0) ? high*2 : 0;  
                                 tmp.y += (tmp.y < 0) ? high*2 : 0;  
1095    
1096                                  if (hint->rawhints)          emms();
1097                                  {          return BitstreamLength(&bs);
                                         bhint->mvs[0].x = tmp.x;  
                                         bhint->mvs[0].y = tmp.y;  
                                 }  
                                 else  
                                 {  
                                         BitstreamPutBits(&bs, tmp.x, length);  
                                         BitstreamPutBits(&bs, tmp.y, length);  
                                 }  
1098                          }                          }
                         else if (pMB->mode == MODE_INTER4V)  
                         {  
                                 int vec;  
1099    
                                 for (vec=0 ; vec<4 ; ++vec)  
                                 {  
                                         tmp.x  = pMB->mvs[vec].x;  
                                         tmp.y  = pMB->mvs[vec].y;  
                                         tmp.x += (tmp.x < 0) ? high*2 : 0;  
                                         tmp.y += (tmp.y < 0) ? high*2 : 0;  
1100    
1101                                          if (hint->rawhints)  static __inline void
1102    CodeIntraMB(Encoder * pEnc,
1103                            MACROBLOCK * pMB)
1104                                          {                                          {
1105                                                  bhint->mvs[vec].x = tmp.x;  
1106                                                  bhint->mvs[vec].y = tmp.y;          pMB->mode = MODE_INTRA;
1107                                          }  
1108                                          else          /* zero mv statistics */
1109                                          {          pMB->mvs[0].x = pMB->mvs[1].x = pMB->mvs[2].x = pMB->mvs[3].x = 0;
1110                                                  BitstreamPutBits(&bs, tmp.x, length);          pMB->mvs[0].y = pMB->mvs[1].y = pMB->mvs[2].y = pMB->mvs[3].y = 0;
1111                                                  BitstreamPutBits(&bs, tmp.y, length);          pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;
1112                                          }          pMB->sad16 = 0;
1113                                  }  
1114                          }          if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {
1115                    if (pMB->dquant != NO_CHANGE) {
1116                            pMB->mode = MODE_INTRA_Q;
1117                            pEnc->current->quant += DQtab[pMB->dquant];
1118    
1119                            if (pEnc->current->quant > 31)
1120                                    pEnc->current->quant = 31;
1121                            if (pEnc->current->quant < 1)
1122                                    pEnc->current->quant = 1;
1123                  }                  }
1124          }          }
1125    
1126          if (!hint->rawhints)          pMB->quant = pEnc->current->quant;
         {  
                 BitstreamPad(&bs);  
                 hint->hintlength = BitstreamLength(&bs);  
         }  
1127  }  }
1128    
1129    
1130  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits)  
1131  {  static int
1132    FrameCodeI(Encoder * pEnc,
1133                       Bitstream * bs)
1134    {
1135        int bits = BitstreamPos(bs);
1136            int mb_width = pEnc->mbParam.mb_width;
1137            int mb_height = pEnc->mbParam.mb_height;
1138    
1139          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1140          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);
1141    
1142          uint16_t x, y;          uint16_t x, y;
1143    
1144          pEnc->iFrameNum = 0;          if ((pEnc->current->vol_flags & XVID_REDUCED_ENABLE))
1145            {
1146                    mb_width = (pEnc->mbParam.width + 31) / 32;
1147                    mb_height = (pEnc->mbParam.height + 31) / 32;
1148    
1149                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1150                    /* XXX: setedges is overkill */
1151                    start_timer();
1152                    image_setedges(&pEnc->current->image,
1153                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1154                            pEnc->mbParam.width, pEnc->mbParam.height);
1155                    stop_edges_timer();
1156            }
1157    
1158            //pEnc->iFrameNum = 0;
1159          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1160          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1161            //pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1162          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1163    
1164          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam);
         BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1165    
1166          *pBits = BitstreamPos(bs);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1167    
1168          pEnc->sStat.iTextBits = 0;          BitstreamPadAlways(bs);
1169          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
         pEnc->sStat.mblks = pEnc->sStat.ublks = 0;  
1170    
1171          for (y = 0; y < pEnc->mbParam.mb_height; y++)          pEnc->current->sStat.iTextBits = 0;
1172                  for (x = 0; x < pEnc->mbParam.mb_width; x++)          pEnc->current->sStat.kblks = mb_width * mb_height;
1173                  {          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1174                          MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
1175            for (y = 0; y < mb_height; y++)
1176                    for (x = 0; x < mb_width; x++) {
1177                            MACROBLOCK *pMB =
1178                                    &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1179    
1180                          CodeIntraMB(pEnc, pMB);                          CodeIntraMB(pEnc, pMB);
1181    
1182                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1183                                                              dct_codes, qcoeff);
1184    
1185                          start_timer();                          start_timer();
1186                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1187                          stop_prediction_timer();                          stop_prediction_timer();
1188    
1189                          start_timer();                          start_timer();
1190                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          if (pEnc->current->vop_flags & XVID_GREYSCALE)
1191                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1192                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1193                                    qcoeff[5*64+0]=0;
1194                            }
1195                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1196                          stop_coding_timer();                          stop_coding_timer();
1197                  }                  }
1198    
1199            if ((pEnc->current->vop_flags & XVID_REDUCED))
1200            {
1201                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1202                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1203                            16, 0);
1204            }
1205          emms();          emms();
1206    
1207          *pBits = BitstreamPos(bs) - *pBits;          /* for divx5 compatibility, we must always pad between the packed p and b frames */
1208          pEnc->sStat.fMvPrevSigma = -1;          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0)
1209          pEnc->sStat.iMvSum = 0;                  BitstreamPadAlways(bs);
1210          pEnc->sStat.iMvCount = 0;          else
1211                    BitstreamPad(bs);
1212        pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1213    
1214            pEnc->fMvPrevSigma = -1;
1215          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1216    
1217          if (pEnc->current->global_flags & XVID_HINTEDME_GET)      /* XXX: hinted me
1218          {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1219                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1220          }          }*/
1221    
1222          return 1;                                        // intra          return 1;                                       /* intra */
1223  }  }
1224    
1225    
1226  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1227    #define BFRAME_SKIP_THRESHHOLD 30
1228    
1229  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header)  
1230    /* FrameCodeP also handles S(GMC)-VOPs */
1231    static int
1232    FrameCodeP(Encoder * pEnc,
1233                       Bitstream * bs,
1234                       bool force_inter,
1235                       bool vol_header)
1236  {  {
1237          float fSigma;          float fSigma;
1238        int bits = BitstreamPos(bs);
1239    
1240          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1241          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);
1242    
1243            int mb_width = pEnc->mbParam.mb_width;
1244            int mb_height = pEnc->mbParam.mb_height;
1245    
1246          int iLimit;          int iLimit;
1247          uint32_t x, y;          int x, y, k;
1248          int iSearchRange;          int iSearchRange;
1249          int bIntra;          int bIntra, skip_possible;
1250    
1251          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1252          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1253    
1254            if ((pEnc->current->vop_flags & XVID_REDUCED))
1255            {
1256                    mb_width = (pEnc->mbParam.width + 31) / 32;
1257                    mb_height = (pEnc->mbParam.height + 31) / 32;
1258            }
1259    
1260    
1261          start_timer();          start_timer();
1262          image_setedges(pRef,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1263                         pEnc->mbParam.edged_width,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                        pEnc->mbParam.edged_height,  
                        pEnc->mbParam.width,  
                        pEnc->mbParam.height,  
                        pEnc->current->global_flags & XVID_INTERLACING);  
1264          stop_edges_timer();          stop_edges_timer();
1265    
1266          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1267          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1268            //pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1269          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1270    
1271          if (!force_inter)          if (!force_inter)
1272                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
1273          else          else
1274                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1275    
1276          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->vop_flags & XVID_HALFPEL)) {
1277                  start_timer();                  start_timer();
1278                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1279                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1280                                                      pEnc->mbParam.edged_height,
1281                                                      (pEnc->mbParam.vol_flags & XVID_QUARTERPEL),
1282                                    pEnc->current->rounding_type);                                    pEnc->current->rounding_type);
1283                  stop_inter_timer();                  stop_inter_timer();
1284          }          }
1285    
1286            pEnc->current->coding_type = P_VOP;
1287    
1288          start_timer();          start_timer();
1289          if (pEnc->current->global_flags & XVID_HINTEDME_SET)          /*if (pEnc->current->global_flags & XVID_HINTEDME_SET)
         {  
1290                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1291          }          else*/
1292          else                  bIntra =
1293          {                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1294                  bIntra = MotionEstimation(                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
                         &pEnc->mbParam,  
                         pEnc->current,  
                         pEnc->reference,  
                         &pEnc->vInterH,  
                         &pEnc->vInterV,  
                         &pEnc->vInterHV,  
1295                          iLimit);                          iLimit);
1296          }  
1297          stop_motion_timer();          stop_motion_timer();
1298    
1299          if (bIntra == 1)          if (bIntra == 1) return FrameCodeI(pEnc, bs);
1300    
1301            if ( ( pEnc->current->vol_flags & XVID_GMC )
1302                    && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )
1303          {          {
1304                  return FrameCodeI(pEnc, bs, pBits);                  pEnc->current->coding_type = S_VOP;
         }  
1305    
1306          pEnc->current->coding_type = P_VOP;                  generate_GMCparameters( 2, 16, &pEnc->current->warp,
1307                                            pEnc->mbParam.width, pEnc->mbParam.height,
1308                                            &pEnc->current->gmc_data);
1309    
1310                    generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,
1311                                    pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,
1312                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,
1313                                    pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0,
1314                                    pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);
1315    
1316            }
1317    
1318            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1319          if(vol_header)          if(vol_header)
1320                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1321                    BitstreamPadAlways(bs);
1322            }
1323    
1324          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1325    
1326          *pBits = BitstreamPos(bs);          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1327                    pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1328    
         pEnc->sStat.iTextBits = 0;  
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
         pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;  
1329    
1330          for(y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++) {
1331          {                  for (x = 0; x < mb_width; x++) {
1332                  for(x = 0; x < pEnc->mbParam.mb_width; x++)                          MACROBLOCK *pMB =
1333                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1334                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
1335    /* Mode decision: Check, if the block should be INTRA / INTER or GMC-coded */
1336    /* For a start, leave INTRA decision as is, only choose only between INTER/GMC  - gruel, 9.1.2002 */
1337    
1338                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1339    
1340                          if (!bIntra)                          if (bIntra) {
1341                          {                                  CodeIntraMB(pEnc, pMB);
1342                                    MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1343                                                                      dct_codes, qcoeff);
1344    
1345                                    start_timer();
1346                                    MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1347                                    stop_prediction_timer();
1348    
1349                                    pEnc->current->sStat.kblks++;
1350    
1351                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1352                                    stop_coding_timer();
1353                                    continue;
1354                            }
1355    
1356                            if (pEnc->current->coding_type == S_VOP) {
1357    
1358                                    int32_t iSAD = sad16(pEnc->current->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1359                                            pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1360                                            pEnc->mbParam.edged_width, 65536);
1361    
1362                                    if (pEnc->current->motion_flags & PMV_CHROMA16) {
1363                                            iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1364                                            pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1365    
1366                                            iSAD += sad8(pEnc->current->image.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1367                                            pEnc->vGMC.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1368                                    }
1369    
1370                                    if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1371    
1372                                            if ((pEnc->mbParam.vol_flags & XVID_QUARTERPEL))
1373                                                    pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1374                                            else
1375                                                    pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
1376    
1377                                            pMB->mode = MODE_INTER;
1378                                            pMB->mcsel = 1;
1379                                            pMB->sad16 = iSAD;
1380                                    } else {
1381                                            pMB->mcsel = 0;
1382                                    }
1383                            } else {
1384                                    pMB->mcsel = 0; /* just a precaution */
1385                            }
1386    
1387                                  start_timer();                                  start_timer();
1388                                  MBMotionCompensation(pMB,                          MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
1389                                                       x, y,                                                                   &pEnc->vInterH, &pEnc->vInterV,
1390                                                       &pEnc->reference->image,                                                                   &pEnc->vInterHV, &pEnc->vGMC,
                                                      &pEnc->vInterH,  
                                                      &pEnc->vInterV,  
                                                      &pEnc->vInterHV,  
1391                                                       &pEnc->current->image,                                                       &pEnc->current->image,
1392                                                       dct_codes,                                                                   dct_codes, pEnc->mbParam.width,
                                                      pEnc->mbParam.width,  
1393                                                       pEnc->mbParam.height,                                                       pEnc->mbParam.height,
1394                                                       pEnc->mbParam.edged_width,                                                       pEnc->mbParam.edged_width,
1395                                                                     (pEnc->current->vol_flags & XVID_QUARTERPEL),
1396                                                                     (pEnc->current->vop_flags & XVID_REDUCED),
1397                                                       pEnc->current->rounding_type);                                                       pEnc->current->rounding_type);
1398    
1399                                  stop_comp_timer();                                  stop_comp_timer();
1400    
1401                                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {                          if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {
1402                                          if(pMB->dquant != NO_CHANGE) {                                          if(pMB->dquant != NO_CHANGE) {
1403                                                  pMB->mode = MODE_INTER_Q;                                                  pMB->mode = MODE_INTER_Q;
1404                                                  pEnc->current->quant += DQtab[pMB->dquant];                                                  pEnc->current->quant += DQtab[pMB->dquant];
1405                                                  if (pEnc->current->quant > 31) pEnc->current->quant = 31;                                          if (pEnc->current->quant > 31)
1406                                                  else if(pEnc->current->quant < 1) pEnc->current->quant = 1;                                                  pEnc->current->quant = 31;
1407                                            else if (pEnc->current->quant < 1)
1408                                                    pEnc->current->quant = 1;
1409                                          }                                          }
1410                                  }                                  }
1411                                  pMB->quant = pEnc->current->quant;                                  pMB->quant = pEnc->current->quant;
1412    
1413                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1414    
1415                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                          if (pMB->mode != MODE_NOT_CODED)
1416                            {       pMB->cbp =
1417                                            MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1418                                                                              dct_codes, qcoeff);
1419                          }                          }
1420                          else  
1421                          {                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1422                                  CodeIntraMB(pEnc, pMB);                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1423                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1424                                    pEnc->current->sStat.mblks++;
1425                            }  else {
1426                                    pEnc->current->sStat.ublks++;
1427                          }                          }
1428    
1429                          start_timer();                          start_timer();
                         MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);  
                         stop_prediction_timer();  
1430    
1431                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)                          /* Finished processing the MB, now check if to CODE or SKIP */
1432                          {  
1433                                  pEnc->sStat.kblks++;                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1434                                                            (pMB->dquant == NO_CHANGE);
1435    
1436                            if (pEnc->current->coding_type == S_VOP)
1437                                    skip_possible &= (pMB->mcsel == 1);
1438                            else if (pEnc->current->coding_type == P_VOP) {
1439                                    if ((pEnc->mbParam.vol_flags & XVID_QUARTERPEL))
1440                                            skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1441                                    else
1442                                            skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );
1443                          }                          }
1444                          else if (pMB->cbp ||  
1445                                   pMB->mvs[0].x || pMB->mvs[0].y ||                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1446                                   pMB->mvs[1].x || pMB->mvs[1].y ||  
1447                                   pMB->mvs[2].x || pMB->mvs[2].y ||  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1448                                   pMB->mvs[3].x || pMB->mvs[3].y)  
1449                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1450                                    {
1451                                            int bSkip = 1;
1452    
1453                                            for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1454                          {                          {
1455                                  pEnc->sStat.mblks++;                                                  int iSAD;
1456                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1457                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1458                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1459                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1460                                                    {       bSkip = 0;
1461                                                            break;
1462                          }                          }
1463                          else                                          }
1464    
1465                                            if (!bSkip) {   /* no SKIP, but trivial block */
1466                                                    if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {
1467                                                            VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1468                                                            pMB->pmvs[0].x = - predMV.x;
1469                                                            pMB->pmvs[0].y = - predMV.y;
1470                                                    }
1471                                                    else {
1472                                                            VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1473                                                            pMB->pmvs[0].x = - predMV.x;
1474                                                            pMB->pmvs[0].y = - predMV.y;
1475                                                    }
1476                                                    pMB->mode = MODE_INTER;
1477                                                    pMB->cbp = 0;
1478                                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1479                                                    stop_coding_timer();
1480    
1481                                                    continue;       /* next MB */
1482                                            }
1483                                    }
1484                                    /* do SKIP */
1485    
1486                                    pMB->mode = MODE_NOT_CODED;
1487                                    MBSkip(bs);
1488                                    stop_coding_timer();
1489                                    continue;       /* next MB */
1490                            }
1491                            /* ordinary case: normal coded INTER/INTER4V block */
1492    
1493                            if ((pEnc->current->vop_flags & XVID_GREYSCALE))
1494                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1495                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1496                                    qcoeff[5*64+0]=0;
1497                            }
1498    
1499                            if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {
1500                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1501                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1502                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1503                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1504                            } else {
1505                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1506                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;
1507                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1508                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1509                            }
1510    
1511    
1512                            if (pMB->mode == MODE_INTER4V)
1513                            {       int k;
1514                                    for (k=1;k<4;k++)
1515                          {                          {
1516                                  pEnc->sStat.ublks++;                                          if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {
1517                                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1518                                                    pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1519                                                    pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
1520                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1521                                            } else {
1522                                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1523                                                    pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;
1524                                                    pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;
1525                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1526                          }                          }
1527    
1528                          start_timer();                                  }
1529                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          }
1530    
1531                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1532                          stop_coding_timer();                          stop_coding_timer();
1533    
1534                  }                  }
1535          }          }
1536    
1537            if ((pEnc->current->vop_flags & XVID_REDUCED))
1538            {
1539                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1540                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1541                            16, 0);
1542            }
1543    
1544          emms();          emms();
1545    
1546          if (pEnc->current->global_flags & XVID_HINTEDME_GET)      /* XXX: hinted me
1547          {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1548                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1549          }          }*/
1550    
1551          if (pEnc->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
1552                  pEnc->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
1553    
1554          fSigma = (float)sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
1555    
1556          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1557    
1558          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1559              && (pEnc->mbParam.m_fcode <= 3))    // maximum search range 128          && (pEnc->mbParam.m_fcode <= (3 +  (pEnc->mbParam.vol_flags & XVID_QUARTERPEL?1:0)  ))) /* maximum search range 128 */
1560          {          {
1561                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1562                  iSearchRange *= 2;                  iSearchRange *= 2;
1563          }          } else if ((fSigma < iSearchRange / 6)
1564          else if ((fSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma >= 0)
1565                   && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1566                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->mbParam.m_fcode >= (2 + (pEnc->mbParam.vol_flags & XVID_QUARTERPEL?1:0) )))        /* minimum search range 16 */
                  && (pEnc->mbParam.m_fcode >= 2))       // minimum search range 16  
1567          {          {
1568                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1569                  iSearchRange /= 2;                  iSearchRange /= 2;
1570          }          }
1571    
1572          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1573    
1574            /* frame drop code */
1575            DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1576            if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1577                    (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1578            {
1579                    pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1580                    pEnc->current->sStat.ublks = mb_width * mb_height;
1581    
1582                    BitstreamReset(bs);
1583    
1584          *pBits = BitstreamPos(bs) - *pBits;                  set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1585                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1586    
1587          return 0;                                        // inter                  /* copy reference frame details into the current frame */
1588                    pEnc->current->quant = pEnc->reference->quant;
1589                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1590                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1591                    //pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1592                    pEnc->current->fcode = pEnc->reference->fcode;
1593                    pEnc->current->bcode = pEnc->reference->bcode;
1594                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1595                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1596  }  }
1597    
1598            /* XXX: debug
1599            {
1600                    char s[100];
1601                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1602                    image_dump_yuvpgm(&pEnc->current->image,
1603                            pEnc->mbParam.edged_width,
1604                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1605    
1606  #ifdef BFRAMES                  sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1607  static void FrameCodeB(Encoder * pEnc, FRAMEINFO * frame, Bitstream * bs, uint32_t *pBits)                  image_dump_yuvpgm(&pEnc->reference->image,
1608                            pEnc->mbParam.edged_width,
1609                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1610            }
1611            */
1612    
1613            /* for divx5 compatibility, we must always pad between the packed p and b frames */
1614            if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0)
1615                    BitstreamPadAlways(bs);
1616            else
1617                    BitstreamPad(bs);
1618    
1619        pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1620    
1621            return 0;                                       /* inter */
1622    }
1623    
1624    
1625    static void
1626    FrameCodeB(Encoder * pEnc,
1627                       FRAMEINFO * frame,
1628                       Bitstream * bs)
1629  {  {
1630      int16_t dct_codes[6*64];      int bits = BitstreamPos(bs);
1631      int16_t qcoeff[6*64];          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1632            DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1633      uint32_t x, y;      uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1634    
1635      IMAGE *f_ref = &pEnc->reference->image;      IMAGE *f_ref = &pEnc->reference->image;
1636          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1637    
1638          // forward      #ifdef BFRAMES_DEC_DEBUG
1639          image_setedges(f_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height, frame->global_flags & XVID_INTERLACING);          FILE *fp;
1640            static char first=0;
1641    #define BFRAME_DEBUG    if (!first && fp){ \
1642                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1643            }
1644    
1645            /* XXX: pEnc->current->global_flags &= ~XVID_REDUCED;  reduced resoltion not yet supported */
1646    
1647            if (!first){
1648                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1649            }
1650    #endif
1651    
1652            //frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1653    
1654            /* forward  */
1655            image_setedges(f_ref, pEnc->mbParam.edged_width,
1656                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1657                                       pEnc->mbParam.height);
1658          start_timer();          start_timer();
1659          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1660                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1661                                              (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0);
1662          stop_inter_timer();          stop_inter_timer();
1663    
1664          // backward          /* backward */
1665          image_setedges(b_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height, frame->global_flags & XVID_INTERLACING);          image_setedges(b_ref, pEnc->mbParam.edged_width,
1666                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1667                                       pEnc->mbParam.height);
1668      start_timer();      start_timer();
1669          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1670                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1671                                              (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0);
1672          stop_inter_timer();          stop_inter_timer();
1673    
1674          start_timer();          start_timer();
1675    
1676          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1677                  pEnc->reference->mbs, f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */
1678                  pEnc->current->mbs, b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                                                   ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),    /* time_pp */
1679                                                     pEnc->reference->mbs, f_ref,
1680                                                     &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1681                                                     pEnc->current, b_ref, &pEnc->vInterH,
1682                                                     &pEnc->vInterV, &pEnc->vInterHV);
1683    
1684    
1685          stop_motion_timer();          stop_motion_timer();
1686    
1687          /*if (test_quant_type(&pEnc->mbParam, pEnc->current))          /*
1688          {          if (test_quant_type(&pEnc->mbParam, pEnc->current)) {
1689                  BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);                  BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);
1690          }*/          }
1691            */
1692    
1693      frame->coding_type = B_VOP;      frame->coding_type = B_VOP;
     BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);  
   
     *pBits = BitstreamPos(bs);  
1694    
1695      pEnc->sStat.iTextBits = 0;          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1696      pEnc->sStat.iMvSum = 0;          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
     pEnc->sStat.iMvCount = 0;  
         pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;  
   
   
     for (y = 0; y < pEnc->mbParam.mb_height; y++)  
         {  
                 // reset prediction  
1697    
1698                  forward.x = 0;          frame->sStat.iTextBits = 0;
1699                  forward.y = 0;          frame->sStat.iMvSum = 0;
1700                  backward.x = 0;          frame->sStat.iMvCount = 0;
1701                  backward.y = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
1702            frame->sStat.mblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1703                  for (x = 0; x < pEnc->mbParam.mb_width; x++)          frame->sStat.kblks = frame->sStat.ublks = 0;
1704                  {  
1705                          MACROBLOCK * f_mb = &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1706                          MACROBLOCK * b_mb = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1707                          MACROBLOCK * mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1708                            int direction = frame->vop_flags & XVID_ALTERNATESCAN ? 2 : 0;
1709                          // decoder ignores mb when refence block is INTER(0,0), CBP=0  
1710                          if (mb->mode == MODE_NOT_CODED)                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */
1711                          {                          if (mb->mode == MODE_NOT_CODED) {
1712                                  mb->mvs[0].x = 0;                                  /* mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0; */
                                 mb->mvs[0].y = 0;  
1713                                  continue;                                  continue;
1714                          }                          }
1715    
1716                            if (mb->mode != MODE_DIRECT_NONE_MV) {
1717                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1718                                          f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1719                                          b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1720                                                                             &pEnc->vInterV, &pEnc->vInterHV,
1721                                          dct_codes);                                          dct_codes);
1722    
1723                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1724                          mb->quant = frame->quant;                          mb->quant = frame->quant;
                         mb->cbp = MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes, qcoeff);  
                         //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);  
1725    
1726                                    mb->cbp =
1727                                            MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);
1728    
1729                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT) &&                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1730                                  mb->cbp == 0 &&                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
1731                                  mb->mvs[0].x == 0 &&                                          mb->mode = MODE_DIRECT_NONE_MV; /* skipped */
                                 mb->mvs[0].y == 0)  
                         {  
                                 mb->mode = 5;  // skipped  
                         }  
   
                         if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD)  
                         {  
                                 mb->pmvs[0].x = mb->mvs[0].x - forward.x;  
                                 mb->pmvs[0].y = mb->mvs[0].y - forward.y;  
                                 forward.x = mb->mvs[0].x;  
                                 forward.y = mb->mvs[0].y;  
1732                          }                          }
   
                         if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_BACKWARD)  
                         {  
                                 mb->b_pmvs[0].x = mb->b_mvs[0].x - backward.x;  
                                 mb->b_pmvs[0].y = mb->b_mvs[0].y - backward.y;  
                                 backward.x = mb->b_mvs[0].x;  
                                 backward.y = mb->b_mvs[0].y;  
1733                          }                          }
1734    
1735  //                      printf("[%i %i] M=%i CBP=%i MVX=%i MVY=%i %i,%i  %i,%i\n", x, y, pMB->mode, pMB->cbp, pMB->mvs[0].x, bmb->pmvs[0].x, bmb->pmvs[0].y, forward.x, forward.y);  #ifdef BFRAMES_DEC_DEBUG
1736            BFRAME_DEBUG
1737    #endif
1738                          start_timer();                          start_timer();
1739                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs, &pEnc->sStat);                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1740                                                     &frame->sStat, direction);
1741                          stop_coding_timer();                          stop_coding_timer();
1742                  }                  }
1743          }          }
1744    
1745          emms();          emms();
1746    
1747          // TODO: dynamic fcode/bcode ???          /* TODO: dynamic fcode/bcode ??? */
1748    
1749        BitstreamPad(bs);
1750            frame->length = (BitstreamPos(bs) - bits) / 8;
1751    
1752          *pBits = BitstreamPos(bs) - *pBits;  #ifdef BFRAMES_DEC_DEBUG
1753            if (!first){
1754                    first=1;
1755                    if (fp)
1756                            fclose(fp);
1757  }  }
1758  #endif  #endif
1759    }

Legend:
Removed from v.194  
changed lines
  Added in v.914

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