[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.17, Mon Nov 11 20:53:34 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    
 #ifdef _SMP  
         pEnc->mbParam.num_threads = MIN(pParam->num_threads, MAXNUMTHREADS);  
 #endif  
   
227          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
228    
229          /* Fill rate control parameters */          /* Fill rate control parameters */
# 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->global = pParam->global;
328          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
# Line 420  Line 401 
401          pEnc->queue_tail = 0;          pEnc->queue_tail = 0;
402          pEnc->queue_size = 0;          pEnc->queue_size = 0;
403    
404            pEnc->mbParam.m_stamp = 0;
405    
         pEnc->mbParam.m_seconds = 0;  
         pEnc->mbParam.m_ticks = 0;  
406          pEnc->m_framenum = 0;          pEnc->m_framenum = 0;
407          pEnc->last_pframe = 0;          pEnc->current->stamp = 0;
408          pEnc->last_sync = 0;          pEnc->reference->stamp = 0;
 #endif  
409    
410          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
411    
# Line 445  Line 424 
424          /*          /*
425           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
426           */           */
427  #ifdef BFRAMES  
428    xvid_err_memory5:    xvid_err_memory5:
429    
430    
# Line 479  Line 458 
458                  xvid_free(pEnc->bframes);                  xvid_free(pEnc->bframes);
459          }          }
460    
 #endif  
   
461    xvid_err_memory3:    xvid_err_memory3:
462  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
463          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
464                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
465  #endif  #endif
466    
 #ifdef BFRAMES  
467          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
468                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
469          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
470                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
471          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
472                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
 #endif  
473    
474          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
475                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
# Line 539  Line 514 
514  int  int
515  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
516  {  {
 #ifdef BFRAMES  
517          int i;          int i;
 #endif  
518    
519          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
520    
521          /* B Frames specific */          /* B Frames specific */
 #ifdef BFRAMES  
522          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
523    
524                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
# Line 576  Line 548 
548                  xvid_free(pEnc->bframes);                  xvid_free(pEnc->bframes);
549    
550          }          }
 #endif  
