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

Diff of /xvidcore/src/encoder.c

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

revision 1.76, Tue Sep 3 17:25:18 2002 UTC revision 1.76.2.26, Mon Dec 9 10:47:05 2002 UTC
# Line 54  Line 54 
54  #include "global.h"  #include "global.h"
55  #include "utils/timer.h"  #include "utils/timer.h"
56  #include "image/image.h"  #include "image/image.h"
 #ifdef BFRAMES  
57  #include "image/font.h"  #include "image/font.h"
58  #include "motion/sad.h"  #include "motion/sad.h"
 #endif  
59  #include "motion/motion.h"  #include "motion/motion.h"
60  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
61  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 70  Line 68 
68  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
69  #include "utils/mem_align.h"  #include "utils/mem_align.h"
70    
 #ifdef _SMP  
 #include "motion/smp_motion_est.h"  
 #endif  
71  /*****************************************************************************  /*****************************************************************************
72   * Local macros   * Local macros
73   ****************************************************************************/   ****************************************************************************/
# Line 94  Line 89 
89                                            bool force_inter,                                            bool force_inter,
90                                            bool vol_header);                                            bool vol_header);
91    
 #ifdef BFRAMES  
92  static void FrameCodeB(Encoder * pEnc,  static void FrameCodeB(Encoder * pEnc,
93                                             FRAMEINFO * frame,                                             FRAMEINFO * frame,
94                                             Bitstream * bs,                                             Bitstream * bs,
95                                             uint32_t * pBits);                                             uint32_t * pBits);
 #endif  
