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

Diff of /xvidcore/src/encoder.c

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

revision 1.40, Sun Jun 9 23:30:50 2002 UTC revision 1.76.2.28, Wed Dec 11 10:47:43 2002 UTC
# Line 32  Line 32 
32   *   *
33   *  History   *  History
34   *   *
35     *  10.07.2002  added BFRAMES_DEC_DEBUG support
36     *              MinChen <chenm001@163.com>
37     *  20.06.2002 bframe patch
38   *  08.05.2002 fix some problem in DEBUG mode;   *  08.05.2002 fix some problem in DEBUG mode;
39   *             MinChen <chenm001@163.com>   *             MinChen <chenm001@163.com>
40   *  14.04.2002 added FrameCodeB()   *  14.04.2002 added FrameCodeB()
# Line 40  Line 43 
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
46    
47  #include <stdlib.h>  #include <stdlib.h>
48  #include <stdio.h>  #include <stdio.h>
49  #include <math.h>  #include <math.h>
50    #include <string.h>
51    
52  #include "encoder.h"  #include "encoder.h"
53  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
54  #include "global.h"  #include "global.h"
55  #include "utils/timer.h"  #include "utils/timer.h"
56  #include "image/image.h"  #include "image/image.h"
57    #include "image/font.h"
58    #include "motion/sad.h"
59  #include "motion/motion.h"  #include "motion/motion.h"
60  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
61  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 82  Line 89 
89                        bool force_inter,                        bool force_inter,
90                        bool vol_header);                        bool vol_header);
91    
 #ifdef BFRAMES  
92  static void FrameCodeB(Encoder * pEnc,  static void FrameCodeB(Encoder * pEnc,
93                         FRAMEINFO * frame,                         FRAMEINFO * frame,
94                         Bitstream * bs,                         Bitstream * bs,
95                         uint32_t *pBits);                         uint32_t *pBits);
 #endif  
96    
97  /*****************************************************************************  /*****************************************************************************
98   * Local data   * Local data
99   ****************************************************************************/   ****************************************************************************/
100    
101  static int DQtab[4] =  static int DQtab[4] = {
 {  
102          -1, -2, 1, 2          -1, -2, 1, 2
103  };  };
104    
105  static int iDQtab[5] =  static int iDQtab[5] = {
 {  
106          1, 0, NO_CHANGE, 2, 3          1, 0, NO_CHANGE, 2, 3
107  };  };
108    
109    
 static void __inline image_null(IMAGE * image)  
 {  
         image->y = image->u = image->v = NULL;  
 }  
   
   
110  /*****************************************************************************  /*****************************************************************************
111   * Encoder creation   * Encoder creation
112   *   *
# Line 132  Line 129 
129  encoder_create(XVID_ENC_PARAM * pParam)  encoder_create(XVID_ENC_PARAM * pParam)
130  {  {
131          Encoder *pEnc;          Encoder *pEnc;
132          uint32_t i;          int i;
133    
134          pParam->handle = NULL;          pParam->handle = NULL;
135    
# Line 145  Line 142 
142    
143          /* Fps */          /* Fps */
144    
145          if (pParam->fincr <= 0 || pParam->fbase <= 0)          if (pParam->fincr <= 0 || pParam->fbase <= 0) {
         {  
146                  pParam->fincr = 1;                  pParam->fincr = 1;
147                  pParam->fbase = 25;                  pParam->fbase = 25;
148          }          }
# Line 157  Line 153 
153           */           */
154    
155          i = pParam->fincr;          i = pParam->fincr;
156          while (i > 1)          while (i > 1) {
157          {                  if (pParam->fincr % i == 0 && pParam->fbase % i == 0) {
                 if (pParam->fincr % i == 0 && pParam->fbase % i == 0)  
                 {  
158                          pParam->fincr /= i;                          pParam->fincr /= i;
159                          pParam->fbase /= i;                          pParam->fbase /= i;
160                          i = pParam->fincr;                          i = pParam->fincr;
# Line 169  Line 163 
163                  i--;                  i--;
164          }          }
165    
166          if (pParam->fbase > 65535)          if (pParam->fbase > 65535) {
         {  
167                  float div = (float)pParam->fbase / 65535;                  float div = (float)pParam->fbase / 65535;
168    
169                  pParam->fbase = (int)(pParam->fbase / div);                  pParam->fbase = (int)(pParam->fbase / div);
170                  pParam->fincr = (int)(pParam->fincr / div);                  pParam->fincr = (int)(pParam->fincr / div);
171          }          }
# Line 203  Line 197 
197    
198          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
199    
200          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
201                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
202    
   
203          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
204          if (pEnc == NULL)          if (pEnc == NULL)
205                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
206    
207            /* Zero the Encoder Structure */
208    
209            memset(pEnc, 0, sizeof(Encoder));
210    
211          /* Fill members of Encoder structure */          /* Fill members of Encoder structure */
212    
213          pEnc->mbParam.width = pParam->width;          pEnc->mbParam.width = pParam->width;
# Line 225  Line 222 
222          pEnc->mbParam.fbase = pParam->fbase;          pEnc->mbParam.fbase = pParam->fbase;
223          pEnc->mbParam.fincr = pParam->fincr;          pEnc->mbParam.fincr = pParam->fincr;
224    
225          pEnc->sStat.fMvPrevSigma = -1;          pEnc->mbParam.m_quant_type = H263_QUANT;
226    
227            pEnc->fMvPrevSigma = -1;
228    
229          /* Fill rate control parameters */          /* Fill rate control parameters */
230    
231          pEnc->bitrate = pParam->rc_bitrate;          pEnc->bitrate = pParam->rc_bitrate;
232    
233          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
234          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->mbParam.iMaxKeyInterval = pParam->max_key_interval;
235    
236          /* try to allocate frame memory */          /* try to allocate frame memory */
237    
# Line 244  Line 243 
243    
244          /* try to allocate mb memory */          /* try to allocate mb memory */
245    
246          pEnc->current->mbs = xvid_malloc(sizeof(MACROBLOCK) * \          pEnc->current->mbs =
247                                           pEnc->mbParam.mb_width * \                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
248                                           pEnc->mbParam.mb_height,                                          pEnc->mbParam.mb_height, CACHE_LINE);
249                                           CACHE_LINE);          pEnc->reference->mbs =
250          pEnc->reference->mbs = xvid_malloc(sizeof(MACROBLOCK) * \                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
251                                             pEnc->mbParam.mb_width * \                                          pEnc->mbParam.mb_height, CACHE_LINE);
                                            pEnc->mbParam.mb_height,  
                                            CACHE_LINE);  
