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

Diff of /trunk/xvidcore/src/encoder.c

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

revision 317, Fri Jul 19 14:56:00 2002 UTC revision 875, Wed Feb 19 21:30:52 2003 UTC
# Line 26  Line 26 
26   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
27   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
28   *   *
29   ****************************************************************************/   *  $Id: encoder.c,v 1.95 2003-02-19 21:30:52 edgomez Exp $
   
 /*****************************************************************************  
  *  
  *  History  
  *  
  *  10.07.2002  added BFRAMES_DEC_DEBUG support  
  *              MinChen <chenm001@163.com>  
  *  20.06.2002 bframe patch  
  *  08.05.2002 fix some problem in DEBUG mode;  
  *             MinChen <chenm001@163.com>  
  *  14.04.2002 added FrameCodeB()  
  *  
  *  $Id: encoder.c,v 1.57 2002-07-19 14:56:00 chl Exp $  
30   *   *
31   ****************************************************************************/   ****************************************************************************/
32    
# Line 53  Line 40 
40  #include "global.h"  #include "global.h"
41  #include "utils/timer.h"  #include "utils/timer.h"
42  #include "image/image.h"  #include "image/image.h"
 #ifdef BFRAMES  
43  #include "image/font.h"  #include "image/font.h"
44  #endif  #include "motion/sad.h"
45  #include "motion/motion.h"  #include "motion/motion.h"
46  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
47  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 68  Line 54 
54  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
55  #include "utils/mem_align.h"  #include "utils/mem_align.h"
56    
 #ifdef _SMP  
 #include "motion/smp_motion_est.h"  
 #endif  
57  /*****************************************************************************  /*****************************************************************************
58   * Local macros   * Local macros
59   ****************************************************************************/   ****************************************************************************/
60    
61  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT
62  #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }  #define SWAP(_T_,A,B)    { _T_ tmp = A; A = B; B = tmp; }
63    
64  /*****************************************************************************  /*****************************************************************************
65   * Local function prototypes   * Local function prototypes
# Line 92  Line 75 
75                                            bool force_inter,                                            bool force_inter,
76                                            bool vol_header);                                            bool vol_header);
77    
 #ifdef BFRAMES  
78  static void FrameCodeB(Encoder * pEnc,  static void FrameCodeB(Encoder * pEnc,
79                                             FRAMEINFO * frame,                                             FRAMEINFO * frame,
80                                             Bitstream * bs,                                             Bitstream * bs,
81                                             uint32_t * pBits);                                             uint32_t * pBits);
 #endif  
82    
83  /*****************************************************************************  /*****************************************************************************
84   * Local data   * Local data
# Line 112  Line 93 
93  };  };
94    
95    
 static void __inline  
 image_null(IMAGE * image)  
 {  
         image->y = image->u = image->v = NULL;  
 }  
   
   
96  /*****************************************************************************  /*****************************************************************************
97   * Encoder creation   * Encoder creation
98   *   *
# Line 209  Line 183 
183    
184          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
185    
186          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
187                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
188    
189          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
# Line 236  Line 210 
210    
211          pEnc->mbParam.m_quant_type = H263_QUANT;          pEnc->mbParam.m_quant_type = H263_QUANT;
212    
213  #ifdef _SMP          pEnc->fMvPrevSigma = -1;
         pEnc->mbParam.num_threads = MIN(pParam->num_threads, MAXNUMTHREADS);  
 #endif  
   
         pEnc->sStat.fMvPrevSigma = -1;  
214    
215          /* Fill rate control parameters */          /* Fill rate control parameters */
216    
217          pEnc->bitrate = pParam->rc_bitrate;          pEnc->bitrate = pParam->rc_bitrate;
218    
219          pEnc->iFrameNum = 0;          pEnc->iFrameNum = -1;
220          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->mbParam.iMaxKeyInterval = pParam->max_key_interval;
221    
222          /* try to allocate frame memory */          /* try to allocate frame memory */
223    
# Line 271  Line 241 
241    
242          /* try to allocate image memory */          /* try to allocate image memory */
243    
244  #ifdef _DEBUG_PSNR          if (pParam->global & XVID_GLOBAL_EXTRASTATS)
245          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
246  #endif  
 #ifdef BFRAMES  