96    
97  /*****************************************************************************  /*****************************************************************************
98   * Local data   * Local data
# Line 114  Line 107 
107  };  };
108    
109    
 static void __inline  
 image_null(IMAGE * image)  
 {  
         image->y = image->u = image->v = NULL;  
 }  
   
   
110  /*****************************************************************************  /*****************************************************************************
111   * Encoder creation   * Encoder creation
112   *   *
# Line 238  Line 224 
224    
225          pEnc->mbParam.m_quant_type = H263_QUANT;          pEnc->mbParam.m_quant_type = H263_QUANT;
226    
227  #ifdef _SMP          pEnc->fMvPrevSigma = -1;
         pEnc->mbParam.num_threads = MIN(pParam->num_threads, MAXNUMTHREADS);  
 #endif  
   
         pEnc->sStat.fMvPrevSigma = -1;  
228    
229          /* Fill rate control parameters */          /* Fill rate control parameters */
230    
231          pEnc->bitrate = pParam->rc_bitrate;          pEnc->bitrate = pParam->rc_bitrate;
232    
233          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
234          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->mbParam.iMaxKeyInterval = pParam->max_key_interval;
235    
236          /* try to allocate frame memory */          /* try to allocate frame memory */
237    
# Line 276  Line 258 
258  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
259          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
260  #endif  #endif
261  #ifdef BFRAMES  
262          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
263          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
264          image_null(&pEnc->f_refhv);          image_null(&pEnc->f_refhv);
265  #endif  
266          image_null(&pEnc->current->image);          image_null(&pEnc->current->image);
267          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
268          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
# Line 295  Line 277 
277                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
278                  goto xvid_err_memory3;                  goto xvid_err_memory3;
279  #endif  #endif
280  #ifdef BFRAMES  
281          if (image_create          if (image_create
282                  (&pEnc->f_refh, pEnc->mbParam.edged_width,                  (&pEnc->f_refh, pEnc->mbParam.edged_width,
283                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 308  Line 290 
290                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,
291                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
292                  goto xvid_err_memory3;                  goto xvid_err_memory3;
293  #endif  
294          if (image_create          if (image_create
295                  (&pEnc->current->image, pEnc->mbParam.edged_width,                  (&pEnc->current->image, pEnc->mbParam.edged_width,
296                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 341  Line 323 
323    
324    
325          /* B Frames specific init */          /* B Frames specific init */
 #ifdef BFRAMES  
326    
327          pEnc->global = pParam->global;          pEnc->mbParam.global = pParam->global;
328          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
329          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->mbParam.bquant_ratio = pParam->bquant_ratio;
330          pEnc->frame_drop_ratio = pParam->frame_drop_ratio;          pEnc->mbParam.bquant_offset = pParam->bquant_offset;
331            pEnc->mbParam.frame_drop_ratio = pParam->frame_drop_ratio;
332          pEnc->bframes = NULL;          pEnc->bframes = NULL;
333    
334          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 420  Line 402 
402          pEnc->queue_tail = 0;          pEnc->queue_tail = 0;
403          pEnc->queue_size = 0;          pEnc->queue_size = 0;
404    
405            pEnc->mbParam.m_stamp = 0;
406    
         pEnc->mbParam.m_seconds = 0;  
         pEnc->mbParam.m_ticks = 0;  
407          pEnc->m_framenum = 0;          pEnc->m_framenum = 0;
408          pEnc->last_pframe = 0;          pEnc->current->stamp = 0;
409          pEnc->last_sync = 0;          pEnc->reference->stamp = 0;
 #endif  
410    
411          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
412    
# Line 445  Line 425 
425          /*          /*
426           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
427           */           */
428  #ifdef BFRAMES  
429    xvid_err_memory5:    xvid_err_memory5:
430    
431    
# Line 479  Line 459 
459                  xvid_free(pEnc->bframes);                  xvid_free(pEnc->bframes);
460          }          }
461    
 #endif  
   
462    xvid_err_memory3:    xvid_err_memory3:
463  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
464          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
465                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
466  #endif  #endif
467    
 #ifdef BFRAMES  
468          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
469                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
470          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
471                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
472          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
473                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
 #endif  
474    
475          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
476                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
# Line 539  Line 515 
515  int  int
516  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
517  {  {
 #ifdef BFRAMES  
518          int i;          int i;
 #endif  
519    
520          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
521    
522          /* B Frames specific */          /* B Frames specific */
 #ifdef BFRAMES  
523          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
524    
525                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
# Line 576  Line 549 
549                  xvid_free(pEnc->bframes);                  xvid_free(pEnc->bframes);
550    
551          }          }
 #endif  
552    
553          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
554    
# Line 594  Line 566 
566                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
567          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
568                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
569  #ifdef BFRAMES  
570          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
571                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
572          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
573                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
574          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
575                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
576  #endif  
577  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
578          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
579                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
# Line 621  Line 593 
593  }  }
594    
595    
596  void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
597  {  {
598          pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;          pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
599            pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
 #ifdef BFRAMES  
         pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;  
         if (pEnc->mbParam.m_ticks < pEnc->last_sync)  
                 pEnc->mbParam.m_seconds = 1;            // more than 1 second since last I or P is not supported.  
         else  
                 pEnc->mbParam.m_seconds = 0;  
   
         if (pEnc->current->coding_type != B_VOP)  
                 pEnc->last_sync = pEnc->mbParam.m_ticks;  
 #else  
   
         pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;  
         pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;  
   
 #endif  
   
600  }  }
601    
602    
603  #ifdef BFRAMES  static __inline void
604  void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)  queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
605  {  {
606          if (pEnc->queue_size >= pEnc->mbParam.max_bframes)          if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
607          {          {
# Line 661  Line 617 
617          start_timer();          start_timer();
618          if (image_input          if (image_input
619                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
620                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
621                  return;                  return;
622          stop_conv_timer();          stop_conv_timer();
623    
624          pEnc->queue_size++;          pEnc->queue_size++;
625          pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;          pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
626  }  }
627  #endif  
628    static __inline void
629    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
630    {
631    
632                    pCur->ticks = (int32_t)pCur->stamp % time_base;
633                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
634    
635                    //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
636    
637    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
638                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
639                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
640                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
641                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
642                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
643    
644    */
645    }
646    
647    
648    
649    
650    
 #ifdef BFRAMES  
651  /*****************************************************************************  /*****************************************************************************
652   * IPB frame encoder entry point   * IPB frame encoder entry point
653   *   *
# Line 688  Line 664 
664  {  {
665          uint16_t x, y;          uint16_t x, y;
666          Bitstream bs;          Bitstream bs;
667          uint32_t bits;          uint32_t bits, mode;
668    
669          int input_valid = 1;          int input_valid = 1;
670            int bframes_count = 0;
671    
672  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
673          float psnr;          float psnr;
# Line 731  Line 708 
708                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
709    
710                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
711                            bframes_count = 0;
712    
713                          BitstreamPad(&bs);                          BitstreamPad(&bs);
714                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
715                          pFrame->intra = 0;                          pFrame->intra = 0;
716    
717                            emms();
718    
719                          return XVID_ERR_OK;                          return XVID_ERR_OK;
720                  }                  }
721    
# Line 749  Line 729 
729    
730                  BitstreamPad(&bs);                  BitstreamPad(&bs);
731                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
732                  pFrame->intra = 0;                  pFrame->intra = 2;
733    
734                  if (input_valid)                  if (input_valid)
735                          queue_image(pEnc, pFrame);                          queue_image(pEnc, pFrame);
736    
737                    emms();
738    
739                  return XVID_ERR_OK;                  return XVID_ERR_OK;
740          }          }
741    
742          if (pEnc->bframenum_head > 0) {          if (pEnc->bframenum_head > 0) {
743                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
744    
745                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  /* write an empty marker to the bitstream.
746    
747                       for divx5 decoder compatibility, this marker must consist
748                       of a not-coded p-vop, with a time_base of zero, and time_increment
749                       indentical to the future-referece frame.
750                    */
751    
752                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
753                            int tmp;
754    
755                          DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                          DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
756                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
757                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
758    
                         BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);  
759                          BitstreamPad(&bs);                          BitstreamPad(&bs);
760                          BitstreamPutBits(&bs, 0x7f, 8);  
761                            tmp = pEnc->current->seconds;
762                            pEnc->current->seconds = 0; /* force time_base = 0 */
763                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
764                            pEnc->current->seconds = tmp;
765    
766                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
767                          pFrame->intra = 0;                          pFrame->intra = 4;
768    
769                          if (input_valid)                          if (input_valid)
770                                  queue_image(pEnc, pFrame);                                  queue_image(pEnc, pFrame);
771    
772                            emms();
773    
774                          return XVID_ERR_OK;                          return XVID_ERR_OK;
775                  }                  }
776          }          }
# Line 789  Line 784 
784                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
785                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
786    
787                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
788                          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");
789                  }                  }
790    
# Line 806  Line 801 
801                  start_timer();                  start_timer();
802                  if (image_input                  if (image_input
803                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
804                          pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                          pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
805                    {
806                            emms();
807                          return XVID_ERR_FORMAT;                          return XVID_ERR_FORMAT;
808                    }
809                  stop_conv_timer();                  stop_conv_timer();
810    
811                  // queue input frame, and dequue next image                  // queue input frame, and dequue next image
# Line 830  Line 828 
828                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
829                  pEnc->queue_size--;                  pEnc->queue_size--;
830    
831          } else if (BitstreamPos(&bs) == 0) {          } else {
832    
833                    /* if nothing was encoded, write an 'ignore this frame' flag
834                       to the bitstream */
835    
836                    if (BitstreamPos(&bs) == 0) {
837    
838                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
839                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
840                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
841    
842                  pFrame->intra = 0;                          BitstreamPutBits(&bs, 0x7f, 8);
843                            pFrame->intra = 5;
844                  BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP                  }
                 BitstreamPad(&bs);  
                 pFrame->length = BitstreamLength(&bs);  
   
                 return XVID_ERR_OK;  
   
         } else {  
845    
846                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
847                    emms();
848                  return XVID_ERR_OK;                  return XVID_ERR_OK;
849          }          }
850    
851          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
852    
         /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  
          * Well there was a separation here so i put it in ANSI C  
          * comment style :-)  
          * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */  
   