252    
253          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
254                  goto xvid_err_memory2;                  goto xvid_err_memory2;
255    
256          /* try to allocate image memory */          /* try to allocate image memory */
257    
258  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
259          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
260  #endif  #endif
261  #ifdef BFRAMES  
262          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
263          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
264          image_null(&pEnc->f_refhv);          image_null(&pEnc->f_refhv);
265  #endif  
266          image_null(&pEnc->current->image);          image_null(&pEnc->current->image);
267          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
268          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
# Line 274  Line 271 
271          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
272          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
273    
274  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
275          if (image_create(&pEnc->sOriginal,          if (image_create
276                           pEnc->mbParam.edged_width,                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
277                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
278                  goto xvid_err_memory3;                  goto xvid_err_memory3;
279  #endif  #endif
280  #ifdef BFRAMES  
281          if (image_create(&pEnc->f_refh,          if (image_create
282                           pEnc->mbParam.edged_width,                  (&pEnc->f_refh, 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->f_refv,          if (image_create
286                           pEnc->mbParam.edged_width,                  (&pEnc->f_refv, 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->f_refhv,          if (image_create
290                           pEnc->mbParam.edged_width,                  (&pEnc->f_refhv, 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  #endif  
294          if (image_create(&pEnc->current->image,          if (image_create
295                           pEnc->mbParam.edged_width,                  (&pEnc->current->image, pEnc->mbParam.edged_width,
296                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
297                  goto xvid_err_memory3;                  goto xvid_err_memory3;
298          if (image_create(&pEnc->reference->image,          if (image_create
299                           pEnc->mbParam.edged_width,                  (&pEnc->reference->image, pEnc->mbParam.edged_width,
300                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
301                  goto xvid_err_memory3;                  goto xvid_err_memory3;
302          if (image_create(&pEnc->vInterH,          if (image_create
303                           pEnc->mbParam.edged_width,                  (&pEnc->vInterH, pEnc->mbParam.edged_width,
304                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
305                  goto xvid_err_memory3;                  goto xvid_err_memory3;
306          if (image_create(&pEnc->vInterV,          if (image_create
307                           pEnc->mbParam.edged_width,                  (&pEnc->vInterV, pEnc->mbParam.edged_width,
308                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
309                  goto xvid_err_memory3;                  goto xvid_err_memory3;
310          if (image_create(&pEnc->vInterVf,          if (image_create
311                           pEnc->mbParam.edged_width,                  (&pEnc->vInterVf, pEnc->mbParam.edged_width,
312                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
313                  goto xvid_err_memory3;                  goto xvid_err_memory3;
314          if (image_create(&pEnc->vInterHV,          if (image_create
315                           pEnc->mbParam.edged_width,                  (&pEnc->vInterHV, pEnc->mbParam.edged_width,
316                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
317                  goto xvid_err_memory3;                  goto xvid_err_memory3;
318          if (image_create(&pEnc->vInterHVf,          if (image_create
319                           pEnc->mbParam.edged_width,                  (&pEnc->vInterHVf, pEnc->mbParam.edged_width,
320                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
321                  goto xvid_err_memory3;                  goto xvid_err_memory3;
322    
323    
324    
325          /* B Frames specific init */          /* B Frames specific init */
 #ifdef BFRAMES  
326    
327            pEnc->mbParam.global = pParam->global;
328          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
329          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->mbParam.bquant_ratio = pParam->bquant_ratio;
330            pEnc->mbParam.bquant_offset = pParam->bquant_offset;
331            pEnc->mbParam.frame_drop_ratio = pParam->frame_drop_ratio;
332          pEnc->bframes = NULL;          pEnc->bframes = NULL;
333    
334          if (pEnc->mbParam.max_bframes > 0)          if (pEnc->mbParam.max_bframes > 0) {
         {  
335                  int n;                  int n;
336    
337                  pEnc->bframes = xvid_malloc(pEnc->mbParam.max_bframes * \                  pEnc->bframes =
338                                              sizeof(FRAMEINFO *),                          xvid_malloc(pEnc->mbParam.max_bframes * sizeof(FRAMEINFO *),
339                                              CACHE_LINE);                                              CACHE_LINE);
340    
341                  if (pEnc->bframes == NULL)                  if (pEnc->bframes == NULL)
# Line 347  Line 345 
345                          pEnc->bframes[n] = NULL;                          pEnc->bframes[n] = NULL;
346    
347    
348                  for (n = 0; n < pEnc->mbParam.max_bframes; n++)                  for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
349                  {                          pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
                         pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO),  
                                                        CACHE_LINE);  
350    
351                          if (pEnc->bframes[n] == NULL)                          if (pEnc->bframes[n] == NULL)
352                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
353    
354                          pEnc->bframes[n]->mbs = xvid_malloc(sizeof(MACROBLOCK) * \                          pEnc->bframes[n]->mbs =
355                                                              pEnc->mbParam.mb_width * \                                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
356                                                              pEnc->mbParam.mb_height,                                                          pEnc->mbParam.mb_height, CACHE_LINE);
                                                             CACHE_LINE);  
357    
358                          if (pEnc->bframes[n]->mbs == NULL)                          if (pEnc->bframes[n]->mbs == NULL)
359                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
360    
361                          image_null(&pEnc->bframes[n]->image);                          image_null(&pEnc->bframes[n]->image);
362    
363                          if (image_create(&pEnc->bframes[n]->image,                          if (image_create
364                                           pEnc->mbParam.edged_width,                                  (&pEnc->bframes[n]->image, pEnc->mbParam.edged_width,
365                                           pEnc->mbParam.edged_height) < 0)                                           pEnc->mbParam.edged_height) < 0)
366                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
367    
# Line 376  Line 371 
371          pEnc->bframenum_head = 0;          pEnc->bframenum_head = 0;
372          pEnc->bframenum_tail = 0;          pEnc->bframenum_tail = 0;
373          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
374            pEnc->bframenum_dx50bvop = -1;
375    
376          pEnc->mbParam.m_seconds = 0;          pEnc->queue = NULL;
377          pEnc->mbParam.m_ticks = 0;  
378  #endif  
379            if (pEnc->mbParam.max_bframes > 0) {
380                    int n;
381    
382                    pEnc->queue =
383                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),
384                                                    CACHE_LINE);
385    
386                    if (pEnc->queue == NULL)
387                            goto xvid_err_memory4;
388    
389                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
390                            image_null(&pEnc->queue[n]);
391    
392                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
393                            if (image_create
394                                    (&pEnc->queue[n], pEnc->mbParam.edged_width,
395                                     pEnc->mbParam.edged_height) < 0)
396                                    goto xvid_err_memory5;
397    
398                    }
399            }
400    
401            pEnc->queue_head = 0;
402            pEnc->queue_tail = 0;
403            pEnc->queue_size = 0;
404    
405            pEnc->mbParam.m_stamp = 0;
406    
407            pEnc->m_framenum = 0;
408            pEnc->current->stamp = 0;
409            pEnc->reference->stamp = 0;
410    
411          pParam->handle = (void *)pEnc;          pParam->handle = (void *)pEnc;
412    
413          if (pParam->rc_bitrate)          if (pParam->rc_bitrate) {
414          {                  RateControlInit(&pEnc->rate_control, pParam->rc_bitrate,
                 RateControlInit(&pEnc->rate_control,  
                                 pParam->rc_bitrate,  
415                                  pParam->rc_reaction_delay_factor,                                  pParam->rc_reaction_delay_factor,
416                                  pParam->rc_averaging_period,                                                  pParam->rc_averaging_period, pParam->rc_buffer,
                                 pParam->rc_buffer,  
417                                  pParam->fbase * 1000 / pParam->fincr,                                  pParam->fbase * 1000 / pParam->fincr,
418                                  pParam->max_quantizer,                                                  pParam->max_quantizer, pParam->min_quantizer);
                                 pParam->min_quantizer);  
419          }          }
420    
421          init_timer();          init_timer();
# Line 402  Line 425 
425          /*          /*
426           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
427           */           */
428  #ifdef BFRAMES  
429      xvid_err_memory5:
430    
431    
432            if (pEnc->mbParam.max_bframes > 0) {
433    
434                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
435                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
436                                                      pEnc->mbParam.edged_height);
437                    }
438                    xvid_free(pEnc->queue);
439            }
440    
441   xvid_err_memory4:   xvid_err_memory4:
         for (i=0; i<pEnc->mbParam.max_bframes; i++)  
         {  
442    
443                  if (pEnc->bframes[i] == NULL) continue;          if (pEnc->mbParam.max_bframes > 0) {
444    
445                  image_destroy(&pEnc->bframes[i]->image,                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
446                                pEnc->mbParam.edged_width,  
447                            if (pEnc->bframes[i] == NULL)
448                                    continue;
449    
450                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
451                                pEnc->mbParam.edged_height);                                pEnc->mbParam.edged_height);
452    
453                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
# Line 420  Line 457 
457          }          }
458    
459          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
460            }
 #endif  
461    
462   xvid_err_memory3:   xvid_err_memory3:
463  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
464          image_destroy(&pEnc->sOriginal,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
465                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
466  #endif  #endif
467    
468  #ifdef BFRAMES          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
         image_destroy(&pEnc->f_refh,  
                       pEnc->mbParam.edged_width,  
469                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
470          image_destroy(&pEnc->f_refv,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
471                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
472          image_destroy(&pEnc->f_refhv,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
473                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
 #endif  
474    
475          image_destroy(&pEnc->current->image,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
476                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
477          image_destroy(&pEnc->reference->image,          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
478                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
479          image_destroy(&pEnc->vInterH,          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
480                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
481          image_destroy(&pEnc->vInterV,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
482                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
483          image_destroy(&pEnc->vInterVf,          image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
484                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
485          image_destroy(&pEnc->vInterHV,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
486                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
487          image_destroy(&pEnc->vInterHVf,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
488                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
489    
490   xvid_err_memory2:   xvid_err_memory2:
# Line 492  Line 515 
515  int  int
516  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
517  {  {
518            int i;
519    
520          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
521    
522          /* B Frames specific */          /* B Frames specific */
523  #ifdef BFRAMES          if (pEnc->mbParam.max_bframes > 0) {
         int i;  
524    
525          for (i=0; i<pEnc->mbParam.max_bframes; i++)                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
526          {  
527                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
528                                              pEnc->mbParam.edged_height);
529                    }
530                    xvid_free(pEnc->queue);
531            }
532    
                 if (pEnc->bframes[i] == NULL) continue;  
533    
534                  image_destroy(&pEnc->bframes[i]->image,          if (pEnc->mbParam.max_bframes > 0) {
535                                pEnc->mbParam.edged_width,  
536                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
537    
538                            if (pEnc->bframes[i] == NULL)
539                                    continue;
540    
541                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
542                                pEnc->mbParam.edged_height);                                pEnc->mbParam.edged_height);
543    
544                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
545    
546                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
547          }          }
548    
549          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
550    
551  #endif          }
552    
553          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
554    
555          image_destroy(&pEnc->current->image,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
556                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
557          image_destroy(&pEnc->reference->image,          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
558                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
559          image_destroy(&pEnc->vInterH,          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
560                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
561          image_destroy(&pEnc->vInterV,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
562                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
563          image_destroy(&pEnc->vInterVf,          image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
564                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
565          image_destroy(&pEnc->vInterHV,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
566                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
567          image_destroy(&pEnc->vInterHVf,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
568                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
569  #ifdef BFRAMES  
570          image_destroy(&pEnc->f_refh,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
571                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
572          image_destroy(&pEnc->f_refv,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
573                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
574          image_destroy(&pEnc->f_refhv,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
575                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
576  #endif  
577  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
578          image_destroy(&pEnc->sOriginal,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
579                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
580  #endif  #endif
581    
# Line 570  Line 592 
592          return XVID_ERR_OK;          return XVID_ERR_OK;
593  }  }
594    
595    
596    static __inline void inc_frame_num(Encoder * pEnc)
597    {
598            pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
599            pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
600    }
601    
602    
603    static __inline void
604    queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
605    {
606            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
607            {
608                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
609                    return;
610            }
611    
612            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
613                                    pEnc->bframenum_head, pEnc->bframenum_tail,
614                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
615    
616    
617            start_timer();
618            if (image_input
619                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
620                     pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
621                    return;
622            stop_conv_timer();
623    
624            pEnc->queue_size++;
625            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
626    }
627    
628    static __inline void
629    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
630    {
631    
632                    pCur->ticks = (int32_t)pCur->stamp % time_base;
633                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
634    
635                    //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
636    
637    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
638                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
639                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
640                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
641                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
642                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
643    
644    */
645    }
646    
647    
648    
649    
650    
651  /*****************************************************************************  /*****************************************************************************
652   * 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.  
653   *   *
654   * Returned values :   * Returned values :
655   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 582  Line 657 
657   *                        format   *                        format
658   ****************************************************************************/   ****************************************************************************/
659    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
660  int  int
661  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
662                 XVID_ENC_FRAME * pFrame,                 XVID_ENC_FRAME * pFrame,
663                 XVID_ENC_STATS * pResult)                 XVID_ENC_STATS * pResult)
664  {  {
665          uint16_t x, y;          uint16_t x, y;
666          Bitstream bs;          Bitstream bs;
667          uint32_t bits;          uint32_t bits, mode;
668    
669            int input_valid = 1;
670            int bframes_count = 0;
671    
672  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
673          float psnr;          float psnr;
674          char temp[128];          char temp[128];
675  #endif  #endif
676    
677          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
678          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
679            ENC_CHECK(pFrame->image);
680    
681          start_global_timer();          start_global_timer();
682    
683          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
684    
685    ipvop_loop:
686    
687          /*          /*
688           * bframe "flush" code           * bframe "flush" code
689           */           */
690    
691          if ( (pFrame->image == NULL || pEnc->flush_bframes) &&          if ((pFrame->image == NULL || pEnc->flush_bframes)
692               (pEnc->bframenum_head < pEnc->bframenum_tail))                  && (pEnc->bframenum_head < pEnc->bframenum_tail)) {
         {  
693    
694                  if (pEnc->flush_bframes == 0)                  if (pEnc->flush_bframes == 0) {
                 {  
695                          /*                          /*
696                           * we have reached the end of stream without getting                           * we have reached the end of stream without getting
697                           * a future reference frame... so encode last final                           * a future reference frame... so encode last final
698                           * frame as a pframe                           * frame as a pframe
699                           */                           */
700    
701                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
702                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
703                            dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
704                          */  
705                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
706                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
707    
708                          SWAP(pEnc->current,                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
                              pEnc->bframes[pEnc->bframenum_tail]);  
709    
710                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
711                            bframes_count = 0;
712    
713                          BitstreamPad(&bs);                          BitstreamPad(&bs);
714                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
715                          pFrame->intra = 0;                          pFrame->intra = 0;
716    
717                            emms();
718    
719                          return XVID_ERR_OK;                          return XVID_ERR_OK;
720                  }                  }
721    
722                  /* ToDo : remove dprintf calls */  
723                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
724                    dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
725                  */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
726                  FrameCodeB(pEnc,  
727                             pEnc->bframes[pEnc->bframenum_head],                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
                            &bs,  
                            &bits);  
728                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
729    
730                    BitstreamPad(&bs);
731                    pFrame->length = BitstreamLength(&bs);
732                    pFrame->intra = 2;
733    
734                    if (input_valid)
735                            queue_image(pEnc, pFrame);
736    
737                    emms();
738    
739                    return XVID_ERR_OK;
740            }
741    
742            if (pEnc->bframenum_head > 0) {
743                    pEnc->bframenum_head = pEnc->bframenum_tail = 0;
744    
745                    /* write an empty marker to the bitstream.
746    
747                       for divx5 decoder compatibility, this marker must consist
748                       of a not-coded p-vop, with a time_base of zero, and time_increment
749                       indentical to the future-referece frame.
750                    */
751    
752                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
753                            int tmp;
754    
755                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
756                                    pEnc->bframenum_head, pEnc->bframenum_tail,
757                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
758    
759                  BitstreamPad(&bs);                  BitstreamPad(&bs);
760    
761                            tmp = pEnc->current->seconds;
762                            pEnc->current->seconds = 0; /* force time_base = 0 */
763                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
764                            pEnc->current->seconds = tmp;
765    
766                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
767                  pFrame->input_consumed = 0;                          pFrame->intra = 4;
768                  pFrame->intra = 0;  
769                            if (input_valid)
770                                    queue_image(pEnc, pFrame);
771    
772                            emms();
773    
774                  return XVID_ERR_OK;                  return XVID_ERR_OK;
775          }          }
776            }
777    
778    
779          if (pFrame->image == NULL)  bvop_loop:
780    
781            if (pEnc->bframenum_dx50bvop != -1)
782          {          {
                 pFrame->length = 0;  
                 pFrame->input_consumed = 1;  
                 pFrame->intra = 0;  
783    
784                  return XVID_ERR_OK;                  SWAP(pEnc->current, pEnc->reference);
785                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
786    
787                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
788                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
789          }          }
790    
791          if (pEnc->bframenum_head > 0)                  if (input_valid)
792          {          {
793                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                          queue_image(pEnc, pFrame);
794                            input_valid = 0;
795          }          }
796    
797          pEnc->flush_bframes = 0;          } else if (input_valid) {
798    
799          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%                  SWAP(pEnc->current, pEnc->reference);
800           * Well there was a separation here so i put it in ANSI C  
801           * comment style :-)                  start_timer();
802           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */                  if (image_input
803                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
804                            pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
805                    {
806                            emms();
807                            return XVID_ERR_FORMAT;
808                    }
809                    stop_conv_timer();
810    
811                    // queue input frame, and dequue next image
812                    if (pEnc->queue_size > 0)
813                    {
814                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
815                            if (pEnc->queue_head != pEnc->queue_tail)
816                            {
817                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
818                            }
819                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
820                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
821                    }
822    
823            } else if (pEnc->queue_size > 0) {
824    
825          SWAP(pEnc->current, pEnc->reference);          SWAP(pEnc->current, pEnc->reference);
826    
827          EMMS();                  image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
828                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
829                    pEnc->queue_size--;
830    
831            } else {
832    
833                    /* if nothing was encoded, write an 'ignore this frame' flag
834                       to the bitstream */
835    
836                    if (BitstreamPos(&bs) == 0) {
837    
838                            DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
839                                    pEnc->bframenum_head, pEnc->bframenum_tail,
840                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
841    
842                            BitstreamPutBits(&bs, 0x7f, 8);
843                            pFrame->intra = 5;
844                    }
845    
846                    pFrame->length = BitstreamLength(&bs);
847                    emms();
848                    return XVID_ERR_OK;
849            }
850    
851            pEnc->flush_bframes = 0;
852    
853            emms();
854    
855            // only inc frame num, adapt quant, etc. if we havent seen it before
856            if (pEnc->bframenum_dx50bvop < 0 )
857            {
858          if (pFrame->quant == 0)          if (pFrame->quant == 0)
859                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
860          else          else
861                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
862    
863          if(pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
864                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
865    
866          if(pEnc->current->quant > 31)          if(pEnc->current->quant > 31)
867                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
868    */
869          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
870          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
871          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
872          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
873          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
874          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
875    
876          start_timer();                  inc_frame_num(pEnc);
         if (image_input(&pEnc->current->image,  
                         pEnc->mbParam.width,  
                         pEnc->mbParam.height,  
                         pEnc->mbParam.edged_width,  
                         pFrame->image,  
                         pFrame->colorspace))  
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
877    
878  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
879          image_copy(&pEnc->sOriginal,                  image_copy(&pEnc->sOriginal, &pEnc->current->image,
880                     &pEnc->current->image,                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
                    pEnc->mbParam.edged_width,  
                    pEnc->mbParam.height);  
881  #endif  #endif
882    
883          EMMS();                  emms();
884    
885                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
886                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
887                                    "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
888                    }
889    
890          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
891           * Luminance masking           * Luminance masking
892           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
893    
894          if ((pEnc->current->global_flags & XVID_LUMIMASKING))                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
         {  
895                  int *temp_dquants =                  int *temp_dquants =
896                          (int *) xvid_malloc(pEnc->mbParam.mb_width * \                                  (int *) xvid_malloc(pEnc->mbParam.mb_width *
897                                              pEnc->mbParam.mb_height * \                                                                  pEnc->mbParam.mb_height * sizeof(int),
                                             sizeof(int),  
898                                              CACHE_LINE);                                              CACHE_LINE);
899    
900                  pEnc->current->quant =                  pEnc->current->quant =
901                          adaptive_quantization(pEnc->current->image.y,                          adaptive_quantization(pEnc->current->image.y,
902                                                pEnc->mbParam.edged_width,                                                                    pEnc->mbParam.edged_width, temp_dquants,
903                                                temp_dquants,                                                                    pEnc->current->quant, pEnc->current->quant,
                                               pEnc->current->quant,  
                                               pEnc->current->quant,  
904                                                2*pEnc->current->quant,                                                2*pEnc->current->quant,
905                                                pEnc->mbParam.mb_width,                                                pEnc->mbParam.mb_width,
906                                                pEnc->mbParam.mb_height);                                                pEnc->mbParam.mb_height);
907    
908                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
                 {  
909    
910                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
911    
912                          for (x = 0; x < pEnc->mbParam.mb_width; x++)                                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
913                          {                                          MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
914                                  MACROBLOCK *pMB =  
915                                          &pEnc->current->mbs[OFFSET(x,y)];                                          pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
                                 pMB->dquant =  
                                         iDQtab[temp_dquants[OFFSET(x,y)] + 2];  
916                          }                          }
917    
918                          #undef OFFSET                          #undef OFFSET
   
919                  }                  }
920    
921                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
922          }          }
923    
924            }
925    
926          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
927           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
928           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
929            pEnc->iFrameNum++;
930    
931            if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
932                    (pFrame->intra < 0 && pEnc->mbParam.iMaxKeyInterval > 0 &&
933                     pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval)
934                    || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,
935                                                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
936                                                                            (pFrame->intra < 0) ? pEnc->iFrameNum : 0,
937                                                                            bframes_count++))) {
938    
         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)  
         {  
939                  /*                  /*
940                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
941                   */                   */
942                    if ((pEnc->current->global_flags & XVID_QUARTERPEL))
943                            pEnc->mbParam.m_quarterpel = 1;
944                    else
945                            pEnc->mbParam.m_quarterpel = 0;
946    
947                  /* ToDo : Remove dprintf calls */                  if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;
                 /*  
                   dprintf("--- IFRAME ---");  
                 */  
948    
949                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
950                            if (pFrame->quant_intra_matrix != NULL)
951                                    set_intra_matrix(pFrame->quant_intra_matrix);
952                            if (pFrame->quant_inter_matrix != NULL)
953                                    set_inter_matrix(pFrame->quant_inter_matrix);
954                    }
955    
956    
957                    DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
958                                    pEnc->bframenum_head, pEnc->bframenum_tail,
959                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
960    
961                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
962                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
963                    }
964    
965                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
966    
967                    if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
968    
969                            pEnc->bframenum_tail--;
970                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
971    
972                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
973                            if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
974                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
975                            }
976                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
977                            bframes_count = 0;
978    
979                            pFrame->intra = 0;
980    
981                    } else {
982    
983                            FrameCodeI(pEnc, &bs, &bits);
984                            bframes_count = 0;
985                  pFrame->intra = 1;                  pFrame->intra = 1;
986    
987                            pEnc->bframenum_dx50bvop = -1;
988                    }
989    
990                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
991    
992                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
993                            BitstreamPadAlways(&bs);
994                            input_valid = 0;
995                            goto ipvop_loop;
996                    }
997    
998                  /*                  /*
999                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
1000                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1001                   */                   */
1002          }          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1003          else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes)  //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
         {  
1004                  /*                  /*
1005                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1006                   */                   */
1007    
1008                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1009                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1010                    dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1011                  */  
1012                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1013                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1014                    }
1015    
1016                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1017                    bframes_count = 0;
1018                  pFrame->intra = 0;                  pFrame->intra = 0;
1019                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1020    
1021                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1022                            BitstreamPadAlways(&bs);
1023                            input_valid = 0;
1024                            goto ipvop_loop;
1025          }          }
         else  
         {  
                 /*  
                  * This will be coded as a Bidirectional Frame  
                  */  
1026    
1027                  /* ToDo : Remove dprintf calls */          } else {
1028                  /*                  /*
1029                    dprintf("--- BFRAME (store) ---  head=%i tail=%i",                   * This will be coded as a Bidirectional Frame
                   pEnc->bframenum_head,  
                   pEnc->bframenum_tail);  
1030                  */                  */
1031    
1032                  if (pFrame->bquant < 1)                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1033                  {                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
                         pEnc->current->quant =  
                                 ((pEnc->reference->quant+pEnc->current->quant)*\  
                                  pEnc->bquant_ratio) / 200;  
1034                  }                  }
1035                  else  
1036                  {                  if (pFrame->bquant < 1) {
1037                            pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1038                                    pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1039    
1040                    } else {
1041                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1042                  }                  }
1043    
1044                    if (pEnc->current->quant < 1)
1045                            pEnc->current->quant = 1;
1046                    else if (pEnc->current->quant > 31)
1047                pEnc->current->quant = 31;
1048    
1049                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1050                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1051                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1052    
1053                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1054                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1055                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
1056    
1057                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1058    
1059                  pFrame->intra = 0;  // bframe report by koepi
1060                  pFrame->length = 0;                  pFrame->intra = 2;
1061                  pFrame->input_consumed = 1;                  pFrame->length = 0;
   
                 pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;  
                 if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)  
                 {  
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
                 }  
1062    
1063                  return XVID_ERR_OK;                  input_valid = 0;
1064                    goto bvop_loop;
1065          }          }
1066    
1067          BitstreamPad(&bs);          BitstreamPad(&bs);
1068          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1069    
1070          if (pResult)          if (pResult) {
         {  
1071                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1072                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits/8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1073                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1074                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1075                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1076          }          }
1077    
1078          EMMS();          emms();
1079    
1080  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1081          psnr = image_psnr(&pEnc->sOriginal,          psnr =
1082                            &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1083                            pEnc->mbParam.edged_width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
                           pEnc->mbParam.width,  
1084                            pEnc->mbParam.height);                            pEnc->mbParam.height);
1085    
1086          snprintf(temp, 127, "PSNR: %f\n", psnr);          snprintf(temp, 127, "PSNR: %f\n", psnr);
1087          DEBUG(temp);          DEBUG(temp);
1088  #endif  #endif
1089    
1090          if (pFrame->quant == 0)          if (pFrame->quant == 0) {
1091          {                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1092                  RateControlUpdate(&pEnc->rate_control,                                                    pFrame->length, pFrame->intra);
                                   pEnc->current->quant,  
                                   pFrame->length,  
                                   pFrame->intra);  
         }  
   
         pEnc->iFrameNum++;  
         pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;  
         if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)  
         {  
                 pEnc->mbParam.m_seconds++;  
                 pEnc->mbParam.m_ticks = 0;  
1093          }          }
         pFrame->input_consumed = 1;  
1094    
1095          stop_global_timer();          stop_global_timer();
1096          write_timer();          write_timer();
1097    
1098            emms();
1099          return XVID_ERR_OK;          return XVID_ERR_OK;
1100  }  }
1101  #else  
1102    
1103    
1104  /*****************************************************************************  /*****************************************************************************
1105   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1106     *
1107     * Returned values :
1108     *    - XVID_ERR_OK     - no errors
1109     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1110     *                        format
1111   ****************************************************************************/   ****************************************************************************/
1112    
1113  int  int
1114  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1115                 XVID_ENC_FRAME * pFrame,                 XVID_ENC_FRAME * pFrame,
# Line 924  Line 1119 
1119          Bitstream bs;          Bitstream bs;
1120          uint32_t bits;          uint32_t bits;
1121          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1122  #ifdef _DEBUG  
1123    #ifdef _DEBUG_PSNR
1124          float psnr;          float psnr;
1125          uint8_t temp[128];          uint8_t temp[128];
1126  #endif  #endif
# Line 942  Line 1138 
1138          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1139          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1140    
1141            inc_frame_num(pEnc);
1142    
1143            /* disable alternate scan flag if interlacing is not enabled */
1144            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1145                    !(pEnc->current->global_flags & XVID_INTERLACING))
1146            {
1147                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1148            }
1149    
1150          start_timer();          start_timer();
1151          if (image_input(&pEnc->current->image,          if (image_input
1152                          pEnc->mbParam.width,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1153                          pEnc->mbParam.height,                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
                         pEnc->mbParam.edged_width,  
                         pFrame->image,  
                         pFrame->colorspace) < 0)  
1154                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1155          stop_conv_timer();          stop_conv_timer();
1156    
1157  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1158          image_copy(&pEnc->sOriginal,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1159                     &pEnc->current->image,                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
                    pEnc->mbParam.edged_width,  
                    pEnc->mbParam.height);  
1160  #endif  #endif
1161    
1162          EMMS();          emms();
1163    
1164          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
1165    
1166          if (pFrame->quant == 0)          if (pFrame->quant == 0) {
         {  
1167                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control,0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control,0);
1168          }          } else {
         else  
         {  
1169                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1170          }          }
1171    
1172          if ((pEnc->current->global_flags & XVID_LUMIMASKING))          if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1173          {                  pEnc->mbParam.m_quarterpel = 1;
1174                  int * temp_dquants = (int *)          else
1175                          xvid_malloc(pEnc->mbParam.mb_width * \                  pEnc->mbParam.m_quarterpel = 0;
1176                                      pEnc->mbParam.mb_height * \  
1177                                      sizeof(int),          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1178                    int *temp_dquants =
1179                            (int *) xvid_malloc(pEnc->mbParam.mb_width *
1180                                                                    pEnc->mbParam.mb_height * sizeof(int),
1181                                      CACHE_LINE);                                      CACHE_LINE);
1182    
1183                  pEnc->current->quant =                  pEnc->current->quant =
1184                          adaptive_quantization(pEnc->current->image.y,                          adaptive_quantization(pEnc->current->image.y,
1185                                                pEnc->mbParam.edged_width,                                                                    pEnc->mbParam.edged_width, temp_dquants,
1186                                                temp_dquants,                                                                    pEnc->current->quant, pEnc->current->quant,
                                               pEnc->current->quant,  
                                               pEnc->current->quant,  
1187                                                2*pEnc->current->quant,                                                2*pEnc->current->quant,
1188                                                pEnc->mbParam.mb_width,                                                pEnc->mbParam.mb_width,
1189                                                pEnc->mbParam.mb_height);                                                pEnc->mbParam.mb_height);
1190    
1191                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                  for (y = 0; y < pEnc->mbParam.mb_height; y++) {
                 {  
1192    
1193                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
1194    
1195                          for (x = 0; x < pEnc->mbParam.mb_width; x++)                          for (x = 0; x < pEnc->mbParam.mb_width; x++) {
                         {  
1196    
1197    
1198                                  MACROBLOCK *pMB =                                  MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
1199                                          &pEnc->current->mbs[OFFSET(x,y)];  
1200                                  pMB->dquant =                                  pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
                                         iDQtab[temp_dquants[OFFSET(x,y)] + 2];  
1201                          }                          }
1202    
1203                          #undef OFFSET                          #undef OFFSET
# Line 1011  Line 1206 
1206                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
1207          }          }
1208    
1209          if (pEnc->current->global_flags & XVID_H263QUANT)          if (pEnc->current->global_flags & XVID_H263QUANT) {
         {  
1210                  if(pEnc->mbParam.m_quant_type != H263_QUANT)                  if(pEnc->mbParam.m_quant_type != H263_QUANT)
1211                          write_vol_header = 1;                          write_vol_header = 1;
1212                  pEnc->mbParam.m_quant_type = H263_QUANT;                  pEnc->mbParam.m_quant_type = H263_QUANT;
1213          }          } else if (pEnc->current->global_flags & XVID_MPEGQUANT) {
         else if (pEnc->current->global_flags & XVID_MPEGQUANT)  
         {  
1214                  int matrix1_changed, matrix2_changed;                  int matrix1_changed, matrix2_changed;
1215    
1216                  matrix1_changed = matrix2_changed = 0;                  matrix1_changed = matrix2_changed = 0;
# Line 1030  Line 1222 
1222    
1223                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
1224                          if(pFrame->quant_intra_matrix != NULL)                          if(pFrame->quant_intra_matrix != NULL)
1225                                  matrix1_changed =                                  matrix1_changed = set_intra_matrix(pFrame->quant_intra_matrix);
                                         set_intra_matrix(pFrame->quant_intra_matrix);  
1226                          if(pFrame->quant_inter_matrix != NULL)                          if(pFrame->quant_inter_matrix != NULL)
1227                                  matrix2_changed                                  matrix2_changed = set_inter_matrix(pFrame->quant_inter_matrix);
1228                                          = set_inter_matrix(pFrame->quant_inter_matrix);                  } else {
                 }  
                 else {  
1229                          matrix1_changed = set_intra_matrix(get_default_intra_matrix());                          matrix1_changed = set_intra_matrix(get_default_intra_matrix());
1230                          matrix2_changed = set_inter_matrix(get_default_inter_matrix());                          matrix2_changed = set_inter_matrix(get_default_inter_matrix());
1231                  }                  }
# Line 1044  Line 1233 
1233                          write_vol_header = matrix1_changed | matrix2_changed;                          write_vol_header = matrix1_changed | matrix2_changed;
1234          }          }
1235    
1236          if (pFrame->intra < 0)          if (pFrame->intra < 0) {
1237          {                  if ((pEnc->iFrameNum == 0)
1238                  if ((pEnc->iFrameNum == 0) ||                          || ((pEnc->mbParam.iMaxKeyInterval > 0)
1239                                    && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {
1240                      ((pEnc->iMaxKeyInterval > 0) &&                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1241                       (pEnc->iFrameNum >= pEnc->iMaxKeyInterval)))                  } else {
1242                  {                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
1243                          pFrame->intra = FrameCodeI(pEnc,                  }
1244                                                     &bs,          } else {
1245                                                     &bits);                  if (pFrame->intra == 1) {
1246                  }                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1247                  else                  } else {
1248                  {                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, write_vol_header);
                         pFrame->intra = FrameCodeP(pEnc,  
                                                    &bs,  
                                                    &bits,  
                                                    0,  
                                                    write_vol_header);  
                 }  
         }  
         else  
         {  
                 if (pFrame->intra == 1)  
                 {  
                         pFrame->intra = FrameCodeI(pEnc,  
                                                    &bs,  
                                                    &bits);  
                 }  
                 else  
                 {  
                         pFrame->intra = FrameCodeP(pEnc,  
                                                    &bs,  
                                                    &bits,  
                                                    1,  
                                                    write_vol_header);  
1249                  }                  }
1250    
1251          }          }
# Line 1088  Line 1255 
1255          BitstreamPad(&bs);          BitstreamPad(&bs);
1256          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1257    
1258          if (pResult)          if (pResult) {
         {  
1259                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1260                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1261                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1262                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1263                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1264          }          }
1265    
1266          EMMS();          emms();
   
         if (pFrame->quant == 0)  
         {  
                 RateControlUpdate(&pEnc->rate_control,  
                                   pEnc->current->quant,  
                                   pFrame->length,  
                                   pFrame->intra);  
         }  
1267    
1268  #ifdef _DEBUG          if (pFrame->quant == 0) {
1269          psnr = image_psnr(&pEnc->sOriginal,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1270                            &pEnc->current->image,                                                    pFrame->length, pFrame->intra);
1271                            pEnc->mbParam.edged_width,          }
1272                            pEnc->mbParam.width,  #ifdef _DEBUG_PSNR
1273            psnr =
1274                    image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1275                                       pEnc->mbParam.edged_width, pEnc->mbParam.width,
1276                            pEnc->mbParam.height);                            pEnc->mbParam.height);
1277    
1278          snprintf(temp, 127, "PSNR: %f\n", psnr);          snprintf(temp, 127, "PSNR: %f\n", psnr);
# Line 1125  Line 1286 
1286    
1287          return XVID_ERR_OK;          return XVID_ERR_OK;
1288  }  }
 #endif  
1289    
1290    
1291  static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {  static __inline void
1292    CodeIntraMB(Encoder * pEnc,
1293                            MACROBLOCK * pMB)
1294    {
1295    
1296          pMB->mode = MODE_INTRA;          pMB->mode = MODE_INTRA;
1297    
# Line 1139  Line 1302 
1302          pMB->sad16 = 0;          pMB->sad16 = 0;
1303    
1304          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1305                  if(pMB->dquant != NO_CHANGE)                  if (pMB->dquant != NO_CHANGE) {
                 {  
1306                          pMB->mode = MODE_INTRA_Q;                          pMB->mode = MODE_INTRA_Q;
1307                          pEnc->current->quant += DQtab[pMB->dquant];                          pEnc->current->quant += DQtab[pMB->dquant];
1308    
1309                          if (pEnc->current->quant > 31) pEnc->current->quant = 31;                          if (pEnc->current->quant > 31)
1310                          if (pEnc->current->quant < 1) pEnc->current->quant = 1;                                  pEnc->current->quant = 31;
1311                            if (pEnc->current->quant < 1)
1312                                    pEnc->current->quant = 1;
1313                  }                  }
1314          }          }
1315    
# Line 1156  Line 1320 
1320  #define FCODEBITS       3  #define FCODEBITS       3
1321  #define MODEBITS        5  #define MODEBITS        5
1322    
1323  void HintedMESet(Encoder * pEnc, int * intra)  void
1324    HintedMESet(Encoder * pEnc,
1325                            int *intra)
1326  {  {
1327          HINTINFO * hint;          HINTINFO * hint;
1328          Bitstream bs;          Bitstream bs;
# Line 1165  Line 1331 
1331    
1332          hint = pEnc->mbParam.hint;          hint = pEnc->mbParam.hint;
1333    
1334          if (hint->rawhints)          if (hint->rawhints) {
         {  
1335                  *intra = hint->mvhint.intra;                  *intra = hint->mvhint.intra;
1336          }          } else {
         else  
         {  
1337                  BitstreamInit(&bs, hint->hintstream, hint->hintlength);                  BitstreamInit(&bs, hint->hintstream, hint->hintlength);
1338                  *intra = BitstreamGetBit(&bs);                  *intra = BitstreamGetBit(&bs);
1339          }          }
1340    
1341          if (*intra)          if (*intra) {
         {  
1342                  return;                  return;
1343          }          }
1344    
1345          pEnc->current->fcode = (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs, FCODEBITS);          pEnc->current->fcode =
1346                    (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs,
1347                                                                                                                                     FCODEBITS);
1348    
1349          length  = pEnc->current->fcode + 5;          length  = pEnc->current->fcode + 5;
1350          high    = 1 << (length - 1);          high    = 1 << (length - 1);
1351    
1352          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)          for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
1353          {                  for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
1354                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)                          MACROBLOCK *pMB =
1355                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1356                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                          MVBLOCKHINT *bhint =
1357                          MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1358                          VECTOR pred[4];                          VECTOR pred;
1359                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1360                          int vec;                          int vec;
1361    
1362                          pMB->mode = (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs, MODEBITS);                          pMB->mode =
1363                                    (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs,
1364                                                                                                                                      MODEBITS);
1365    
1366                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;
1367                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;
1368    
1369                          if (pMB->mode == MODE_INTER)                          if (pMB->mode == MODE_INTER) {
1370                          {                                  tmp.x =
1371                                  tmp.x  = (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs, length);                                          (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs,
1372                                  tmp.y  = (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs, length);                                                                                                                                                    length);
1373                                    tmp.y =
1374                                            (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs,
1375                                                                                                                                                      length);
1376                                  tmp.x -= (tmp.x >= high) ? high*2 : 0;                                  tmp.x -= (tmp.x >= high) ? high*2 : 0;
1377                                  tmp.y -= (tmp.y >= high) ? high*2 : 0;                                  tmp.y -= (tmp.y >= high) ? high*2 : 0;
1378    
1379                                  get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, 0, pred, dummy);                                  pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,0);
1380    
1381                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1382                                          pMB->mvs[vec].x  = tmp.x;                                          pMB->mvs[vec].x  = tmp.x;
1383                                          pMB->mvs[vec].y  = tmp.y;                                          pMB->mvs[vec].y  = tmp.y;
1384                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1385                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
                                 }  
1386                          }                          }
1387                          else if (pMB->mode == MODE_INTER4V)                          } else if (pMB->mode == MODE_INTER4V) {
1388                          {                                  for (vec = 0; vec < 4; ++vec) {
1389                                  for (vec=0 ; vec<4 ; ++vec)                                          tmp.x =
1390                                  {                                                  (hint->rawhints) ? bhint->mvs[vec].
1391                                          tmp.x  = (hint->rawhints) ? bhint->mvs[vec].x : BitstreamGetBits(&bs, length);                                                  x : BitstreamGetBits(&bs, length);
1392                                          tmp.y  = (hint->rawhints) ? bhint->mvs[vec].y : BitstreamGetBits(&bs, length);                                          tmp.y =
1393                                                    (hint->rawhints) ? bhint->mvs[vec].
1394                                                    y : BitstreamGetBits(&bs, length);
1395                                          tmp.x -= (tmp.x >= high) ? high*2 : 0;                                          tmp.x -= (tmp.x >= high) ? high*2 : 0;
1396                                          tmp.y -= (tmp.y >= high) ? high*2 : 0;                                          tmp.y -= (tmp.y >= high) ? high*2 : 0;
1397    
1398                                          get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, vec, pred, dummy);                                          pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,vec);
1399    
1400                                          pMB->mvs[vec].x  = tmp.x;                                          pMB->mvs[vec].x  = tmp.x;
1401                                          pMB->mvs[vec].y  = tmp.y;                                          pMB->mvs[vec].y  = tmp.y;
1402                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1403                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1404                                  }                                  }
1405                          }                          } else                          // intra / stuffing / not_coded
                         else    // intra / stuffing / not_coded  
                         {  
                                 for (vec=0 ; vec<4 ; ++vec)  
1406                                  {                                  {
1407                                    for (vec = 0; vec < 4; ++vec) {
1408                                          pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;                                          pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;
1409                                  }                                  }
1410                          }                          }
1411    
1412                          if (pMB->mode == MODE_INTER4V &&                          if (pMB->mode == MODE_INTER4V &&
1413                                  (pEnc->current->global_flags & XVID_LUMIMASKING) && pMB->dquant != NO_CHANGE)                                  (pEnc->current->global_flags & XVID_LUMIMASKING)
1414                          {                                  && pMB->dquant != NO_CHANGE) {
1415                                  pMB->mode = MODE_INTRA;                                  pMB->mode = MODE_INTRA;
1416    
1417                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1418                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;
1419                                  }                                  }
1420                          }                          }
# Line 1258  Line 1423 
1423  }  }
1424    
1425    
1426  void HintedMEGet(Encoder * pEnc, int intra)  void
1427    HintedMEGet(Encoder * pEnc,
1428                            int intra)
1429  {  {
1430          HINTINFO * hint;          HINTINFO * hint;
1431          Bitstream bs;          Bitstream bs;
# Line 1267  Line 1434 
1434    
1435          hint = pEnc->mbParam.hint;          hint = pEnc->mbParam.hint;
1436    
1437          if (hint->rawhints)          if (hint->rawhints) {
         {  
1438                  hint->mvhint.intra = intra;                  hint->mvhint.intra = intra;
1439          }          } else {
         else  
         {  
1440                  BitstreamInit(&bs, hint->hintstream, 0);                  BitstreamInit(&bs, hint->hintstream, 0);
1441                  BitstreamPutBit(&bs, intra);                  BitstreamPutBit(&bs, intra);
1442          }          }
1443    
1444          if (intra)          if (intra) {
1445          {                  if (!hint->rawhints) {
                 if (!hint->rawhints)  
                 {  
1446                          BitstreamPad(&bs);                          BitstreamPad(&bs);
1447                          hint->hintlength = BitstreamLength(&bs);                          hint->hintlength = BitstreamLength(&bs);
1448                  }                  }
# Line 1290  Line 1452 
1452          length  = pEnc->current->fcode + 5;          length  = pEnc->current->fcode + 5;
1453          high    = 1 << (length - 1);          high    = 1 << (length - 1);
1454    
1455          if (hint->rawhints)          if (hint->rawhints) {
         {  
1456                  hint->mvhint.fcode = pEnc->current->fcode;                  hint->mvhint.fcode = pEnc->current->fcode;
1457          }          } else {
         else  
         {  
1458                  BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);                  BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);
1459          }          }
1460    
1461          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)          for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
1462          {                  for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
1463                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)                          MACROBLOCK *pMB =
1464                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1465                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                          MVBLOCKHINT *bhint =
1466                          MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1467                          VECTOR tmp;                          VECTOR tmp;
1468    
1469                          if (hint->rawhints)                          if (hint->rawhints) {
                         {  
1470                                  bhint->mode = pMB->mode;                                  bhint->mode = pMB->mode;
1471                          }                          } else {
                         else  
                         {  
1472                                  BitstreamPutBits(&bs, pMB->mode, MODEBITS);                                  BitstreamPutBits(&bs, pMB->mode, MODEBITS);
1473                          }                          }
1474    
1475                          if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)                          if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q) {
                         {  
1476                                  tmp.x  = pMB->mvs[0].x;                                  tmp.x  = pMB->mvs[0].x;
1477                                  tmp.y  = pMB->mvs[0].y;                                  tmp.y  = pMB->mvs[0].y;
1478                                  tmp.x += (tmp.x < 0) ? high*2 : 0;                                  tmp.x += (tmp.x < 0) ? high*2 : 0;
1479                                  tmp.y += (tmp.y < 0) ? high*2 : 0;                                  tmp.y += (tmp.y < 0) ? high*2 : 0;
1480    
1481                                  if (hint->rawhints)                                  if (hint->rawhints) {
                                 {  
1482                                          bhint->mvs[0].x = tmp.x;                                          bhint->mvs[0].x = tmp.x;
1483                                          bhint->mvs[0].y = tmp.y;                                          bhint->mvs[0].y = tmp.y;
1484                                  }                                  } else {
                                 else  
                                 {  
1485                                          BitstreamPutBits(&bs, tmp.x, length);                                          BitstreamPutBits(&bs, tmp.x, length);
1486                                          BitstreamPutBits(&bs, tmp.y, length);                                          BitstreamPutBits(&bs, tmp.y, length);
1487                                  }                                  }
1488                          }                          } else if (pMB->mode == MODE_INTER4V) {
                         else if (pMB->mode == MODE_INTER4V)  
                         {  
1489                                  int vec;                                  int vec;
1490    
1491                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1492                                          tmp.x  = pMB->mvs[vec].x;                                          tmp.x  = pMB->mvs[vec].x;
1493                                          tmp.y  = pMB->mvs[vec].y;                                          tmp.y  = pMB->mvs[vec].y;
1494                                          tmp.x += (tmp.x < 0) ? high*2 : 0;                                          tmp.x += (tmp.x < 0) ? high*2 : 0;
1495                                          tmp.y += (tmp.y < 0) ? high*2 : 0;                                          tmp.y += (tmp.y < 0) ? high*2 : 0;
1496    
1497                                          if (hint->rawhints)                                          if (hint->rawhints) {
                                         {  
1498                                                  bhint->mvs[vec].x = tmp.x;                                                  bhint->mvs[vec].x = tmp.x;
1499                                                  bhint->mvs[vec].y = tmp.y;                                                  bhint->mvs[vec].y = tmp.y;
1500                                          }                                          } else {
                                         else  
                                         {  
1501                                                  BitstreamPutBits(&bs, tmp.x, length);                                                  BitstreamPutBits(&bs, tmp.x, length);
1502                                                  BitstreamPutBits(&bs, tmp.y, length);                                                  BitstreamPutBits(&bs, tmp.y, length);
1503                                          }                                          }
# Line 1360  Line 1506 
1506                  }                  }
1507          }          }
1508    
1509          if (!hint->rawhints)          if (!hint->rawhints) {
         {  
1510                  BitstreamPad(&bs);                  BitstreamPad(&bs);
1511                  hint->hintlength = BitstreamLength(&bs);                  hint->hintlength = BitstreamLength(&bs);
1512          }          }
1513  }  }
1514    
1515    
1516  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits)  static int
1517    FrameCodeI(Encoder * pEnc,
1518                       Bitstream * bs,
1519                       uint32_t * pBits)
1520  {  {
1521            int mb_width = pEnc->mbParam.mb_width;
1522            int mb_height = pEnc->mbParam.mb_height;
1523    
1524          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1525          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);
1526    
1527          uint16_t x, y;          uint16_t x, y;
1528    
1529            if ((pEnc->current->global_flags & XVID_REDUCED))
1530            {
1531                    mb_width = (pEnc->mbParam.width + 31) / 32;
1532                    mb_height = (pEnc->mbParam.height + 31) / 32;
1533    
1534                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1535                    /* XXX: setedges is overkill */
1536                    start_timer();
1537                    image_setedges(&pEnc->current->image,
1538                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1539                            pEnc->mbParam.width, pEnc->mbParam.height);
1540                    stop_edges_timer();
1541            }
1542    
1543          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1544          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1545          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1546            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1547          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1548    
1549          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1550          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1551            /* XXX: move this stuff to BitstreamWriteVolHeader */
1552    #define DIVX501B481P "DivX501b481p"
1553            if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
1554                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1555            }
1556    
1557    #define XVID_ID "XviD" XVID_BS_VERSION
1558            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1559    
1560            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1561            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1562    
1563          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1564    
1565          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1566          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1567          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1568    
1569          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1570                  for (x = 0; x < pEnc->mbParam.mb_width; x++)                  for (x = 0; x < mb_width; x++) {
1571                  {                          MACROBLOCK *pMB =
1572                          MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1573    
1574                          CodeIntraMB(pEnc, pMB);                          CodeIntraMB(pEnc, pMB);
1575    
1576                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1577                                                              dct_codes, qcoeff);
1578    
1579                          start_timer();                          start_timer();
1580                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1581                          stop_prediction_timer();                          stop_prediction_timer();
1582    
1583                          start_timer();                          start_timer();
1584                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          if (pEnc->current->global_flags & XVID_GREYSCALE)
1585                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1586                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1587                                    qcoeff[5*64+0]=0;
1588                            }
1589                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1590                          stop_coding_timer();                          stop_coding_timer();
1591                  }                  }
1592    
1593            if ((pEnc->current->global_flags & XVID_REDUCED))
1594            {
1595                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1596                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width);
1597            }
1598          emms();          emms();
1599    
1600          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1601          pEnc->sStat.fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1602          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1603    
1604          if (pEnc->current->global_flags & XVID_HINTEDME_GET)          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
         {  
1605                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1606          }          }
1607    
# Line 1426  Line 1610 
1610    
1611    
1612  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1613    #define BFRAME_SKIP_THRESHHOLD 30
1614    
1615  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header)  static int
1616    FrameCodeP(Encoder * pEnc,
1617                       Bitstream * bs,
1618                       uint32_t * pBits,
1619                       bool force_inter,
1620                       bool vol_header)
1621  {  {
1622          float fSigma;          float fSigma;
1623    
1624          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1625          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);
1626    
1627            int mb_width = pEnc->mbParam.mb_width;
1628            int mb_height = pEnc->mbParam.mb_height;
1629    
1630          int iLimit;          int iLimit;
1631          uint32_t x, y;          int x, y, k;
1632          int iSearchRange;          int iSearchRange;
1633          int bIntra;          int bIntra, skip_possible;
1634    
1635          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1636          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1637    
1638            if ((pEnc->current->global_flags & XVID_REDUCED))
1639            {
1640                    mb_width = (pEnc->mbParam.width + 31) / 32;
1641                    mb_height = (pEnc->mbParam.height + 31) / 32;
1642            }
1643    
1644    
1645          start_timer();          start_timer();
1646          image_setedges(pRef,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1647                         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);  
1648          stop_edges_timer();          stop_edges_timer();
1649    
1650          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1651          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1652            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1653          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1654    
1655          if (!force_inter)          if (!force_inter)
1656                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
1657          else          else
1658                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1659    
1660          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1661                  start_timer();                  start_timer();
1662                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1663                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1664                                                      pEnc->mbParam.edged_height,
1665                                                      pEnc->mbParam.m_quarterpel,
1666                                    pEnc->current->rounding_type);                                    pEnc->current->rounding_type);
1667                  stop_inter_timer();                  stop_inter_timer();
1668          }          }
1669    
1670            if (pEnc->current->global_flags & XVID_GMC) {
1671    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1672                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1673                    pEnc->current->coding_type = S_VOP;
1674            } else
1675                    pEnc->current->coding_type = P_VOP;
1676    
1677          start_timer();          start_timer();
1678          if (pEnc->current->global_flags & XVID_HINTEDME_SET)          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
         {  
1679                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1680            if (bIntra == 0) {
1681                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1682                                                                                            &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1683          }          }
1684          else  
1685          {          } else {
1686                  bIntra = MotionEstimation(  
1687                          &pEnc->mbParam,                  bIntra =
1688                          pEnc->current,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1689                          pEnc->reference,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
                         &pEnc->vInterH,  
                         &pEnc->vInterV,  
                         &pEnc->vInterHV,  
1690                          iLimit);                          iLimit);
1691          }          }
1692          stop_motion_timer();          stop_motion_timer();
1693    
1694          if (bIntra == 1)          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1695          {  
1696                  return FrameCodeI(pEnc, bs, pBits);          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1697          }                          pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1698    
         pEnc->current->coding_type = P_VOP;  