247          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
248          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
249          image_null(&pEnc->f_refhv);          image_null(&pEnc->f_refhv);
250  #endif  
251          image_null(&pEnc->current->image);          image_null(&pEnc->current->image);
252          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
253          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
# Line 287  Line 256 
256          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
257          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
258    
259  #ifdef _DEBUG_PSNR          if (pParam->global & XVID_GLOBAL_EXTRASTATS)
260          if (image_create          {       if (image_create
261                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
262                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
263                  goto xvid_err_memory3;                  goto xvid_err_memory3;
264  #endif          }
265  #ifdef BFRAMES  
266          if (image_create          if (image_create
267                  (&pEnc->f_refh, pEnc->mbParam.edged_width,                  (&pEnc->f_refh, pEnc->mbParam.edged_width,
268                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 306  Line 275 
275                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,
276                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
277                  goto xvid_err_memory3;                  goto xvid_err_memory3;
278  #endif  
279          if (image_create          if (image_create
280                  (&pEnc->current->image, pEnc->mbParam.edged_width,                  (&pEnc->current->image, pEnc->mbParam.edged_width,
281                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 336  Line 305 
305                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
306                  goto xvid_err_memory3;                  goto xvid_err_memory3;
307    
308    /* Create full bitplane for GMC, this might be wasteful */
309            if (image_create
310                    (&pEnc->vGMC, pEnc->mbParam.edged_width,
311                     pEnc->mbParam.edged_height) < 0)
312                    goto xvid_err_memory3;
313    
314    
         /* B Frames specific init */  
 #ifdef BFRAMES  
315    
316          pEnc->global = pParam->global;          pEnc->mbParam.global = pParam->global;
317    
318            /* B Frames specific init */
319          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
320          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->mbParam.bquant_ratio = pParam->bquant_ratio;
321            pEnc->mbParam.bquant_offset = pParam->bquant_offset;
322            pEnc->mbParam.frame_drop_ratio = pParam->frame_drop_ratio;
323          pEnc->bframes = NULL;          pEnc->bframes = NULL;
324    
325          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 417  Line 393 
393          pEnc->queue_tail = 0;          pEnc->queue_tail = 0;
394          pEnc->queue_size = 0;          pEnc->queue_size = 0;
395    
396            pEnc->mbParam.m_stamp = 0;
397    
         pEnc->mbParam.m_seconds = 0;  
         pEnc->mbParam.m_ticks = 0;  
398          pEnc->m_framenum = 0;          pEnc->m_framenum = 0;
399          pEnc->last_pframe = 1;          pEnc->current->stamp = 0;
400  #endif          pEnc->reference->stamp = 0;
401    
402          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
403    
# Line 441  Line 416 
416          /*          /*
417           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
418           */           */
419  #ifdef BFRAMES  
420    xvid_err_memory5:    xvid_err_memory5:
421    
422    
# Line 475  Line 450 
450                  xvid_free(pEnc->bframes);                  xvid_free(pEnc->bframes);
451          }          }
452    
 #endif  
   
453    xvid_err_memory3:    xvid_err_memory3:
454  #ifdef _DEBUG_PSNR  
455          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          if (pEnc->mbParam.global & XVID_GLOBAL_EXTRASTATS)
456            {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
457                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
458  #endif          }
459    
 #ifdef BFRAMES  
460          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
461                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
462          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
463                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
464          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
465                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
 #endif  
466    
467          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
468                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
# Line 507  Line 479 
479          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
480                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
481    
482    /* destroy GMC image */
483            image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
484                                      pEnc->mbParam.edged_height);
485    
486    
487    xvid_err_memory2:    xvid_err_memory2:
488          xvid_free(pEnc->current->mbs);          xvid_free(pEnc->current->mbs);
489          xvid_free(pEnc->reference->mbs);          xvid_free(pEnc->reference->mbs);
# Line 535  Line 512 
512  int  int
513  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
514  {  {
 #ifdef BFRAMES  
515          int i;          int i;
 #endif  
516    
517          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
518    
519          /* B Frames specific */          /* B Frames specific */
 #ifdef BFRAMES  
520          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
521    
522                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
# Line 572  Line 546 
546                  xvid_free(pEnc->bframes);                  xvid_free(pEnc->bframes);
547    
548          }          }
 #endif  
549    
550          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
551    
# Line 590  Line 563 
563                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
564          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
565                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
566  #ifdef BFRAMES  
567          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
568                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
569          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
570                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
571          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
572                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
573  #endif  
574  #ifdef _DEBUG_PSNR          if (pEnc->mbParam.global & XVID_GLOBAL_EXTRASTATS)
575          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
576                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
577  #endif          }
578    
579          /* Encoder structure */          /* Encoder structure */
580    
# Line 617  Line 590 
590  }  }
591    
592    
593  #ifdef BFRAMES  static __inline void inc_frame_num(Encoder * pEnc)
 void inc_frame_num(Encoder * pEnc)  
594  {  {
595          pEnc->iFrameNum++;          pEnc->current->stamp = pEnc->mbParam.m_stamp;   /* first frame is zero */
596          pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;          pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
   
         pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;  
         pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;  
597  }  }
 #endif  
598    
599    
600  #ifdef BFRAMES  static __inline void
601  void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)  queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
602  {  {
603          if (pEnc->queue_size >= pEnc->mbParam.max_bframes)          if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
604          {          {
# Line 646  Line 614 
614          start_timer();          start_timer();
615          if (image_input          if (image_input
616                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
617                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
618                  return;                  return;
619          stop_conv_timer();          stop_conv_timer();
620    
621            if ((pFrame->general & XVID_CHROMAOPT)) {
622                    image_chroma_optimize(&pEnc->queue[pEnc->queue_tail],
623                            pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
624            }
625    
626          pEnc->queue_size++;          pEnc->queue_size++;
627          pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;          pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
628  }  }
629  #endif  
630    static __inline void
631    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
632    {
633    
634                    pCur->ticks = (int32_t)pCur->stamp % time_base;
635                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
636    
637                    /* HEAVY DEBUG OUTPUT remove when timecodes prove to be stable */
638    
639    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
640                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
641                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
642                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
643                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
644                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
645    
646    */
647    }
648    
649    
650    
651    /* convert pFrame->intra to coding_type */
652    static int intra2coding_type(int intra)
653    {
654            if (intra < 0)  return -1;
655            if (intra == 1) return I_VOP;
656            if (intra == 2) return B_VOP;
657    
658            return P_VOP;
659    }
660    
661    
662    
 #ifdef BFRAMES  
663  /*****************************************************************************  /*****************************************************************************
664   * IPB frame encoder entry point   * IPB frame encoder entry point
665   *   *
# Line 674  Line 677 
677          uint16_t x, y;          uint16_t x, y;
678          Bitstream bs;          Bitstream bs;
679          uint32_t bits;          uint32_t bits;
680            int mode = -1; /* Just to shut up compiler warning */
681    
682          int input_valid = 1;          int input_valid = 1;
683            int bframes_count = 0;
 #ifdef _DEBUG_PSNR  
         float psnr;  
         char temp[128];  
 #endif  
684    
685          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
686          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
# Line 711  Line 711 
711                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
712    
713                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
714                          SWAP(pEnc->current, pEnc->reference);                          SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
715    
716                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
717    
718                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
719                            bframes_count = 0;
720    
721                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
722                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
723                          pFrame->intra = 0;                          pFrame->intra = 0;
724    
725    
726                            emms();
727    
728                            if (pResult) {
729                                    pResult->quant = pEnc->current->quant;
730                                    pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
731                                    pResult->kblks = pEnc->current->sStat.kblks;
732                                    pResult->mblks = pEnc->current->sStat.mblks;
733                                    pResult->ublks = pEnc->current->sStat.ublks;
734                            }
735    
736                          return XVID_ERR_OK;                          return XVID_ERR_OK;
737                  }                  }
738    
# Line 732  Line 744 
744                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
745                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
746    
747                  BitstreamPad(&bs);                  BitstreamPadAlways(&bs);
748                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
749                  pFrame->intra = 0;                  pFrame->intra = 2;
750    
751                    if (pResult) {
752                            pResult->quant = pEnc->current->quant;
753                            pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
754                            pResult->kblks = pEnc->current->sStat.kblks;
755                            pResult->mblks = pEnc->current->sStat.mblks;
756                            pResult->ublks = pEnc->current->sStat.ublks;
757                    }
758    
759                  if (input_valid)                  if (input_valid)
760                          queue_image(pEnc, pFrame);                          queue_image(pEnc, pFrame);
761    
762                    emms();
763    
764                  return XVID_ERR_OK;                  return XVID_ERR_OK;
765          }          }
766    
767          if (pEnc->bframenum_head > 0) {          if (pEnc->bframenum_head > 0) {
768                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
769    
770                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  /* write an empty marker to the bitstream.
771    
772                       for divx5 decoder compatibility, this marker must consist
773                       of a not-coded p-vop, with a time_base of zero, and time_increment
774                       indentical to the future-referece frame.
775                    */
776    
777                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
778                            int tmp;
779    
780                          DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                          DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
781                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
782                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
783    
784    
785                            tmp = pEnc->current->seconds;
786                            pEnc->current->seconds = 0; /* force time_base = 0 */
787    
788                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
789                          BitstreamPad(&bs);                          pEnc->current->seconds = tmp;
                         BitstreamPutBits(&bs, 0x7f, 8);  
790    
791                            BitstreamPadAlways(&bs);
792                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
793                          pFrame->intra = 0;                          pFrame->intra = 4;
794    
795                            if (pResult) {
796                                    pResult->quant = pEnc->current->quant;
797                                    pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
798                                    pResult->kblks = pEnc->current->sStat.kblks;
799                                    pResult->mblks = pEnc->current->sStat.mblks;
800                                    pResult->ublks = pEnc->current->sStat.ublks;
801                            }
802    
803                          if (input_valid)                          if (input_valid)
804                                  queue_image(pEnc, pFrame);                                  queue_image(pEnc, pFrame);
805    
806                            emms();
807    
808                          return XVID_ERR_OK;                          return XVID_ERR_OK;
809                  }                  }
810          }          }
# Line 771  Line 815 
815          if (pEnc->bframenum_dx50bvop != -1)          if (pEnc->bframenum_dx50bvop != -1)
816          {          {
817    
818                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
819                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
820    
821                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
822                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
823                  }                  }
824    
# Line 786  Line 830 
830    
831          } else if (input_valid) {          } else if (input_valid) {
832    
833                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
834    
835                  start_timer();                  start_timer();
836                  if (image_input                  if (image_input
837                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
838                          pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                          pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
839                    {
840                            emms();
841                          return XVID_ERR_FORMAT;                          return XVID_ERR_FORMAT;
842                    }
843                  stop_conv_timer();                  stop_conv_timer();
844    
845                  // queue input frame, and dequue next image                  if ((pFrame->general & XVID_CHROMAOPT)) {
846                            image_chroma_optimize(&pEnc->current->image,
847                                    pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
848                    }
849    
850                    /* queue input frame, and dequue next image */
851                  if (pEnc->queue_size > 0)                  if (pEnc->queue_size > 0)
852                  {                  {
853                          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);                          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
# Line 809  Line 861 
861    
862          } else if (pEnc->queue_size > 0) {          } else if (pEnc->queue_size > 0) {
863    
864                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
865    
866                  image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);                  image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
867                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
868                  pEnc->queue_size--;                  pEnc->queue_size--;
869    
870          } else if (BitstreamPos(&bs) == 0) {          } else {
871    
872                    /* if nothing was encoded, write an 'ignore this frame' flag
873                       to the bitstream */
874    
875                    if (BitstreamPos(&bs) == 0) {
876    
877                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
878                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
879                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
880    
881                  pFrame->intra = 0;                          /* That disabled line of code was supposed to inform VirtualDub
882                             * that the frame was a dummy delay frame - now disabled (thx god :-)
883                             */
884                            /* BitstreamPutBits(&bs, 0x7f, 8); */
885                            pFrame->intra = 5;
886    
887                  BitstreamPutBits(&bs, 0x7f, 8);                          if (pResult) {
888                  BitstreamPad(&bs);                                  /*
889                  pFrame->length = BitstreamLength(&bs);                                   * We must decide what to put there because i know some apps
890                                     * are storing statistics about quantizers and just do
891                                     * stats[quant]++ or stats[quant-1]++
892                                     * transcode is one of these app with its 2pass module
893                                     */
894    
895                  return XVID_ERR_OK;                                  /*
896                                     * For now i prefer 31 than 0 that could lead to a segfault
897                                     * in transcode
898                                     */
899                                    pResult->quant = 31;
900    
901                                    pResult->hlength = 0;
902                                    pResult->kblks = 0;
903                                    pResult->mblks = 0;
904                                    pResult->ublks = 0;
905                            }
906    
907          } else {          } else {
908    
909                            if (pResult) {
910                                    pResult->quant = pEnc->current->quant;
911                                    pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
912                                    pResult->kblks = pEnc->current->sStat.kblks;
913                                    pResult->mblks = pEnc->current->sStat.mblks;
914                                    pResult->ublks = pEnc->current->sStat.ublks;
915                            }
916    
917                    }
918    
919                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
920    
921                    emms();
922    
923                  return XVID_ERR_OK;                  return XVID_ERR_OK;
924          }          }
925    
926          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
927    
         /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  
          * Well there was a separation here so i put it in ANSI C  
          * comment style :-)  
          * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */  
   
928          emms();          emms();
929    
930          // only inc frame num, adapt quant, etc. if we havent seen it before          /* only inc frame num, adapt quant, etc. if we havent seen it before */
931          if (pEnc->bframenum_dx50bvop < 0 )          if (pEnc->bframenum_dx50bvop < 0 )
932          {          {
933                    mode = intra2coding_type(pFrame->intra);
934                  if (pFrame->quant == 0)                  if (pFrame->quant == 0)
935                          pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                          pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
936                  else                  else
937                          pEnc->current->quant = pFrame->quant;                          pEnc->current->quant = pFrame->quant;
938    
939                  if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
940                          pEnc->current->quant = 1;                          pEnc->current->quant = 1;
941    
942                  if (pEnc->current->quant > 31)                  if (pEnc->current->quant > 31)
943                          pEnc->current->quant = 31;                          pEnc->current->quant = 31;
944    */
945                  pEnc->current->global_flags = pFrame->general;                  pEnc->current->global_flags = pFrame->general;
946                  pEnc->current->motion_flags = pFrame->motion;                  pEnc->current->motion_flags = pFrame->motion;
947    
# Line 865  Line 949 
949                  pEnc->current->fcode = pEnc->mbParam.m_fcode;                  pEnc->current->fcode = pEnc->mbParam.m_fcode;
950                  pEnc->current->bcode = pEnc->mbParam.m_fcode;                  pEnc->current->bcode = pEnc->mbParam.m_fcode;
951    
                 pEnc->current->seconds = pEnc->mbParam.m_seconds;  
                 pEnc->current->ticks = pEnc->mbParam.m_ticks;  
   
952                  inc_frame_num(pEnc);                  inc_frame_num(pEnc);
953    
954  #ifdef _DEBUG_PSNR                  if (pFrame->general & XVID_EXTRASTATS)
955                  image_copy(&pEnc->sOriginal, &pEnc->current->image,                  {       image_copy(&pEnc->sOriginal, &pEnc->current->image,
956                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
957  #endif                  }
958    
959                  emms();                  emms();
960    
961                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
962                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
963                                  "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);                                  "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
964                  }                  }
965    
966          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 921  Line 1002 
1002          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1003           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
1004           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1005            pEnc->iFrameNum++;
1006    
1007            if (pEnc->iFrameNum == 0 || pEnc->bframenum_dx50bvop >= 0 ||
1008                    (mode < 0 && pEnc->mbParam.iMaxKeyInterval > 0 &&
1009                            pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))
1010            {
1011                    mode = I_VOP;
1012            }else{
1013                    mode = MEanalysis(&pEnc->reference->image, pEnc->current,
1014                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
1015                                            (mode < 0) ? pEnc->iFrameNum : 0,
1016                                            bframes_count++);
1017            }
1018    
1019          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||          if (mode == I_VOP) {
                 (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) {  
1020                  /*                  /*
1021                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
1022                   */                   */
1023                    if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1024                            pEnc->mbParam.m_quarterpel = 1;
1025                    else
1026                            pEnc->mbParam.m_quarterpel = 0;
1027    
1028                    if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;
1029    
1030                    if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
1031                            if (pFrame->quant_intra_matrix != NULL)
1032                                    set_intra_matrix(pFrame->quant_intra_matrix);
1033                            if (pFrame->quant_inter_matrix != NULL)
1034                                    set_inter_matrix(pFrame->quant_inter_matrix);
1035                    }
1036    
1037    
1038                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1039                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1040                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1041    
1042                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1043                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
1044                  }                  }
1045    
1046                  // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe                  /* when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe */
1047    
1048                  if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
1049    
1050                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
1051                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
1052    
1053                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                          SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
1054                          if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                          if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1055                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
1056                          }                          }
1057                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
1058                            bframes_count = 0;
1059                          pFrame->intra = 0;                          pFrame->intra = 0;
1060    
1061                  } else {                  } else {
1062    
1063                          FrameCodeI(pEnc, &bs, &bits);                          FrameCodeI(pEnc, &bs, &bits);
1064                            bframes_count = 0;
1065                          pFrame->intra = 1;                          pFrame->intra = 1;
1066    
1067                          pEnc->bframenum_dx50bvop = -1;                          pEnc->bframenum_dx50bvop = -1;
# Line 966  Line 1069 
1069    
1070                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1071    
1072                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1073                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1074                          input_valid = 0;                          input_valid = 0;
1075                          goto ipvop_loop;                          goto ipvop_loop;
1076                  }                  }
# Line 976  Line 1079 
1079                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
1080                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1081                   */                   */
1082          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          } else if (mode == P_VOP || mode == S_VOP || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
1083                  /*                  /*
1084                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1085                   */                   */
# Line 985  Line 1088 
1088                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1089                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1090    
1091                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1092                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1093                  }                  }
1094    
1095                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1096                    bframes_count = 0;
1097                  pFrame->intra = 0;                  pFrame->intra = 0;
1098                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1099    
1100                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1101                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1102                          input_valid = 0;                          input_valid = 0;
1103                          goto ipvop_loop;                          goto ipvop_loop;
1104                  }                  }
1105    
1106          } else {          } else {        /* mode == B_VOP */
1107                  /*                  /*
1108                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1109                   */                   */
1110    
1111                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
                                 pEnc->bframenum_head, pEnc->bframenum_tail,  
                                 pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);  
   
                 if ((pEnc->global & XVID_GLOBAL_DEBUG)) {  
1112                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1113                  }                  }
1114    
1115                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1116                          pEnc->current->quant =                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1117                                  ((pEnc->reference->quant +                                  pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1118                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;  
1119                  } else {                  } else {
1120                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1121                  }                  }
1122    
1123                    if (pEnc->current->quant < 1)
1124                            pEnc->current->quant = 1;
1125                    else if (pEnc->current->quant > 31)
1126                pEnc->current->quant = 31;
1127    
1128                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1129                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1130                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1131    
1132                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1133                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1134                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
1135    
1136                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1137    
1138                  pFrame->intra = 0;                  /* bframe report by koepi */
1139                    pFrame->intra = 2;
1140                  pFrame->length = 0;                  pFrame->length = 0;
1141    
1142                  input_valid = 0;                  input_valid = 0;
1143                  goto bvop_loop;                  goto bvop_loop;
1144          }          }
1145    
1146          BitstreamPad(&bs);          BitstreamPadAlways(&bs);
1147          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1148    
1149          if (pResult) {          if (pResult) {
1150                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1151                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1152                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1153                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1154                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1155          }  
1156                    if (pFrame->general & XVID_EXTRASTATS)
1157          emms();                  {       pResult->sse_y =
1158                                    plane_sse( pEnc->sOriginal.y, pEnc->current->image.y,
 #ifdef _DEBUG_PSNR  
         psnr =  
                 image_psnr(&pEnc->sOriginal, &pEnc->current->image,  
1159                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
1160                                     pEnc->mbParam.height);                                     pEnc->mbParam.height);
1161    
1162          snprintf(temp, 127, "PSNR: %f\n", psnr);                          pResult->sse_u =
1163          DEBUG(temp);                                  plane_sse( pEnc->sOriginal.u, pEnc->current->image.u,
1164  #endif                                                     pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
1165                                                       pEnc->mbParam.height/2);
1166    
1167                            pResult->sse_v =
1168                                    plane_sse( pEnc->sOriginal.v, pEnc->current->image.v,
1169                                                       pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
1170                                                       pEnc->mbParam.height/2);
1171                    }
1172            }
1173    
1174            emms();
1175    
1176          if (pFrame->quant == 0) {          if (pFrame->quant == 0) {
1177                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1178                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1179          }          }
1180    
   