853          emms();          emms();
854    
855          // 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
# Line 880  Line 873 
873                  pEnc->current->fcode = pEnc->mbParam.m_fcode;                  pEnc->current->fcode = pEnc->mbParam.m_fcode;
874                  pEnc->current->bcode = pEnc->mbParam.m_fcode;                  pEnc->current->bcode = pEnc->mbParam.m_fcode;
875    
                 pEnc->current->seconds = pEnc->mbParam.m_seconds;  
                 pEnc->current->ticks = pEnc->mbParam.m_ticks;  
   
876                  inc_frame_num(pEnc);                  inc_frame_num(pEnc);
877    
878  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
# Line 892  Line 882 
882    
883                  emms();                  emms();
884    
885                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
886                          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,
887                                  "%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);
888                  }                  }
889    
890          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 936  Line 926 
926          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
927           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
928           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
929            pEnc->iFrameNum++;
930    
931          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
932                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->mbParam.iMaxKeyInterval > 0 &&
933                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval)
934                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,
935                                           pEnc->mbParam.edged_width, pEnc->mbParam.width,                                                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
936                                           pEnc->mbParam.height) > 30) {                                                                          (pFrame->intra < 0) ? pEnc->iFrameNum : 0,
937                                                                            bframes_count++))) {
938    
939                  /*                  /*
940                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
941                   */                   */
942                    if ((pEnc->current->global_flags & XVID_QUARTERPEL))
943                            pEnc->mbParam.m_quarterpel = 1;
944                    else
945                            pEnc->mbParam.m_quarterpel = 0;
946    
947                    if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;
948    
949                    if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
950                            if (pFrame->quant_intra_matrix != NULL)
951                                    set_intra_matrix(pFrame->quant_intra_matrix);
952                            if (pFrame->quant_inter_matrix != NULL)
953                                    set_inter_matrix(pFrame->quant_inter_matrix);
954                    }
955    
956    
957                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
958                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
959                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
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, 200, "IVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
963                  }                  }
964    
965                  // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe                  // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
966    
967                  if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
968    
969                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
970                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
971    
972                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
973                          if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                          if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
974                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
975                          }                          }
976                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
977                            bframes_count = 0;
978    
979                          pFrame->intra = 0;                          pFrame->intra = 0;
980    
981                  } else {                  } else {
982    
983                          FrameCodeI(pEnc, &bs, &bits);                          FrameCodeI(pEnc, &bs, &bits);
984                            bframes_count = 0;
985                          pFrame->intra = 1;                          pFrame->intra = 1;
986    
987                          pEnc->bframenum_dx50bvop = -1;                          pEnc->bframenum_dx50bvop = -1;
# Line 981  Line 989 
989    
990                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
991    
992                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
993                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
994                          input_valid = 0;                          input_valid = 0;
995                          goto ipvop_loop;                          goto ipvop_loop;
996                  }                  }
# Line 991  Line 999 
999                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
1000                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1001                   */                   */
1002          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1003    //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1004                  /*                  /*
1005                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1006                   */                   */
# Line 1000  Line 1009 
1009                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1010                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1011    
1012                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1013                          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");
1014                  }                  }
1015    
1016                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1017                    bframes_count = 0;
1018                  pFrame->intra = 0;                  pFrame->intra = 0;
1019                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1020    
1021                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1022                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1023                          input_valid = 0;                          input_valid = 0;
1024                          goto ipvop_loop;                          goto ipvop_loop;
1025                  }                  }
# Line 1019  Line 1029 
1029                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1030                   */                   */
1031    
1032                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1033                          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");
1034                  }                  }
1035    
1036                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1037                          pEnc->current->quant =                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1038                                  ((pEnc->reference->quant +                                  pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1039                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;  
1040                  } else {                  } else {
1041                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1042                  }                  }
1043    
1044                  if (pEnc->current->quant < 1)                  if (pEnc->current->quant < 1)
1045                          pEnc->current->quant = 1;                          pEnc->current->quant = 1;
1046                    else if (pEnc->current->quant > 31)
                 if (pEnc->current->quant > 31)  