1699    
1700          if(vol_header)          if(vol_header)
1701                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1702    
1703          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1704            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1705            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1706    
1707          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1708    
1709          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1710          pEnc->sStat.iMvSum = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
         pEnc->sStat.iMvCount = 0;  
         pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;  
1711    
1712          for(y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++) {
1713          {                  for (x = 0; x < mb_width; x++) {
1714                  for(x = 0; x < pEnc->mbParam.mb_width; x++)                          MACROBLOCK *pMB =
1715                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
                         MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
1716    
1717                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1718    
1719                          if (!bIntra)                          if (!bIntra) {
                         {  
1720                                  start_timer();                                  start_timer();
1721                                  MBMotionCompensation(pMB,                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
1722                                                       x, y,                                                                           &pEnc->vInterH, &pEnc->vInterV,
1723                                                       &pEnc->reference->image,                                                                           &pEnc->vInterHV, &pEnc->current->image,
1724                                                       &pEnc->vInterH,                                                                           dct_codes, pEnc->mbParam.width,
                                                      &pEnc->vInterV,  
                                                      &pEnc->vInterHV,  
                                                      &pEnc->current->image,  
                                                      dct_codes,  
                                                      pEnc->mbParam.width,  
1725                                                       pEnc->mbParam.height,                                                       pEnc->mbParam.height,
1726                                                       pEnc->mbParam.edged_width,                                                       pEnc->mbParam.edged_width,
1727                                                                             pEnc->mbParam.m_quarterpel,
1728                                                                             (pEnc->current->global_flags & XVID_REDUCED),
1729                                                       pEnc->current->rounding_type);                                                       pEnc->current->rounding_type);
1730                                  stop_comp_timer();                                  stop_comp_timer();
1731    
# Line 1534  Line 1733 
1733                                          if(pMB->dquant != NO_CHANGE) {                                          if(pMB->dquant != NO_CHANGE) {
1734                                                  pMB->mode = MODE_INTER_Q;                                                  pMB->mode = MODE_INTER_Q;
1735                                                  pEnc->current->quant += DQtab[pMB->dquant];                                                  pEnc->current->quant += DQtab[pMB->dquant];
1736                                                  if (pEnc->current->quant > 31) pEnc->current->quant = 31;                                                  if (pEnc->current->quant > 31)
1737                                                  else if(pEnc->current->quant < 1) pEnc->current->quant = 1;                                                          pEnc->current->quant = 31;
1738                                                    else if (pEnc->current->quant < 1)
1739                                                            pEnc->current->quant = 1;
1740                                          }                                          }
1741                                  }                                  }
1742                                  pMB->quant = pEnc->current->quant;                                  pMB->quant = pEnc->current->quant;
1743    
1744                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1745    
1746                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                                  if (pMB->mode != MODE_NOT_CODED)
1747                          }                                          pMB->cbp =
1748                          else                                                  MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1749                          {                                                                                    dct_codes, qcoeff);
1750                            } else {
1751                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1752                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1753                                                                      dct_codes, qcoeff);
1754                          }                          }
1755    
1756                          start_timer();                          start_timer();
1757                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1758                          stop_prediction_timer();                          stop_prediction_timer();
1759    
1760                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
1761                                    pEnc->current->sStat.kblks++;
1762                            } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1763                                               pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1764                                               pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1765                                    pEnc->current->sStat.mblks++;
1766                            }  else {
1767                                    pEnc->current->sStat.ublks++;
1768                            }
1769    
1770                            start_timer();
1771    
1772                            /* Finished processing the MB, now check if to CODE or SKIP */
1773    
1774                            skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1775                                                            (pMB->dquant == NO_CHANGE);
1776    
1777                            if(pEnc->mbParam.m_quarterpel)
1778                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1779                            }
1780                            else
1781                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1782                            }
1783    
1784                            if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1785    
1786    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1787                                    int bSkip = 1;
1788    
1789                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1790                                            for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1791                          {                          {
1792                                  pEnc->sStat.kblks++;                                                  int iSAD;
1793                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1794                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1795                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1796                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1797                                                    {       bSkip = 0;
1798                                                            break;
1799                          }                          }
1800                          else if (pMB->cbp ||                                          }
1801                                   pMB->mvs[0].x || pMB->mvs[0].y ||  
1802                                   pMB->mvs[1].x || pMB->mvs[1].y ||                                  if (!bSkip)
                                  pMB->mvs[2].x || pMB->mvs[2].y ||  
                                  pMB->mvs[3].x || pMB->mvs[3].y)  