1181          stop_global_timer();          stop_global_timer();
1182          write_timer();          write_timer();
1183    
1184            emms();
1185          return XVID_ERR_OK;          return XVID_ERR_OK;
1186  }  }
1187    
 #endif  
   
1188    
1189    
1190  /*****************************************************************************  /*****************************************************************************
# Line 1091  Line 1206 
1206          uint32_t bits;          uint32_t bits;
1207          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1208    
 #ifdef _DEBUG_PSNR  
1209          float psnr;          float psnr;
1210          uint8_t temp[128];          char temp[128];
 #endif  
1211    
1212          start_global_timer();          start_global_timer();
1213    
# Line 1103  Line 1216 
1216          ENC_CHECK(pFrame->bitstream);          ENC_CHECK(pFrame->bitstream);
1217          ENC_CHECK(pFrame->image);          ENC_CHECK(pFrame->image);
1218    
1219          SWAP(pEnc->current, pEnc->reference);          SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
1220    
1221          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1222          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
 #ifdef BFRAMES  
         pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
 #endif  
1223          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1224    
1225            inc_frame_num(pEnc);
1226    
1227            /* disable alternate scan flag if interlacing is not enabled */
1228            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1229                    !(pEnc->current->global_flags & XVID_INTERLACING))
1230            {
1231                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1232            }
1233    
1234          start_timer();          start_timer();
1235          if (image_input          if (image_input
1236                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1237                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1238                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1239          stop_conv_timer();          stop_conv_timer();
1240    
1241  #ifdef _DEBUG_PSNR          if ((pFrame->general & XVID_CHROMAOPT)) {
1242          image_copy(&pEnc->sOriginal, &pEnc->current->image,                  image_chroma_optimize(&pEnc->current->image,
1243                            pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
1244            }
1245    
1246            if (pFrame->general & XVID_EXTRASTATS)
1247            {       image_copy(&pEnc->sOriginal, &pEnc->current->image,
1248                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1249  #endif          }
1250    
1251          emms();          emms();
1252    
# Line 1135  Line 1258 
1258                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1259          }          }
1260    
1261            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1262                    pEnc->mbParam.m_quarterpel = 1;
1263            else
1264                    pEnc->mbParam.m_quarterpel = 0;
1265    
1266          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1267                  int *temp_dquants =                  int *temp_dquants =
1268                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 1195  Line 1323 
1323          }          }
1324    
1325          if (pFrame->intra < 0) {          if (pFrame->intra < 0) {
1326                  if ((pEnc->iFrameNum == 0)                  if ((pEnc->iFrameNum == -1)
1327                          || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->mbParam.iMaxKeyInterval > 0)
1328                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {                                  && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {
1329                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1330                  } else {                  } else {
1331                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
# Line 1211  Line 1339 
1339    
1340          }          }
1341    
1342            /* Relic from OpenDivX - now disabled
1343          BitstreamPutBits(&bs, 0xFFFF, 16);          BitstreamPutBits(&bs, 0xFFFF, 16);
1344          BitstreamPutBits(&bs, 0xFFFF, 16);          BitstreamPutBits(&bs, 0xFFFF, 16);
1345          BitstreamPad(&bs);          */
1346    
1347            BitstreamPadAlways(&bs);
1348          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1349    
1350          if (pResult) {          if (pResult) {
1351                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1352                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1353                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1354                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1355                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1356          }          }
1357    
1358          emms();          emms();
# Line 1230  Line 1361 
1361                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1362                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1363          }          }
1364  #ifdef _DEBUG_PSNR          if (pFrame->general & XVID_EXTRASTATS)
1365            {
1366          psnr =          psnr =
1367                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1368                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
1369                                     pEnc->mbParam.height);                                     pEnc->mbParam.height);
1370    
1371          snprintf(temp, 127, "PSNR: %f\n", psnr);          snprintf(temp, 127, "PSNR: %f\n", psnr);
1372          DEBUG(temp);          }
 #endif  