1047                          pEnc->current->quant = 31;                          pEnc->current->quant = 31;
1048    
   
1049                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1050                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1051                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1052    
   
   
1053                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1054                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1055                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
1056    
1057                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1058    
1059                  pFrame->intra = 0;  // bframe report by koepi
1060                    pFrame->intra = 2;
1061                  pFrame->length = 0;                  pFrame->length = 0;
1062    
1063                  input_valid = 0;                  input_valid = 0;
1064                  goto bvop_loop;                  goto bvop_loop;
1065          }          }
1066    
         pEnc->iFrameNum++;  
   
1067          BitstreamPad(&bs);          BitstreamPad(&bs);
1068          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1069    
1070          if (pResult) {          if (pResult) {
1071                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1072                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1073                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1074                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1075                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1076          }          }
1077    
1078          emms();          emms();
# Line 1086  Line 1092 
1092                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1093          }          }
1094    
   
1095          stop_global_timer();          stop_global_timer();
1096          write_timer();          write_timer();
1097    
1098            emms();
1099          return XVID_ERR_OK;          return XVID_ERR_OK;
1100  }  }
1101    
 #endif  
   
1102    
1103    
1104  /*****************************************************************************  /*****************************************************************************
# Line 1132  Line 1136 
1136    
1137          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1138          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
         pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
1139          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1140    
1141            inc_frame_num(pEnc);
1142    
1143            /* disable alternate scan flag if interlacing is not enabled */
1144            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1145                    !(pEnc->current->global_flags & XVID_INTERLACING))
1146            {
1147                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1148            }
1149    
1150          start_timer();          start_timer();
1151          if (image_input          if (image_input
1152                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1153                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1154                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1155          stop_conv_timer();          stop_conv_timer();
1156    
# Line 1158  Line 1169 
1169                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1170          }          }
1171    
1172            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1173                    pEnc->mbParam.m_quarterpel = 1;
1174            else
1175                    pEnc->mbParam.m_quarterpel = 0;
1176    
1177          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1178                  int *temp_dquants =                  int *temp_dquants =
1179                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 1219  Line 1235 
1235    
1236          if (pFrame->intra < 0) {          if (pFrame->intra < 0) {
1237                  if ((pEnc->iFrameNum == 0)                  if ((pEnc->iFrameNum == 0)
1238                          || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->mbParam.iMaxKeyInterval > 0)
1239                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {                                  && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {
1240                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1241                  } else {                  } else {
1242                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
# Line 1241  Line 1257 
1257    
1258          if (pResult) {          if (pResult) {
1259                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1260                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1261                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1262                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1263                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1264          }          }
1265    
1266          emms();          emms();
# Line 1263  Line 1279 
1279          DEBUG(temp);          DEBUG(temp);
1280  #endif  #endif
1281    
         inc_frame_num(pEnc);  
1282          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1283    
1284          stop_global_timer();          stop_global_timer();
# Line 1503  Line 1518 
1518                     Bitstream * bs,                     Bitstream * bs,
1519                     uint32_t * pBits)                     uint32_t * pBits)
1520  {  {
1521            int mb_width = pEnc->mbParam.mb_width;
1522            int mb_height = pEnc->mbParam.mb_height;
1523    
1524          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1525          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1526    
1527          uint16_t x, y;          uint16_t x, y;
1528    
1529            if ((pEnc->current->global_flags & XVID_REDUCED))
1530            {
1531                    mb_width = (pEnc->mbParam.width + 31) / 32;
1532                    mb_height = (pEnc->mbParam.height + 31) / 32;
1533    
1534                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1535                    /* XXX: setedges is overkill */
1536                    start_timer();
1537                    image_setedges(&pEnc->current->image,
1538                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1539                            pEnc->mbParam.width, pEnc->mbParam.height);
1540                    stop_edges_timer();
1541            }
1542    
1543          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1544          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1545          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1546            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1547          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1548    
1549          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1550  #ifdef BFRAMES  
1551            /* XXX: move this stuff to BitstreamWriteVolHeader */
1552  #define DIVX501B481P "DivX501b481p"  #define DIVX501B481P "DivX501b481p"
1553          if ((pEnc->global & XVID_GLOBAL_PACKED)) {          if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
1554                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1555          }          }
1556  #endif  
1557    #define XVID_ID "XviD" XVID_BS_VERSION
1558            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1559    
1560            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1561          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1562    
1563          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1564    
1565          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1566          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1567          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1568    
1569          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1570                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1571                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1572                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1573    
# Line 1549  Line 1586 
1586                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1587                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1588                          }                          }
1589                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1590                          stop_coding_timer();                          stop_coding_timer();
1591                  }                  }
1592    
1593          emms();          emms();
1594    
1595          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1596          pEnc->sStat.fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1597          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1598    
1599          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
# Line 1570  Line 1605 
1605    
1606    
1607  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1608  #define BFRAME_SKIP_THRESHHOLD 16  #define BFRAME_SKIP_THRESHHOLD 30
1609    
1610  static int  static int
1611  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1584  Line 1619 
1619          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1620          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1621    
1622            int mb_width = pEnc->mbParam.mb_width;
1623            int mb_height = pEnc->mbParam.mb_height;
1624    
1625          int iLimit;          int iLimit;
1626          int x, y, k;          int x, y, k;
1627          int iSearchRange;          int iSearchRange;
1628          int bIntra;          int bIntra, skip_possible;
1629    
1630          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1631          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1632    
1633            if ((pEnc->current->global_flags & XVID_REDUCED))
1634            {
1635                    // mb_width = (pEnc->mbParam.width + 31) / 32;
1636                    // mb_height = (pEnc->mbParam.height + 31) / 32;
1637    
1638                    /* XXX: reduced resoltion not yet supported */
1639                    pEnc->current->global_flags &= ~XVID_REDUCED;
1640            }
1641    
1642    
1643          start_timer();          start_timer();
1644          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1645                                     pEnc->mbParam.width, pEnc->mbParam.height,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                                    pEnc->current->global_flags & XVID_INTERLACING);  
1646          stop_edges_timer();          stop_edges_timer();
1647    
1648          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1649          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1650            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1651          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1652    
1653          if (!force_inter)          if (!force_inter)
1654                  iLimit =                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
                         (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *  
                                    INTRA_THRESHOLD);  