551    
552          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
553    
# Line 594  Line 565 
565                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
566          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
567                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
568  #ifdef BFRAMES  
569          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
570                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
571          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
572                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
573          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
574                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
575  #endif  
576  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
577          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
578                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
# Line 621  Line 592 
592  }  }
593    
594    
595  void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
596  {  {
597          pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;          pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
598            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  
   
599  }  }
600    
601    
602  #ifdef BFRAMES  static __inline void
603  void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)  queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
604  {  {
605          if (pEnc->queue_size >= pEnc->mbParam.max_bframes)          if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
606          {          {
# Line 661  Line 616 
616          start_timer();          start_timer();
617          if (image_input          if (image_input
618                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
619                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
620                  return;                  return;
621          stop_conv_timer();          stop_conv_timer();
622    
623          pEnc->queue_size++;          pEnc->queue_size++;
624          pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;          pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
625  }  }
626  #endif  
627    static __inline void
628    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
629    {
630    
631                    pCur->ticks = (int32_t)pCur->stamp % time_base;
632                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
633    
634                    //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
635    
636    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
637                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
638                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
639                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
640                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
641                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
642    
643    */
644    }
645    
646    
647    
648    
649    
 #ifdef BFRAMES  
650  /*****************************************************************************  /*****************************************************************************
651   * IPB frame encoder entry point   * IPB frame encoder entry point
652   *   *
# Line 688  Line 663 
663  {  {
664          uint16_t x, y;          uint16_t x, y;
665          Bitstream bs;          Bitstream bs;
666          uint32_t bits;          uint32_t bits, mode;
667    
668          int input_valid = 1;          int input_valid = 1;
669    
# Line 736  Line 711 
711                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
712                          pFrame->intra = 0;                          pFrame->intra = 0;
713    
714                            emms();
715    
716                          return XVID_ERR_OK;                          return XVID_ERR_OK;
717                  }                  }
718    
# Line 754  Line 731 
731                  if (input_valid)                  if (input_valid)
732                          queue_image(pEnc, pFrame);                          queue_image(pEnc, pFrame);
733    
734                    emms();
735    
736                  return XVID_ERR_OK;                  return XVID_ERR_OK;
737          }          }
738    
739          if (pEnc->bframenum_head > 0) {          if (pEnc->bframenum_head > 0) {
740                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
741    
742                    /* write an empty marker to the bitstream.
743    
744                       for divx5 decoder compatibility, this marker must consist
745                       of a not-coded p-vop, with a time_base of zero, and time_increment
746                       indentical to the future-referece frame.
747                    */
748    
749                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {
750                            int tmp;
751    
752                          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",
753                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
754                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
755    
                         BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);  
756                          BitstreamPad(&bs);                          BitstreamPad(&bs);
757                          BitstreamPutBits(&bs, 0x7f, 8);  
758                            tmp = pEnc->current->seconds;
759                            pEnc->current->seconds = 0; /* force time_base = 0 */
760                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
761                            pEnc->current->seconds = tmp;
762    
763                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
764                          pFrame->intra = 0;                          pFrame->intra = 0;
# Line 776  Line 766 
766                          if (input_valid)                          if (input_valid)
767                                  queue_image(pEnc, pFrame);                                  queue_image(pEnc, pFrame);
768    
769                            emms();
770    
771                          return XVID_ERR_OK;                          return XVID_ERR_OK;
772                  }                  }
773          }          }
# Line 806  Line 798 
798                  start_timer();                  start_timer();
799                  if (image_input                  if (image_input
800                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
801                          pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                          pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
802                    {
803                            emms();
804                          return XVID_ERR_FORMAT;                          return XVID_ERR_FORMAT;
805                    }
806                  stop_conv_timer();                  stop_conv_timer();
807    
808                  // queue input frame, and dequue next image                  // queue input frame, and dequue next image
# Line 830  Line 825 
825                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
826                  pEnc->queue_size--;                  pEnc->queue_size--;
827    
828          } else if (BitstreamPos(&bs) == 0) {          } else {
829    
830                    /* if nothing was encoded, write an 'ignore this frame' flag
831                       to the bitstream */
832    
833                    if (BitstreamPos(&bs) == 0) {
834    
835                  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",
836                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
837                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
838    
839                            BitstreamPutBits(&bs, 0x7f, 8);
840                  pFrame->intra = 0;                  pFrame->intra = 0;
841                    }
                 BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP  
                 BitstreamPad(&bs);  
                 pFrame->length = BitstreamLength(&bs);  
   
                 return XVID_ERR_OK;  
   
         } else {  
842    
843                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
844                    emms();
845                  return XVID_ERR_OK;                  return XVID_ERR_OK;
846          }          }
847    
848          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
849    
         /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  
          * Well there was a separation here so i put it in ANSI C  
          * comment style :-)  
          * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */  
   
850          emms();          emms();
851    
852          // 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 870 
870                  pEnc->current->fcode = pEnc->mbParam.m_fcode;                  pEnc->current->fcode = pEnc->mbParam.m_fcode;
871                  pEnc->current->bcode = pEnc->mbParam.m_fcode;                  pEnc->current->bcode = pEnc->mbParam.m_fcode;
872    
                 pEnc->current->seconds = pEnc->mbParam.m_seconds;  
                 pEnc->current->ticks = pEnc->mbParam.m_ticks;  
   