1373    
 #ifdef BFRAMES  
         inc_frame_num(pEnc);  
 #else  
1374          pEnc->iFrameNum++;          pEnc->iFrameNum++;
 #endif  
   
1375    
1376          stop_global_timer();          stop_global_timer();
1377          write_timer();          write_timer();
# Line 1308  Line 1434 
1434                  return;                  return;
1435          }          }
1436    
1437          pEnc->current->fcode =          pEnc->current->fcode = (hint->rawhints) ?
1438                  (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs,                  (uint32_t)hint->mvhint.fcode : BitstreamGetBits(&bs, FCODEBITS);
                                                                                                                                  FCODEBITS);  
1439    
1440          length = pEnc->current->fcode + 5;          length = pEnc->current->fcode + 5;
1441          high = 1 << (length - 1);          high = 1 << (length - 1);
# Line 1325  Line 1450 
1450                          VECTOR tmp;                          VECTOR tmp;
1451                          int vec;                          int vec;
1452    
1453                          pMB->mode =                          pMB->mode =     (hint->rawhints) ?
1454                                  (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs,                                  (uint32_t)bhint->mode : BitstreamGetBits(&bs, MODEBITS);
                                                                                                                                   MODEBITS);  
1455    
1456                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;
1457                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;
1458    
1459                          if (pMB->mode == MODE_INTER) {                          if (pMB->mode == MODE_INTER) {
1460                                  tmp.x =                                  tmp.x = (hint->rawhints) ?
1461                                          (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs,                                          bhint->mvs[0].x : (int)BitstreamGetBits(&bs, length);
1462                                                                                                                                                    length);                                  tmp.y = (hint->rawhints) ?
1463                                  tmp.y =                                          bhint->mvs[0].y : (int)BitstreamGetBits(&bs, length);
                                         (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs,  
                                                                                                                                                   length);  
1464                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1465                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1466    
# Line 1352  Line 1474 
1474                                  }                                  }
1475                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1476                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1477                                          tmp.x =                                          tmp.x = (hint->rawhints) ?
1478                                                  (hint->rawhints) ? bhint->mvs[vec].                                                  bhint->mvs[vec].x : (int)BitstreamGetBits(&bs, length);
1479                                                  x : BitstreamGetBits(&bs, length);                                          tmp.y = (hint->rawhints) ?
1480                                          tmp.y =                                                  bhint->mvs[vec].y : (int)BitstreamGetBits(&bs, length);
                                                 (hint->rawhints) ? bhint->mvs[vec].  
                                                 y : BitstreamGetBits(&bs, length);  