1655          else          else
1656                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1657    
1658          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1659                  start_timer();                  start_timer();
1660                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1661                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1662                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1663                                                      pEnc->mbParam.m_quarterpel,
1664                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1665                  stop_inter_timer();                  stop_inter_timer();
1666          }          }
1667    
1668            if (pEnc->current->global_flags & XVID_GMC) {
1669    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1670                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1671                    pEnc->current->coding_type = S_VOP;
1672            } else
1673                    pEnc->current->coding_type = P_VOP;
1674    
1675          start_timer();          start_timer();
1676          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1677                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1678            if (bIntra == 0) {
1679                            pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);
1680                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1681                                                                                            &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1682                    }
1683    
1684          } else {          } else {
1685    
 #ifdef _SMP  
         if (pEnc->mbParam.num_threads > 1)  
                 bIntra =  
                         SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,  
                                                  &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,  
                                                  iLimit);  
         else  
 #endif  
1686                  bIntra =                  bIntra =
1687                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1688                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1689                           iLimit);                           iLimit);
   
1690          }          }
1691          stop_motion_timer();          stop_motion_timer();
1692    
1693          if (bIntra == 1) {          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1694                  return FrameCodeI(pEnc, bs, pBits);  
1695          }          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1696                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1697    
         pEnc->current->coding_type = P_VOP;  