873                  inc_frame_num(pEnc);                  inc_frame_num(pEnc);
874    
875  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
# Line 894  Line 881 
881    
882                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
883                          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,
884                                  "%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);
885                  }                  }
886    
887          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 941  Line 928 
928          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
929                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
930                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
931                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || /*image_mad(&pEnc->reference->image, &pEnc->current->image,
932                                           pEnc->mbParam.edged_width, pEnc->mbParam.width,                                           pEnc->mbParam.edged_width, pEnc->mbParam.width,
933                                           pEnc->mbParam.height) > 30) {                                           pEnc->mbParam.height) > 30) {*/
934                            2 == (mode = MEanalysis(&pEnc->reference->image, &pEnc->current->image,
935                                             &pEnc->mbParam, pEnc->current->mbs, pEnc->current->fcode))) {
936    
937                  /*                  /*
938                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
939                   */                   */
# Line 982  Line 972 
972                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
973    
974                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
975                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
976                          input_valid = 0;                          input_valid = 0;
977                          goto ipvop_loop;                          goto ipvop_loop;
978                  }                  }
# Line 991  Line 981 
981                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
982                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
983                   */                   */
984          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          } else if ((pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) || (mode != 0)) {
985    
986                  /*                  /*
987                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
988                   */                   */
# Line 1008  Line 999 
999                  pFrame->intra = 0;                  pFrame->intra = 0;
1000                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1001    
1002                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1003                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1004                          input_valid = 0;                          input_valid = 0;
1005                          goto ipvop_loop;                          goto ipvop_loop;
1006                  }                  }
# Line 1086  Line 1077 
1077                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1078          }          }
1079    
   
1080          stop_global_timer();          stop_global_timer();
1081          write_timer();          write_timer();
1082    
1083            emms();
1084          return XVID_ERR_OK;          return XVID_ERR_OK;
1085  }  }
1086    
 #endif  
   
1087    
1088    
1089  /*****************************************************************************  /*****************************************************************************
# Line 1132  Line 1121 
1121    
1122          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1123          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;  
1124          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1125    
1126            inc_frame_num(pEnc);
1127    
1128            /* disable alternate scan flag if interlacing is not enabled */
1129            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1130                    !(pEnc->current->global_flags & XVID_INTERLACING))
1131            {
1132                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1133            }
1134    
1135          start_timer();          start_timer();
1136          if (image_input          if (image_input
1137                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1138                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1139                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1140          stop_conv_timer();          stop_conv_timer();
1141    
# Line 1158  Line 1154 
1154                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1155          }          }
1156    
1157            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1158                    pEnc->mbParam.m_quarterpel = 1;
1159            else
1160                    pEnc->mbParam.m_quarterpel = 0;
1161    
1162          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1163                  int *temp_dquants =                  int *temp_dquants =
1164                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 1263  Line 1264 
1264          DEBUG(temp);          DEBUG(temp);
1265  #endif  #endif
1266    
         inc_frame_num(pEnc);  
1267          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1268    
1269          stop_global_timer();          stop_global_timer();
# Line 1512  Line 1512 
1512          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1513          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1514          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1515            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1516          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1517    
1518          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1519  #ifdef BFRAMES  
1520  #define DIVX501B481P "DivX501b481p"  #define DIVX501B481P "DivX501b481p"
1521          if ((pEnc->global & XVID_GLOBAL_PACKED)) {          if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1522                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1523          }          }
1524  #endif  
1525    #define XVID_ID "XviD" XVID_BS_VERSION
1526            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1527    
1528            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1529          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1530    
1531          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1570  Line 1575 
1575    
1576    
1577  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1578  #define BFRAME_SKIP_THRESHHOLD 16  #define BFRAME_SKIP_THRESHHOLD 30
1579    
1580  static int  static int
1581  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1587  Line 1592 
1592          int iLimit;          int iLimit;
1593          int x, y, k;          int x, y, k;
1594          int iSearchRange;          int iSearchRange;
1595          int bIntra;          int bIntra, skip_possible;
1596    
1597          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1598          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1599    
1600          start_timer();          start_timer();
1601          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1602                                     pEnc->mbParam.width, pEnc->mbParam.height,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                                    pEnc->current->global_flags & XVID_INTERLACING);  
1603          stop_edges_timer();          stop_edges_timer();
1604    
1605          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1606          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1607            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1608          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1609    
1610          if (!force_inter)          if (!force_inter)
# Line 1614  Line 1619 
1619                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1620                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1621                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1622                                                      pEnc->mbParam.m_quarterpel,
1623                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1624                  stop_inter_timer();                  stop_inter_timer();
1625          }          }
1626    
1627            if (pEnc->current->global_flags & XVID_GMC) {
1628    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1629                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1630                    pEnc->current->coding_type = S_VOP;
1631            } else
1632                    pEnc->current->coding_type = P_VOP;
1633    
1634          start_timer();          start_timer();
1635          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1636                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1637            if (bIntra == 0) {
1638                            pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);
1639                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1640                                                                                            &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1641                    }
1642    
1643          } else {          } else {
1644    
 #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  
1645                  bIntra =                  bIntra =
1646                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1647                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1648                           iLimit);                           iLimit);
   