1481                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1482                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1483    
# Line 1368  Line 1488 
1488                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1489                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1490                                  }                                  }
1491                          } else                          // intra / stuffing / not_coded                          } else                          /* intra / stuffing / not_coded */
1492                          {                          {
1493                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1494                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;
# Line 1409  Line 1529 
1529    
1530          if (intra) {          if (intra) {
1531                  if (!hint->rawhints) {                  if (!hint->rawhints) {
1532                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1533                          hint->hintlength = BitstreamLength(&bs);                          hint->hintlength = BitstreamLength(&bs);
1534                  }                  }
1535                  return;                  return;
# Line 1484  Line 1604 
1604                     Bitstream * bs,                     Bitstream * bs,
1605                     uint32_t * pBits)                     uint32_t * pBits)
1606  {  {
1607            int mb_width = pEnc->mbParam.mb_width;
1608            int mb_height = pEnc->mbParam.mb_height;
1609    
1610          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1611          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1612    
1613          uint16_t x, y;          uint16_t x, y;
1614    
1615            if ((pEnc->current->global_flags & XVID_REDUCED))
1616            {
1617                    mb_width = (pEnc->mbParam.width + 31) / 32;
1618                    mb_height = (pEnc->mbParam.height + 31) / 32;
1619    
1620                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1621                    /* XXX: setedges is overkill */
1622                    start_timer();
1623                    image_setedges(&pEnc->current->image,
1624                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1625                            pEnc->mbParam.width, pEnc->mbParam.height);
1626                    stop_edges_timer();
1627            }
1628    
1629          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1630          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1631          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1632            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1633          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1634    
1635          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1636  #ifdef BFRAMES  
1637  #define DIVX501B481P "DivX501b481p"          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1638          if ((pEnc->global & XVID_GLOBAL_PACKED)) {  
1639                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));          BitstreamPadAlways(bs);
         }  
 #endif  
1640          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1641    
1642          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1643    
1644          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1645          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1646          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1647    
1648          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1649                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1650                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1651                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1652    
# Line 1525  Line 1660 
1660                          stop_prediction_timer();                          stop_prediction_timer();
1661    
1662                          start_timer();                          start_timer();
1663                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          if (pEnc->current->global_flags & XVID_GREYSCALE)
1664                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1665                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1666                                    qcoeff[5*64+0]=0;
1667                            }
1668                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1669                          stop_coding_timer();                          stop_coding_timer();
1670                  }                  }
1671    
1672            if ((pEnc->current->global_flags & XVID_REDUCED))
1673            {
1674                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1675                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1676                            16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);
1677            }
1678          emms();          emms();
1679    
1680          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1681          pEnc->sStat.fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1682          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1683    
1684          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1685                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1686          }          }
1687    
1688          return 1;                                       // intra          return 1;                                       /* intra */
1689  }  }
1690    
1691    
1692  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1693    #define BFRAME_SKIP_THRESHHOLD 30
1694    
1695    
1696    /* FrameCodeP also handles S(GMC)-VOPs */
1697  static int  static int
1698  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
1699                     Bitstream * bs,                     Bitstream * bs,
# Line 1559  Line 1706 
1706          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1707          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1708    
1709            int mb_width = pEnc->mbParam.mb_width;
1710            int mb_height = pEnc->mbParam.mb_height;
1711    
1712          int iLimit;          int iLimit;
1713          uint32_t x, y;          int x, y, k;
1714          int iSearchRange;          int iSearchRange;
1715          int bIntra;          int bIntra, skip_possible;
1716    
1717          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1718          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1719    
1720            if ((pEnc->current->global_flags & XVID_REDUCED))
1721            {
1722                    mb_width = (pEnc->mbParam.width + 31) / 32;
1723                    mb_height = (pEnc->mbParam.height + 31) / 32;
1724            }
1725    
1726    
1727          start_timer();          start_timer();
1728          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1729                                     pEnc->mbParam.width, pEnc->mbParam.height,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                                    pEnc->current->global_flags & XVID_INTERLACING);  
1730          stop_edges_timer();          stop_edges_timer();
1731    
1732          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1733          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1734            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1735          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1736    
1737          if (!force_inter)          if (!force_inter)
1738                  iLimit =                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
                         (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *  
                                    INTRA_THRESHOLD);  