1698    
1699          if (vol_header)          if (vol_header)
1700                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1701    
1702    
1703            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1704          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1705    
1706          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1707    
1708          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1709          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;  
1710    
1711          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1712                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1713                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1714                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1715    
# Line 1672  Line 1723 
1723                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1724                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1725                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1726                                                                             pEnc->mbParam.m_quarterpel,
1727                                                                             (pEnc->current->global_flags & XVID_REDUCED),
1728                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1729                                  stop_comp_timer();                                  stop_comp_timer();
1730    
# Line 1689  Line 1742 
1742    
1743                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1744    
1745                                    if (pMB->mode != MODE_NOT_CODED)
1746                                  pMB->cbp =                                  pMB->cbp =
1747                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1748                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
# Line 1703  Line 1757 
1757                          stop_prediction_timer();                          stop_prediction_timer();
1758    
1759                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
1760                                  pEnc->sStat.kblks++;                                  pEnc->current->sStat.kblks++;
1761                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1762                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1763                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1764                                  pEnc->sStat.mblks++;                                  pEnc->current->sStat.mblks++;
1765                          }  else {                          }  else {
1766                                  pEnc->sStat.ublks++;                                  pEnc->current->sStat.ublks++;
1767                          }                          }
1768    
1769                          start_timer();                          start_timer();
1770    
1771                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1772    
1773                          if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&                          skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1774                                  pMB->mvs[0].y == 0) {                                                          (pMB->dquant == NO_CHANGE);
1775    
1776  /* This is a candidate for SKIPping, but check intermediate B-frames first */                          if(pEnc->mbParam.m_quarterpel)
1777                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1778                            }
1779                            else
1780                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1781                            }
1782    
1783                            if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1784    
1785  #ifdef BFRAMES  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
                                 int iSAD=BFRAME_SKIP_THRESHHOLD;  