1649          }          }
1650          stop_motion_timer();          stop_motion_timer();
1651    
1652          if (bIntra == 1) {          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1653                  return FrameCodeI(pEnc, bs, pBits);  
1654          }          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1655                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1656    
         pEnc->current->coding_type = P_VOP;  
1657    
1658          if (vol_header)          if (vol_header)
1659                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1660    
1661    
1662            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1663          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1664    
1665          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1666    
1667          pEnc->sStat.iTextBits = 0;          pEnc->sStat.iTextBits = pEnc->sStat.iMvSum = pEnc->sStat.iMvCount =
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1668          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1669    
1670          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
# Line 1672  Line 1682 
1682                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1683                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1684                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1685                                                                             pEnc->mbParam.m_quarterpel,
1686                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1687                                  stop_comp_timer();                                  stop_comp_timer();
1688    
# Line 1689  Line 1700 
1700    
1701                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1702    
1703                                    if (pMB->mode != MODE_NOT_CODED)
1704                                  pMB->cbp =                                  pMB->cbp =
1705                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1706                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
# Line 1716  Line 1728 
1728    
1729                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1730    
1731                          if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&                          skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1732                                  pMB->mvs[0].y == 0) {                                                          (pMB->dquant == NO_CHANGE);
1733    
1734                            if(pEnc->mbParam.m_quarterpel)
1735                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1736                            }
1737                            else
1738                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1739                            }
1740    
1741  /* This is a candidate for SKIPping, but check intermediate B-frames first */                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1742    
1743  #ifdef BFRAMES  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
                                 int iSAD=BFRAME_SKIP_THRESHHOLD;  
1744                                  int bSkip=1;                                  int bSkip=1;
1745    
1746                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1747                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1748                                  {                                  {
1749                                                    int iSAD;
1750                                          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,
1751                                                                  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,
1752                                                                  pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);                                                                  pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1753                                          if (iSAD >= BFRAME_SKIP_THRESHHOLD)                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1754                                          {       bSkip = 0;                                          {       bSkip = 0;
1755                                                  break;                                                  break;
1756                                          }                                          }
1757                                  }                                  }
1758    
1759                                  if (!bSkip)                                  if (!bSkip)
1760                                  {                                  {
1761                                          if (pEnc->current->global_flags & XVID_GREYSCALE)                                          VECTOR predMV;
1762                                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                                          if(pEnc->mbParam.m_quarterpel) {
1763                                                  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);
1764                                                  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)! */
1765                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1766                                            }
1767                                            else {
1768                                                    predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1769                                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1770                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1771                                          }                                          }
1772                                            pMB->mode = MODE_INTER;
1773                                            pMB->cbp = 0;
1774                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
                                         pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */  
1775                                  }                                  }
1776                                  else                                  else
1777                                    {
1778                                            pMB->mode = MODE_NOT_CODED;
1779                                          MBSkip(bs);                                          MBSkip(bs);
1780                                    }
 #else  
                                         MBSkip(bs);     /* without B-frames, no precautions are needed */  
   
 #endif  