1739          else          else
1740                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1741    
1742          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1743                  start_timer();                  start_timer();
1744                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1745                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1746                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1747                                                      pEnc->mbParam.m_quarterpel,
1748                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1749                  stop_inter_timer();                  stop_inter_timer();
1750          }          }
1751    
1752            pEnc->current->coding_type = P_VOP;
1753    
1754          start_timer();          start_timer();
1755          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1756                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
         } else {  
   
 #ifdef _SMP  
         if (pEnc->mbParam.num_threads > 1)  
                 bIntra =  
                         SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,  
                                                  &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,  
                                                  iLimit);  
1757          else          else
 #endif  
1758                  bIntra =                  bIntra =
1759                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1760                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1761                           iLimit);                           iLimit);
1762    
         }  
1763          stop_motion_timer();          stop_motion_timer();
1764    
1765          if (bIntra == 1) {          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
                 return FrameCodeI(pEnc, bs, pBits);  
         }  
1766    
1767          pEnc->current->coding_type = P_VOP;          if ( ( pEnc->current->global_flags & XVID_GMC )
1768                    && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )
1769            {
1770                    pEnc->current->coding_type = S_VOP;
1771    
1772                    generate_GMCparameters( 2, 16, &pEnc->current->warp,
1773                                            pEnc->mbParam.width, pEnc->mbParam.height,
1774                                            &pEnc->current->gmc_data);
1775    
1776                    generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,
1777                                    pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,
1778                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,
1779                                    pEnc->mbParam.m_fcode, pEnc->mbParam.m_quarterpel, 0,
1780                                    pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);
1781    
1782            }
1783    
1784            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1785          if (vol_header)          if (vol_header)
1786                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1787                    BitstreamPadAlways(bs);
1788            }
1789    
1790          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1791    
1792          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1793    
1794          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1795          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;  
1796    
1797          for (y = 0; y < pEnc->mbParam.mb_height; y++) {  
1798                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {          for (y = 0; y < mb_height; y++) {
1799                    for (x = 0; x < mb_width; x++) {
1800                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1801                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1802    
1803    /* Mode decision: Check, if the block should be INTRA / INTER or GMC-coded */
1804    /* For a start, leave INTRA decision as is, only choose only between INTER/GMC  - gruel, 9.1.2002 */
1805    
1806                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1807    
1808                          if (!bIntra) {                          if (bIntra) {
1809                                    CodeIntraMB(pEnc, pMB);
1810                                    MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1811                                                                      dct_codes, qcoeff);
1812    
1813                                    start_timer();
1814                                    MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1815                                    stop_prediction_timer();
1816    
1817                                    pEnc->current->sStat.kblks++;
1818    
1819                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1820                                    stop_coding_timer();
1821                                    continue;
1822                            }
1823    
1824                            if (pEnc->current->coding_type == S_VOP) {
1825    
1826                                    int32_t iSAD = sad16(pEnc->current->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1827                                            pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1828                                            pEnc->mbParam.edged_width, 65536);
1829    
1830                                    if (pEnc->current->motion_flags & PMV_CHROMA16) {
1831                                            iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1832                                            pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1833    
1834                                            iSAD += sad8(pEnc->current->image.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1835                                            pEnc->vGMC.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1836                                    }
1837    
1838                                    if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1839    
1840                                            if (pEnc->mbParam.m_quarterpel)
1841                                                    pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1842                                            else
1843                                                    pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
1844    
1845                                            pMB->mode = MODE_INTER;
1846                                            pMB->mcsel = 1;
1847                                            pMB->sad16 = iSAD;
1848                                    } else {
1849                                            pMB->mcsel = 0;
1850                                    }
1851                            } else {
1852                                    pMB->mcsel = 0; /* just a precaution */
1853                            }
1854    
1855                                  start_timer();                                  start_timer();
1856                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
1857                                                                           &pEnc->vInterH, &pEnc->vInterV,                                                                           &pEnc->vInterH, &pEnc->vInterV,
1858                                                                           &pEnc->vInterHV, &pEnc->current->image,                                                                   &pEnc->vInterHV, &pEnc->vGMC,
1859                                                                     &pEnc->current->image,
1860                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1861                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1862                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1863                                                                     pEnc->mbParam.m_quarterpel,
1864                                                                     (pEnc->current->global_flags & XVID_REDUCED),
1865                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1866    
1867                                  stop_comp_timer();                                  stop_comp_timer();
1868    
1869                                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {                                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
# Line 1664  Line 1880 
1880    
1881                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1882    
1883                                  pMB->cbp =                          if (pMB->mode != MODE_NOT_CODED)
1884                            {       pMB->cbp =
1885                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1886                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
                         } else {  
                                 CodeIntraMB(pEnc, pMB);  
                                 MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,  
                                                                   dct_codes, qcoeff);  
1887                          }                          }
1888    
1889                          start_timer();                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
                         MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);  
                         stop_prediction_timer();  
   
                         if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {  
                                 pEnc->sStat.kblks++;  
                         } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||  
1890                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1891                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1892                                  pEnc->sStat.mblks++;                                  pEnc->current->sStat.mblks++;
1893                          } else {                          } else {
1894                                  pEnc->sStat.ublks++;                                  pEnc->current->sStat.ublks++;
1895                          }                          }
1896    
1897                          start_timer();                          start_timer();
1898                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);  
1899                            /* Finished processing the MB, now check if to CODE or SKIP */
1900    
1901                            skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1902                                                            (pMB->dquant == NO_CHANGE);
1903    
1904                            if (pEnc->current->coding_type == S_VOP)
1905                                    skip_possible &= (pMB->mcsel == 1);
1906                            else if (pEnc->current->coding_type == P_VOP) {
1907                                    if (pEnc->mbParam.m_quarterpel)
1908                                            skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1909                                    else
1910                                            skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );
1911                            }
1912    
1913                            if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1914    
1915    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1916    
1917                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1918                                    {
1919                                            int bSkip = 1;
1920    
1921                                            for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1922                                            {
1923                                                    int iSAD;
1924                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1925                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1926                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1927                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1928                                                    {       bSkip = 0;
1929                                                            break;
1930                                                    }
1931                                            }
1932    
1933                                            if (!bSkip) {   /* no SKIP, but trivial block */
1934                                                    if(pEnc->mbParam.m_quarterpel) {
1935                                                            VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1936                                                            pMB->pmvs[0].x = - predMV.x;
1937                                                            pMB->pmvs[0].y = - predMV.y;
1938                                                    }
1939                                                    else {
1940                                                            VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1941                                                            pMB->pmvs[0].x = - predMV.x;
1942                                                            pMB->pmvs[0].y = - predMV.y;
1943                                                    }
1944                                                    pMB->mode = MODE_INTER;
1945                                                    pMB->cbp = 0;
1946                                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1947                                                    stop_coding_timer();
1948    
1949                                                    continue;       /* next MB */
1950                                            }
1951                                    }
1952                                    /* do SKIP */
1953    
1954                                    pMB->mode = MODE_NOT_CODED;
1955                                    MBSkip(bs);
1956                                    stop_coding_timer();
1957                                    continue;       /* next MB */
1958                            }
1959                            /* ordinary case: normal coded INTER/INTER4V block */
1960    
1961                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1962                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1963                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1964                                    qcoeff[5*64+0]=0;
1965                            }
1966    
1967                            if(pEnc->mbParam.m_quarterpel) {
1968                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1969                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1970                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1971                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1972                            } else {
1973                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1974                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;
1975                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1976                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1977                            }
1978    
1979    
1980                            if (pMB->mode == MODE_INTER4V)
1981                            {       int k;
1982                                    for (k=1;k<4;k++)
1983                                    {
1984                                            if(pEnc->mbParam.m_quarterpel) {
1985                                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1986                                                    pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1987                                                    pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
1988                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1989                                            } else {
1990                                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1991                                                    pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;
1992                                                    pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;
1993                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1994                                            }
1995    
1996                                    }
1997                            }
1998    
1999                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
2000                          stop_coding_timer();                          stop_coding_timer();
2001    
2002                    }
2003                  }                  }
2004    
2005            if ((pEnc->current->global_flags & XVID_REDUCED))
2006            {
2007                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
2008                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
2009                            16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);
2010          }          }
2011    
2012          emms();          emms();
# Line 1699  Line 2015 
2015                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
2016          }          }
2017    
2018          if (pEnc->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
2019                  pEnc->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
2020    
2021          fSigma = (float) sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
2022    
2023          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
2024    
2025          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
2026                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) /* maximum search range 128 */
2027          {          {
2028                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
2029                  iSearchRange *= 2;                  iSearchRange *= 2;
2030          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
2031                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
2032                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
2033                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                             && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel)))      /* minimum search range 16 */
2034          {          {
2035                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
2036                  iSearchRange /= 2;                  iSearchRange /= 2;
2037          }          }
2038    
2039          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
2040    
2041          *pBits = BitstreamPos(bs) - *pBits;          /* frame drop code */
2042            DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
2043            if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
2044                    (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
2045            {
2046                    pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
2047                    pEnc->current->sStat.ublks = mb_width * mb_height;
2048    
2049                    BitstreamReset(bs);
2050    
2051                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
2052                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
2053    
2054                    /* copy reference frame details into the current frame */
2055                    pEnc->current->quant = pEnc->reference->quant;
2056                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
2057                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
2058                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
2059                    pEnc->current->fcode = pEnc->reference->fcode;
2060                    pEnc->current->bcode = pEnc->reference->bcode;
2061                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
2062                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
2063            }
2064    
2065            /* XXX: debug
2066            {
2067                    char s[100];
2068                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
2069                    image_dump_yuvpgm(&pEnc->current->image,
2070                            pEnc->mbParam.edged_width,
2071                            pEnc->mbParam.width, pEnc->mbParam.height, s);
2072    
2073                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
2074                    image_dump_yuvpgm(&pEnc->reference->image,
2075                            pEnc->mbParam.edged_width,
2076                            pEnc->mbParam.width, pEnc->mbParam.height, s);
2077            }
2078            */
2079    
         pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;  
         fprintf(stderr,"fbase=%d last_p=%d ticks=%d time_pp = %d\n",pEnc->mbParam.fbase,pEnc->last_pframe,pEnc->mbParam.m_ticks,pEnc->time_pp);  
2080    
2081          pEnc->last_pframe = pEnc->mbParam.m_ticks;          *pBits = BitstreamPos(bs) - *pBits;
2082          return 0;                                       // inter  
2083            return 0;                                       /* inter */
2084  }  }
2085    
2086    
 #ifdef BFRAMES  