1803                          {                          {
1804                                  pEnc->sStat.mblks++;                                          VECTOR predMV;
1805                                            if(pEnc->mbParam.m_quarterpel) {
1806                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1807                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1808                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1809                                            }
1810                                            else {
1811                                                    predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1812                                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1813                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1814                                            }
1815                                            pMB->mode = MODE_INTER;
1816                                            pMB->cbp = 0;
1817                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1818                          }                          }
1819                          else                          else
1820                          {                          {
1821                                  pEnc->sStat.ublks++;                                          pMB->mode = MODE_NOT_CODED;
1822                                            MBSkip(bs);
1823                                    }
1824    
1825                            } else {
1826                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1827                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1828                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1829                                            qcoeff[5*64+0]=0;
1830                                    }
1831                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1832                          }                          }
1833    
                         start_timer();  
                         MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);  
1834                          stop_coding_timer();                          stop_coding_timer();
1835                  }                  }
1836          }          }
1837    
1838            if ((pEnc->current->global_flags & XVID_REDUCED))
1839            {
1840                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1841                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width);
1842            }
1843    
1844          emms();          emms();
1845    
1846          if (pEnc->current->global_flags & XVID_HINTEDME_GET)          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
         {  
1847                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1848          }          }
1849    
1850          if (pEnc->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
1851                  pEnc->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
1852    
1853          fSigma = (float)sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
1854    
1855          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1856    
1857          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1858              && (pEnc->mbParam.m_fcode <= 3))    // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1859          {          {
1860                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1861                  iSearchRange *= 2;                  iSearchRange *= 2;
1862          }          } else if ((fSigma < iSearchRange / 6)
1863          else if ((fSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma >= 0)
1864                   && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1865                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
                  && (pEnc->mbParam.m_fcode >= 2))       // minimum search range 16  
1866          {          {
1867                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1868                  iSearchRange /= 2;                  iSearchRange /= 2;
1869          }          }
1870    
1871          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1872    
1873            /* frame drop code */
1874            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1875            if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1876                    (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1877            {
1878                    pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1879                    pEnc->current->sStat.ublks = mb_width * mb_height;
1880    
1881                    BitstreamReset(bs);
1882    
1883                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1884                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1885    
1886                    // copy reference frame details into the current frame
1887                    pEnc->current->quant = pEnc->reference->quant;
1888                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1889                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1890                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1891                    pEnc->current->fcode = pEnc->reference->fcode;
1892                    pEnc->current->bcode = pEnc->reference->bcode;
1893                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1894                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1895            }
1896    
1897            /* XXX: debug
1898            {
1899                    char s[100];
1900                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1901                    image_dump_yuvpgm(&pEnc->current->image,
1902                            pEnc->mbParam.edged_width,
1903                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1904    
1905                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1906                    image_dump_yuvpgm(&pEnc->reference->image,
1907                            pEnc->mbParam.edged_width,
1908                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1909            }
1910            */
1911    
1912    
1913          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1914    
# Line 1614  Line 1916 
1916  }  }
1917    
1918    
1919  #ifdef BFRAMES  static void
1920  static void FrameCodeB(Encoder * pEnc, FRAMEINFO * frame, Bitstream * bs, uint32_t *pBits)  FrameCodeB(Encoder * pEnc,
1921                       FRAMEINFO * frame,
1922                       Bitstream * bs,
1923                       uint32_t * pBits)
1924  {  {
1925      int16_t dct_codes[6*64];      int16_t dct_codes[6*64];
1926      int16_t qcoeff[6*64];      int16_t qcoeff[6*64];
1927      uint32_t x, y;      uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1928    
1929      IMAGE *f_ref = &pEnc->reference->image;      IMAGE *f_ref = &pEnc->reference->image;
1930          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1931    
1932    #ifdef BFRAMES_DEC_DEBUG
1933            FILE *fp;
1934            static char first=0;
1935    #define BFRAME_DEBUG    if (!first && fp){ \
1936                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1937            }
1938    
1939            pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */
1940    
1941            if (!first){
1942                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1943            }
1944    #endif
1945    
1946            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1947    
1948          // forward          // forward
1949          image_setedges(f_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height, frame->global_flags & XVID_INTERLACING);          image_setedges(f_ref, pEnc->mbParam.edged_width,
1950                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1951                                       pEnc->mbParam.height);
1952          start_timer();          start_timer();
1953          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,
1954                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1955                                              pEnc->mbParam.m_quarterpel, 0);
1956          stop_inter_timer();          stop_inter_timer();
1957    
1958          // backward          // backward
1959          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,
1960                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1961                                       pEnc->mbParam.height);
1962      start_timer();      start_timer();
1963          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1964                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1965                                              pEnc->mbParam.m_quarterpel, 0);
1966          stop_inter_timer();          stop_inter_timer();
1967    
1968          start_timer();          start_timer();
1969    
1970          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1971                  pEnc->reference->mbs, f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1972                  pEnc->current->mbs, b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1973                            pEnc->reference->mbs, f_ref,
1974                                                     &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1975                                                     pEnc->current, b_ref, &pEnc->vInterH,
1976                                                     &pEnc->vInterV, &pEnc->vInterHV);
1977    
1978    
1979          stop_motion_timer();          stop_motion_timer();
# Line 1654  Line 1984 
1984          }*/          }*/
1985    
1986      frame->coding_type = B_VOP;      frame->coding_type = B_VOP;
     BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);  
   
     *pBits = BitstreamPos(bs);  