1786                                  int bSkip=1;                                  int bSkip=1;
1787    
1788                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1789                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1790                                  {                                  {
1791                                                    int iSAD;
1792                                          iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                          iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1793                                                                  pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                                                  pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1794                                                                  pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);                                                                  pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1795                                          if (iSAD >= BFRAME_SKIP_THRESHHOLD)                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1796                                          {       bSkip = 0;                                          {       bSkip = 0;
1797                                                  break;                                                  break;
1798                                          }                                          }
1799                                  }                                  }
1800    
1801                                  if (!bSkip)                                  if (!bSkip)
1802                                  {                                  {
1803                                          if (pEnc->current->global_flags & XVID_GREYSCALE)                                          VECTOR predMV;
1804                                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                                          if(pEnc->mbParam.m_quarterpel) {
1805                                                  qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */                                                  predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1806                                                  qcoeff[5*64+0]=0;                                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1807                                          }                                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1808                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                          }
1809                                          pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */                                          else {
1810                                                    predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1811                                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1812                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1813                                            }
1814                                            pMB->mode = MODE_INTER;
1815                                            pMB->cbp = 0;
1816                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1817                                  }                                  }
1818                                  else                                  else
1819                                    {
1820                                            pMB->mode = MODE_NOT_CODED;
1821                                          MBSkip(bs);                                          MBSkip(bs);
1822                                    }
 #else  
                                         MBSkip(bs);     /* without B-frames, no precautions are needed */  
   
 #endif  
1823    
1824                          } else {                          } else {
1825                                  if (pEnc->current->global_flags & XVID_GREYSCALE)                                  if (pEnc->current->global_flags & XVID_GREYSCALE)
# Line 1759  Line 1827 
1827                                          qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */                                          qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1828                                          qcoeff[5*64+0]=0;                                          qcoeff[5*64+0]=0;
1829                                  }                                  }
1830                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1831                          }                          }
1832    
1833                          stop_coding_timer();                          stop_coding_timer();
# Line 1772  Line 1840 
1840                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1841          }          }
1842    
1843          if (pEnc->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
1844                  pEnc->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
1845    
1846          fSigma = (float) sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
1847    
1848          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1849    
1850          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1851                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1852          {          {
1853                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1854                  iSearchRange *= 2;                  iSearchRange *= 2;
1855          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1856                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1857                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1858                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1859          {          {
1860                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1861                  iSearchRange /= 2;                  iSearchRange /= 2;
1862          }          }
1863    
1864          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1865    
 #ifdef BFRAMES  
1866          /* frame drop code */          /* frame drop code */
1867          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1868          if (pEnc->sStat.kblks + pEnc->sStat.mblks <          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1869                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1870          {          {
1871                  pEnc->sStat.kblks = pEnc->sStat.mblks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1872                  pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;                  pEnc->current->sStat.ublks = mb_width * mb_height;
1873    
1874                  BitstreamReset(bs);                  BitstreamReset(bs);
1875    
1876                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1877                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1878    
1879                  // copy reference frame details into the current frame                  // copy reference frame details into the current frame
1880                  pEnc->current->quant = pEnc->reference->quant;                  pEnc->current->quant = pEnc->reference->quant;
1881                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  pEnc->current->motion_flags = pEnc->reference->motion_flags;
1882                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  pEnc->current->rounding_type = pEnc->reference->rounding_type;
1883                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1884                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1885                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1886                  image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);                  image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1887                  memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);                  memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1888            }
1889    
1890            /* XXX: debug
1891            {
1892                    char s[100];
1893                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1894                    image_dump_yuvpgm(&pEnc->current->image,
1895                            pEnc->mbParam.edged_width,
1896                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1897    
1898                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1899                    image_dump_yuvpgm(&pEnc->reference->image,
1900                            pEnc->mbParam.edged_width,
1901                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1902          }          }
1903  #endif          */
1904    
1905          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1906    
 #ifdef BFRAMES  
         pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->current->ticks) %  
                         (int32_t)pEnc->mbParam.fbase;  
         pEnc->last_pframe = pEnc->current->ticks;  
 #endif  
   
1907          return 0;                                       // inter          return 0;                                       // inter
1908  }  }
1909    
1910    
 #ifdef BFRAMES  