2087  static void  static void
2088  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
2089                     FRAMEINFO * frame,                     FRAMEINFO * frame,
2090                     Bitstream * bs,                     Bitstream * bs,
2091                     uint32_t * pBits)                     uint32_t * pBits)
2092  {  {
2093          int16_t dct_codes[6 * 64];          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
2094          int16_t qcoeff[6 * 64];          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
2095          uint32_t x, y;          uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
2096    
2097          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
2098          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
# Line 1755  Line 2104 
2104                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
2105          }          }
2106    
2107            pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */
2108    
2109          if (!first){          if (!first){
2110                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
2111          }          }
2112  #endif  #endif
2113    
2114          // forward          frame->quarterpel =  pEnc->mbParam.m_quarterpel;
2115    
2116            /* forward  */
2117          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
2118                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
2119                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
2120          start_timer();          start_timer();
2121          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,
2122                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
2123                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
2124          stop_inter_timer();          stop_inter_timer();
2125    
2126          // backward          /* backward */
2127          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_ref, pEnc->mbParam.edged_width,
2128                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
2129                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
2130          start_timer();          start_timer();
2131          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
2132                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
2133                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
2134          stop_inter_timer();          stop_inter_timer();
2135    
2136          start_timer();          start_timer();
2137          fprintf(stderr,"m_ticks =%d\n",(int32_t)pEnc->mbParam.m_ticks+1);  
2138          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
2139            ((int32_t)pEnc->mbParam.fbase + (int32_t)pEnc->mbParam.m_ticks + 1 - (int32_t)pEnc->last_pframe) % pEnc->mbParam.fbase,                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */
2140                                                  pEnc->time_pp,                                                   ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),    /* time_pp */
2141                                                  pEnc->reference->mbs, f_ref,                                                  pEnc->reference->mbs, f_ref,
2142                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
2143                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
2144                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
2145    
2146    
2147          stop_motion_timer();          stop_motion_timer();
2148    
2149          /*if (test_quant_type(&pEnc->mbParam, pEnc->current))          /*
2150             {          if (test_quant_type(&pEnc->mbParam, pEnc->current)) {
2151             BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);             BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);
2152             } */          }
2153            */
2154    
2155          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
2156    
2157            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
2158          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
2159    
2160          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
2161    
2162          pEnc->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
2163          pEnc->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
2164          pEnc->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
2165          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
2166    
2167    
2168          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
                 // reset prediction  
   
                 forward.x = 0;  
                 forward.y = 0;  
                 backward.x = 0;  
                 backward.y = 0;  
   