1987    
1988      pEnc->sStat.iTextBits = 0;          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1989      pEnc->sStat.iMvSum = 0;          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
     pEnc->sStat.iMvCount = 0;  
         pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;  
1990    
1991            *pBits = BitstreamPos(bs);
1992    
1993      for (y = 0; y < pEnc->mbParam.mb_height; y++)          frame->sStat.iTextBits = 0;
1994          {          frame->sStat.iMvSum = 0;
1995                  // reset prediction          frame->sStat.iMvCount = 0;
1996            frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
1997    
                 forward.x = 0;  
                 forward.y = 0;  
                 backward.x = 0;  
                 backward.y = 0;  
1998    
1999                  for (x = 0; x < pEnc->mbParam.mb_width; x++)          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
2000                  {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
2001                          MACROBLOCK * f_mb = &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
2002                          MACROBLOCK * b_mb = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                          int direction = pEnc->mbParam.global & XVID_ALTERNATESCAN ? 2 : 0;
                         MACROBLOCK * mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];  
2003    
2004                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
2005                          if (mb->mode == MODE_NOT_CODED)                          if (mb->mode == MODE_NOT_CODED) {
2006                          {                                  //mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0;
                                 mb->mvs[0].x = 0;  
                                 mb->mvs[0].y = 0;  
2007                                  continue;                                  continue;
2008                          }                          }
2009    
2010                            if (mb->mode != MODE_DIRECT_NONE_MV) {
2011                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
2012                                          f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
2013                                          b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
2014                                                                             &pEnc->vInterV, &pEnc->vInterHV,
2015                                          dct_codes);                                          dct_codes);
2016    
2017                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
2018                          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);  
   