1911  static void  static void
1912  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1913                     FRAMEINFO * frame,                     FRAMEINFO * frame,
# Line 1841  Line 1917 
1917          int16_t dct_codes[6 * 64];          int16_t dct_codes[6 * 64];
1918          int16_t qcoeff[6 * 64];          int16_t qcoeff[6 * 64];
1919          uint32_t x, y;          uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1920    
1921          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1922          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
# Line 1854  Line 1928 
1928                  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); \
1929          }          }
1930    
1931            pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */
1932    
1933          if (!first){          if (!first){
1934                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
1935          }          }
1936  #endif  #endif
1937    
1938            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1939    
1940          // forward          // forward
1941          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1942                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1943                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1944          start_timer();          start_timer();
1945          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,
1946                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1947                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1948          stop_inter_timer();          stop_inter_timer();
1949    
1950          // backward          // backward
1951          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_ref, pEnc->mbParam.edged_width,
1952                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1953                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1954          start_timer();          start_timer();
1955          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1956                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1957                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1958          stop_inter_timer();          stop_inter_timer();
1959    
1960          start_timer();          start_timer();
1961    
1962          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1963                  ((int32_t)pEnc->mbParam.fbase + pEnc->last_pframe - frame->ticks) % pEnc->mbParam.fbase,                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1964                                                  pEnc->time_pp,                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1965                                                  pEnc->reference->mbs, f_ref,                                                  pEnc->reference->mbs, f_ref,
1966                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1967                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1968                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1969    
1970    
# Line 1899  Line 1976 
1976             } */             } */
1977    
1978          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1979    
1980            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1981          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1982    
1983          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1984    
1985          pEnc->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
1986          pEnc->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
1987          pEnc->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
1988          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
1989    
1990    
1991          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;  
   
1992                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1993                          MACROBLOCK *f_mb =                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1994                                  &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];  
1995    
1996                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
1997                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1998                                  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  
1999                                  continue;                                  continue;
2000                          }                          }
2001    
2002                            if (mb->mode != MODE_DIRECT_NONE_MV) {
2003                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
2004                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
2005                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
2006                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
2007                                                                           dct_codes);                                                                           dct_codes);
2008    
2009                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
2010                          mb->quant = frame->quant;                          mb->quant = frame->quant;
2011    
2012                          mb->cbp =                          mb->cbp =
2013                                  MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);                                  MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
                         //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);  
2014    
2015                          if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)                          if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
2016                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
2017                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
2018                          }                          }
   
 /* update predictors for forward and backward vectors */  
                         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;  
                         }  
   
                         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;  
2019                          }                          }
2020    
 //                      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);  
   
2021  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
2022          BFRAME_DEBUG          BFRAME_DEBUG
2023  #endif  #endif
2024                          start_timer();                          start_timer();
2025                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
2026                                                   &pEnc->sStat);                                                   &frame->sStat, direction);
2027                          stop_coding_timer();                          stop_coding_timer();
2028                  }                  }
2029          }          }
# Line 1993  Line 2042 
2042          }          }
2043  #endif  #endif
2044  }  }
 #endif  
2045    
2046    
2047  /*      in case internal output is needed somewhere... */  /*      in case internal output is needed somewhere... */

Legend:
Removed from v.1.76  
changed lines
  Added in v.1.76.2.26

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