2169                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
2170                          MACROBLOCK *f_mb =                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
2171                                  &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];                          int direction = pEnc->mbParam.global & XVID_ALTERNATESCAN ? 2 : 0;
                         MACROBLOCK *b_mb =  
                                 &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
                         MACROBLOCK *mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];  
2172    
2173                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */
2174                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
2175                                  mb->mvs[0].x = 0;                                  /* mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0; */
                                 mb->mvs[0].y = 0;  
   
                                 mb->cbp = 0;  
 #ifdef BFRAMES_DEC_DEBUG  
         BFRAME_DEBUG  
 #endif  
2176                                  continue;                                  continue;
2177                          }                          }
2178    
2179                            if (mb->mode != MODE_DIRECT_NONE_MV) {
2180                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
2181                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
2182                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
2183                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
2184                                                                           dct_codes);                                                                           dct_codes);
2185    
2186                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
2187                          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);  
2188    
2189                                    mb->cbp =
2190                                            MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
2191    
2192                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
2193                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
2194                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped                                          mb->mode = MODE_DIRECT_NONE_MV; /* skipped */
2195                          }                          }
   
                         if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {  
                                 mb->pmvs[0].x = mb->mvs[0].x - forward.x;  
                                 mb->pmvs[0].y = mb->mvs[0].y - forward.y;  
                                 forward.x = mb->mvs[0].x;  
                                 forward.y = mb->mvs[0].y;  
2196                          }                          }
2197    
                         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;  
                         }  
 //                      DPRINTF("%05i : [%i %i] M=%i CBP=%i MVS=%i,%i forward=%i,%i", pEnc->m_framenum, x, y, mb->mode, mb->cbp, mb->mvs[0].x, mb->mvs[0].y, forward.x, forward.y);  
   
2198  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
2199          BFRAME_DEBUG          BFRAME_DEBUG
2200  #endif  #endif
2201                          start_timer();                          start_timer();
2202                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
2203                                                   &pEnc->sStat);                                                   &frame->sStat, direction);
2204                          stop_coding_timer();                          stop_coding_timer();
2205                  }                  }
2206          }          }
2207    
2208          emms();          emms();
2209    
2210          // TODO: dynamic fcode/bcode ???          /* TODO: dynamic fcode/bcode ??? */
2211    
2212          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
2213    
# Line 1895  Line 2219 
2219          }          }
2220  #endif  #endif
2221  }  }
 #endif  

Legend:
Removed from v.317  
changed lines
  Added in v.875

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