2019    
2020                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT) &&                                  mb->cbp =
2021                                  mb->cbp == 0 &&                                          MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
                                 mb->mvs[0].x == 0 &&  
                                 mb->mvs[0].y == 0)  
                         {  
                                 mb->mode = 5;  // skipped  
                         }  
2022    
2023                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
2024                          {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
2025                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                          mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 mb->pmvs[0].y = mb->mvs[0].y - forward.y;  
                                 forward.x = mb->mvs[0].x;  
                                 forward.y = mb->mvs[0].y;  
2026                          }                          }
   
                         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;  
2027                          }                          }
2028    
2029  //                      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
2030            BFRAME_DEBUG
2031    #endif
2032                          start_timer();                          start_timer();
2033                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs, &pEnc->sStat);                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
2034                                                     &frame->sStat, direction);
2035                          stop_coding_timer();                          stop_coding_timer();
2036                  }                  }
2037          }          }
# Line 1734  Line 2041 
2041          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
2042    
2043          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
2044    
2045    #ifdef BFRAMES_DEC_DEBUG
2046            if (!first){
2047                    first=1;
2048                    if (fp)
2049                            fclose(fp);
2050  }  }
2051  #endif  #endif
2052    }
2053    
2054    
2055    /*      in case internal output is needed somewhere... */
2056    /*      {
2057            FILE *filehandle;
2058            filehandle=fopen("last-b.pgm","wb");
2059            if (filehandle)
2060            {
2061                    fprintf(filehandle,"P5\n\n");           //
2062                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2063                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2064                    fclose(filehandle);
2065                    }
2066            }
2067    */

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.76.2.28

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