1781    
1782                          } else {                          } else {
1783                                  if (pEnc->current->global_flags & XVID_GREYSCALE)                                  if (pEnc->current->global_flags & XVID_GREYSCALE)
# Line 1780  Line 1806 
1806          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1807    
1808          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1809                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1810          {          {
1811                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1812                  iSearchRange *= 2;                  iSearchRange *= 2;
1813          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1814                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->sStat.fMvPrevSigma >= 0)
1815                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1816                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1817          {          {
1818                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1819                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 1795  Line 1821 
1821    
1822          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1823    
1824  #ifdef BFRAMES  #ifdef FRAMEDROP
1825          /* frame drop code */          /* frame drop code */
1826          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1827          if (pEnc->sStat.kblks + pEnc->sStat.mblks <          if (pEnc->sStat.kblks + pEnc->sStat.mblks <
# Line 1805  Line 1831 
1831                  pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;                  pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1832    
1833                  BitstreamReset(bs);                  BitstreamReset(bs);
1834    
1835                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1836                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1837    
1838                  // copy reference frame details into the current frame                  // copy reference frame details into the current frame
1839                  pEnc->current->quant = pEnc->reference->quant;                  pEnc->current->quant = pEnc->reference->quant;
1840                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  pEnc->current->motion_flags = pEnc->reference->motion_flags;
1841                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  pEnc->current->rounding_type = pEnc->reference->rounding_type;
1842                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1843                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1844                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1845                  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);
# Line 1821  Line 1850 
1850    
1851          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1852    
 #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  
   
1853          return 0;                                       // inter          return 0;                                       // inter
1854  }  }
1855    
1856    
1857  #ifdef BFRAMES  static __inline void
 static void  
1858  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1859                     FRAMEINFO * frame,                     FRAMEINFO * frame,
1860                     Bitstream * bs,                     Bitstream * bs,
# Line 1841  Line 1863 
1863          int16_t dct_codes[6 * 64];          int16_t dct_codes[6 * 64];
1864          int16_t qcoeff[6 * 64];          int16_t qcoeff[6 * 64];
1865          uint32_t x, y;          uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1866    
1867          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1868          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
# Line 1859  Line 1879 
1879          }          }
1880  #endif  #endif
1881    
1882            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1883    
1884          // forward          // forward
1885          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1886                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1887                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1888          start_timer();          start_timer();
1889          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,
1890                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1891                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1892          stop_inter_timer();          stop_inter_timer();
1893    
1894          // backward          // backward
1895          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_ref, pEnc->mbParam.edged_width,
1896                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1897                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1898          start_timer();          start_timer();
1899          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1900                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1901                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1902          stop_inter_timer();          stop_inter_timer();
1903    
1904          start_timer();          start_timer();
1905    
1906          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1907                  ((int32_t)pEnc->mbParam.fbase + pEnc->last_pframe - frame->ticks) % pEnc->mbParam.fbase,                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1908                                                  pEnc->time_pp,                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1909                                                  pEnc->reference->mbs, f_ref,                                                  pEnc->reference->mbs, f_ref,
1910                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1911                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,
# Line 1899  Line 1920 
1920             } */             } */
1921    
1922          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1923    
1924            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1925          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1926    
1927          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1910  Line 1933 
1933    
1934    
1935          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;  
   
1936                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1937                          MACROBLOCK *f_mb =                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1938                                  &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];                          int direction = pEnc->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];  
1939    
1940                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
1941                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1942                                  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  
1943                                  continue;                                  continue;
1944                          }                          }
1945    
1946                            if (mb->mode != MODE_DIRECT_NONE_MV) {
1947                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1948                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1949                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1950                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
1951                                                                           dct_codes);                                                                           dct_codes);
1952    
1953                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1954                          mb->quant = frame->quant;                          mb->quant = frame->quant;
1955    
1956                          mb->cbp =                          mb->cbp =
1957                                  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);  
1958    
1959                          if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)                          if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1960                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
1961                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
1962                          }                          }
   
 /* 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;  
1963                          }                          }
1964    
 //                      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);  
   
1965  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1966          BFRAME_DEBUG          BFRAME_DEBUG
1967  #endif  #endif
1968                          start_timer();                          start_timer();
1969                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1970                                                   &pEnc->sStat);                                                   &pEnc->sStat, direction);
1971                          stop_coding_timer();                          stop_coding_timer();
1972                  }                  }
1973          }          }
# Line 1993  Line 1986 
1986          }          }
1987  #endif  #endif
1988  }  }
 #endif  
1989    
1990    
1991  /*      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.17

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