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

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

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

trunk/xvidcore/src/encoder.c revision 318, Fri Jul 19 15:02:39 2002 UTC branches/dev-api-3/xvidcore/src/encoder.c revision 680, Wed Nov 27 11:50:33 2002 UTC
# Line 39  Line 39 
39   *             MinChen <chenm001@163.com>   *             MinChen <chenm001@163.com>
40   *  14.04.2002 added FrameCodeB()   *  14.04.2002 added FrameCodeB()
41   *   *
42   *  $Id: encoder.c,v 1.58 2002-07-19 15:02:38 chl Exp $   *  $Id: encoder.c,v 1.76.2.22 2002-11-27 11:50:33 suxen_drol Exp $
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
46    
47  #include <stdlib.h>  #include <stdlib.h>
48  #include <stdio.h>  #include <stdio.h>
49  #include <math.h>  #include <math.h>
# Line 53  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  #endif  #include "motion/sad.h"
59  #include "motion/motion.h"  #include "motion/motion.h"
60  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
61  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 68  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 92  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 112  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 209  Line 197 
197    
198          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
199    
200          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
201                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
202    
203          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
# Line 236  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 274  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 293  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 306  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 339  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;
329          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->bquant_ratio = pParam->bquant_ratio;
330            pEnc->bquant_offset = pParam->bquant_offset;
331            pEnc->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 417  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 = 1;          pEnc->current->stamp = 0;
409  #endif          pEnc->reference->stamp = 0;
410    
411          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
412    
# Line 441  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 475  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 535  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 572  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 590  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 617  Line 593 
593  }  }
594    
595    
596  #ifdef BFRAMES  static __inline void inc_frame_num(Encoder * pEnc)
 void inc_frame_num(Encoder * pEnc)  
597  {  {
598          pEnc->iFrameNum++;          pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
599          pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;          pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
   
         pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;  
         pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;  
600  }  }
 #endif  
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 646  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 673  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 716  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 734  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                    /* 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->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->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 791  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 815  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    
                 pFrame->intra = 0;  
   
842                  BitstreamPutBits(&bs, 0x7f, 8);                  BitstreamPutBits(&bs, 0x7f, 8);
843                  BitstreamPad(&bs);                          pFrame->intra = 5;
844                  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 852  Line 860 
860                  else                  else
861                          pEnc->current->quant = pFrame->quant;                          pEnc->current->quant = pFrame->quant;
862    
863                  if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
864                          pEnc->current->quant = 1;                          pEnc->current->quant = 1;
865    
866                  if (pEnc->current->quant > 31)                  if (pEnc->current->quant > 31)
867                          pEnc->current->quant = 31;                          pEnc->current->quant = 31;
868    */
869                  pEnc->current->global_flags = pFrame->general;                  pEnc->current->global_flags = pFrame->general;
870                  pEnc->current->motion_flags = pFrame->motion;                  pEnc->current->motion_flags = pFrame->motion;
871    
# Line 865  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 879  Line 884 
884    
885                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->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 922  Line 927 
927           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
928           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
929    
   
930          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
931                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
932                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
933                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,
934                                           pEnc->mbParam.edged_width, pEnc->mbParam.width,                                                                          &pEnc->mbParam, pEnc->iMaxKeyInterval,
935                                           pEnc->mbParam.height) > 30) {                                                                          (pFrame->intra < 0) ? pEnc->iFrameNum : 0,
936                                                                            bframes_count++))) {
937    
938                  /*                  /*
939                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
940                   */                   */
941                    if ((pEnc->current->global_flags & XVID_QUARTERPEL))
942                            pEnc->mbParam.m_quarterpel = 1;
943                    else
944                            pEnc->mbParam.m_quarterpel = 0;
945    
946                    if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;
947    
948                    if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
949                            if (pFrame->quant_intra_matrix != NULL)
950                                    set_intra_matrix(pFrame->quant_intra_matrix);
951                            if (pFrame->quant_inter_matrix != NULL)
952                                    set_inter_matrix(pFrame->quant_inter_matrix);
953                    }
954    
955    
956                  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",
957                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
# Line 953  Line 973 
973                                  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");
974                          }                          }
975                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
976                            bframes_count = 0;
977    
978                          pFrame->intra = 0;                          pFrame->intra = 0;
979    
980                  } else {                  } else {
981    
982                          FrameCodeI(pEnc, &bs, &bits);                          FrameCodeI(pEnc, &bs, &bits);
983                            bframes_count = 0;
984                          pFrame->intra = 1;                          pFrame->intra = 1;
985    
986                          pEnc->bframenum_dx50bvop = -1;                          pEnc->bframenum_dx50bvop = -1;
# Line 967  Line 989 
989                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
990    
991                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
992                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
993                          input_valid = 0;                          input_valid = 0;
994                          goto ipvop_loop;                          goto ipvop_loop;
995                  }                  }
# Line 976  Line 998 
998                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
999                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1000                   */                   */
1001          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1002    //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1003                  /*                  /*
1004                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1005                   */                   */
# Line 990  Line 1013 
1013                  }                  }
1014    
1015                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1016                    bframes_count = 0;
1017                  pFrame->intra = 0;                  pFrame->intra = 0;
1018                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1019    
1020                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1021                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1022                          input_valid = 0;                          input_valid = 0;
1023                          goto ipvop_loop;                          goto ipvop_loop;
1024                  }                  }
# Line 1004  Line 1028 
1028                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1029                   */                   */
1030    
                 DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",  
                                 pEnc->bframenum_head, pEnc->bframenum_tail,  
                                 pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);  
   
1031                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1032                          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");
1033                  }                  }
1034    
1035                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1036                          pEnc->current->quant =                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1037                                  ((pEnc->reference->quant +                                  pEnc->bquant_ratio) / 2) + pEnc->bquant_offset)/100;
1038                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;  
1039                  } else {                  } else {
1040                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1041                  }                  }
1042    
1043                    if (pEnc->current->quant < 1)
1044                            pEnc->current->quant = 1;
1045                    else if (pEnc->current->quant > 31)
1046                pEnc->current->quant = 31;
1047    
1048                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1049                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1050                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1051    
1052                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1053                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1054                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
1055    
1056                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1057    
1058                  pFrame->intra = 0;  // bframe report by koepi
1059                    pFrame->intra = 2;
1060                  pFrame->length = 0;                  pFrame->length = 0;
1061    
1062                  input_valid = 0;                  input_valid = 0;
1063                  goto bvop_loop;                  goto bvop_loop;
1064          }          }
1065    
1066            pEnc->iFrameNum++;
1067    
1068          BitstreamPad(&bs);          BitstreamPad(&bs);
1069          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1070    
# Line 1061  Line 1093 
1093                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1094          }          }
1095    
   
1096          stop_global_timer();          stop_global_timer();
1097          write_timer();          write_timer();
1098    
1099            emms();
1100          return XVID_ERR_OK;          return XVID_ERR_OK;
1101  }  }
1102    
 #endif  
   
1103    
1104    
1105  /*****************************************************************************  /*****************************************************************************
# Line 1107  Line 1137 
1137    
1138          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1139          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
 #ifdef BFRAMES  
         pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
 #endif  
1140          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1141    
1142            inc_frame_num(pEnc);
1143    
1144            /* disable alternate scan flag if interlacing is not enabled */
1145            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1146                    !(pEnc->current->global_flags & XVID_INTERLACING))
1147            {
1148                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1149            }
1150    
1151          start_timer();          start_timer();
1152          if (image_input          if (image_input
1153                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1154                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1155                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1156          stop_conv_timer();          stop_conv_timer();
1157    
# Line 1135  Line 1170 
1170                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1171          }          }
1172    
1173            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1174                    pEnc->mbParam.m_quarterpel = 1;
1175            else
1176                    pEnc->mbParam.m_quarterpel = 0;
1177    
1178          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1179                  int *temp_dquants =                  int *temp_dquants =
1180                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 1240  Line 1280 
1280          DEBUG(temp);          DEBUG(temp);
1281  #endif  #endif
1282    
 #ifdef BFRAMES  
         inc_frame_num(pEnc);  
 #else  
1283          pEnc->iFrameNum++;          pEnc->iFrameNum++;
 #endif  
   
1284    
1285          stop_global_timer();          stop_global_timer();
1286          write_timer();          write_timer();
# Line 1493  Line 1528 
1528          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1529          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1530          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1531            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1532          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1533    
1534          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1535  #ifdef BFRAMES  
1536  #define DIVX501B481P "DivX501b481p"  #define DIVX501B481P "DivX501b481p"
1537          if ((pEnc->global & XVID_GLOBAL_PACKED)) {          if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1538                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1539          }          }
1540  #endif  
1541    #define XVID_ID "XviD" XVID_BS_VERSION
1542            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1543    
1544            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1545          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1546    
1547          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1525  Line 1565 
1565                          stop_prediction_timer();                          stop_prediction_timer();
1566    
1567                          start_timer();                          start_timer();
1568                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1569                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1570                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1571                                    qcoeff[5*64+0]=0;
1572                            }
1573                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1574                          stop_coding_timer();                          stop_coding_timer();
1575                  }                  }
# Line 1546  Line 1591 
1591    
1592    
1593  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1594    #define BFRAME_SKIP_THRESHHOLD 30
1595    
1596  static int  static int
1597  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1560  Line 1606 
1606          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1607    
1608          int iLimit;          int iLimit;
1609          uint32_t x, y;          int x, y, k;
1610          int iSearchRange;          int iSearchRange;
1611          int bIntra;          int bIntra, skip_possible;
1612    
1613          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1614          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1615    
1616          start_timer();          start_timer();
1617          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1618                                     pEnc->mbParam.width, pEnc->mbParam.height,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                                    pEnc->current->global_flags & XVID_INTERLACING);  
1619          stop_edges_timer();          stop_edges_timer();
1620    
1621          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1622          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1623            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1624          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1625    
1626          if (!force_inter)          if (!force_inter)
# Line 1589  Line 1635 
1635                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1636                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1637                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1638                                                      pEnc->mbParam.m_quarterpel,
1639                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1640                  stop_inter_timer();                  stop_inter_timer();
1641          }          }
1642    
1643            if (pEnc->current->global_flags & XVID_GMC) {
1644    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1645                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1646                    pEnc->current->coding_type = S_VOP;
1647            } else
1648                    pEnc->current->coding_type = P_VOP;
1649    
1650          start_timer();          start_timer();
1651          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1652                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1653            if (bIntra == 0) {
1654                            pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);
1655                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1656                                                                                            &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1657                    }
1658    
1659          } else {          } else {
1660    
 #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  
1661                  bIntra =                  bIntra =
1662                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1663                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1664                           iLimit);                           iLimit);
   
1665          }          }
1666          stop_motion_timer();          stop_motion_timer();
1667    
1668          if (bIntra == 1) {          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1669                  return FrameCodeI(pEnc, bs, pBits);  
1670          }          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1671                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1672    
         pEnc->current->coding_type = P_VOP;  
1673    
1674          if (vol_header)          if (vol_header)
1675                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1676    
1677    
1678            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1679          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1680    
1681          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1682    
1683          pEnc->sStat.iTextBits = 0;          pEnc->sStat.iTextBits = pEnc->sStat.iMvSum = pEnc->sStat.iMvCount =
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1684          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1685    
1686          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
# Line 1647  Line 1698 
1698                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1699                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1700                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1701                                                                             pEnc->mbParam.m_quarterpel,
1702                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1703                                  stop_comp_timer();                                  stop_comp_timer();
1704    
# Line 1664  Line 1716 
1716    
1717                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1718    
1719                                    if (pMB->mode != MODE_NOT_CODED)
1720                                  pMB->cbp =                                  pMB->cbp =
1721                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1722                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
# Line 1688  Line 1741 
1741                          }                          }
1742    
1743                          start_timer();                          start_timer();
1744    
1745                            /* Finished processing the MB, now check if to CODE or SKIP */
1746    
1747                            skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1748                                                            (pMB->dquant == NO_CHANGE);
1749    
1750                            if(pEnc->mbParam.m_quarterpel)
1751                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1752                            }
1753                            else
1754                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1755                            }
1756    
1757                            if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1758    
1759    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1760                                    int bSkip = 1;
1761    
1762                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1763                                            for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1764                                            {
1765                                                    int iSAD;
1766                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1767                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1768                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1769                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1770                                                    {       bSkip = 0;
1771                                                            break;
1772                                                    }
1773                                            }
1774    
1775                                    if (!bSkip)
1776                                    {
1777                                            VECTOR predMV;
1778                                            if(pEnc->mbParam.m_quarterpel) {
1779                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1780                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1781                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1782                                            }
1783                                            else {
1784                                                    predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1785                                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1786                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1787                                            }
1788                                            pMB->mode = MODE_INTER;
1789                                            pMB->cbp = 0;
1790                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1791                                    }
1792                                    else
1793                                    {
1794                                            pMB->mode = MODE_NOT_CODED;
1795                                            MBSkip(bs);
1796                                    }
1797    
1798                            } else {
1799                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1800                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1801                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1802                                            qcoeff[5*64+0]=0;
1803                                    }
1804                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1805                            }
1806    
1807                          stop_coding_timer();                          stop_coding_timer();
1808                  }                  }
1809          }          }
# Line 1707  Line 1822 
1822          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1823    
1824          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1825                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1826          {          {
1827                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1828                  iSearchRange *= 2;                  iSearchRange *= 2;
1829          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1830                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->sStat.fMvPrevSigma >= 0)
1831                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1832                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1833          {          {
1834                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1835                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 1722  Line 1837 
1837    
1838          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1839    
1840          *pBits = BitstreamPos(bs) - *pBits;  #ifdef FRAMEDROP
1841            /* frame drop code */
1842            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1843            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1844                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1845            {
1846                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1847                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1848    
1849                    BitstreamReset(bs);
1850    
1851                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1852                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1853    
1854                    // copy reference frame details into the current frame
1855                    pEnc->current->quant = pEnc->reference->quant;
1856                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1857                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1858                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1859                    pEnc->current->fcode = pEnc->reference->fcode;
1860                    pEnc->current->bcode = pEnc->reference->bcode;
1861                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1862                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1863    
1864            }
1865    #endif
1866    
1867          pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;          *pBits = BitstreamPos(bs) - *pBits;
1868    
         pEnc->last_pframe = pEnc->mbParam.m_ticks;  
1869          return 0;                                       // inter          return 0;                                       // inter
1870  }  }
1871    
1872    
1873  #ifdef BFRAMES  static __inline void
 static void  
1874  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1875                     FRAMEINFO * frame,                     FRAMEINFO * frame,
1876                     Bitstream * bs,                     Bitstream * bs,
# Line 1741  Line 1879 
1879          int16_t dct_codes[6 * 64];          int16_t dct_codes[6 * 64];
1880          int16_t qcoeff[6 * 64];          int16_t qcoeff[6 * 64];
1881          uint32_t x, y;          uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1882    
1883          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1884          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
# Line 1759  Line 1895 
1895          }          }
1896  #endif  #endif
1897    
1898            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1899    
1900          // forward          // forward
1901          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1902                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1903                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1904          start_timer();          start_timer();
1905          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,
1906                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1907                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1908          stop_inter_timer();          stop_inter_timer();
1909    
1910          // backward          // backward
1911          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_ref, pEnc->mbParam.edged_width,
1912                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1913                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1914          start_timer();          start_timer();
1915          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1916                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1917                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1918          stop_inter_timer();          stop_inter_timer();
1919    
1920          start_timer();          start_timer();
1921    
1922          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1923            ((int32_t)pEnc->mbParam.fbase + (int32_t)pEnc->mbParam.m_ticks + 1 - (int32_t)pEnc->last_pframe) % pEnc->mbParam.fbase,                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1924                                                  pEnc->time_pp,                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1925                                                  pEnc->reference->mbs, f_ref,                                                  pEnc->reference->mbs, f_ref,
1926                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1927                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1928                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1929    
1930    
# Line 1799  Line 1936 
1936             } */             } */
1937    
1938          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1939    
1940            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1941          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1942    
1943          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1810  Line 1949 
1949    
1950    
1951          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;  
   
1952                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1953                          MACROBLOCK *f_mb =                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1954                                  &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];  
1955    
1956                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
1957                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1958                                  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  
1959                                  continue;                                  continue;
1960                          }                          }
1961    
1962                            if (mb->mode != MODE_DIRECT_NONE_MV) {
1963                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1964                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1965                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1966                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
1967                                                                           dct_codes);                                                                           dct_codes);
1968    
1969                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1970                          mb->quant = frame->quant;                          mb->quant = frame->quant;
                         mb->cbp =  
                                 MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes,  
                                                                   qcoeff);  
                         //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);  
1971    
1972                                    mb->cbp =
1973                                            MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
1974    
1975                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1976                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
1977                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
1978                          }                          }
   
                         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;  
1979                          }                          }
 //                      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);  
1980    
1981  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1982          BFRAME_DEBUG          BFRAME_DEBUG
1983  #endif  #endif
1984                          start_timer();                          start_timer();
1985                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1986                                                   &pEnc->sStat);                                                   &pEnc->sStat, direction);
1987                          stop_coding_timer();                          stop_coding_timer();
1988                  }                  }
1989          }          }
# Line 1893  Line 2002 
2002          }          }
2003  #endif  #endif
2004  }  }
2005  #endif  
2006    
2007    /*      in case internal output is needed somewhere... */
2008    /*      {
2009            FILE *filehandle;
2010            filehandle=fopen("last-b.pgm","wb");
2011            if (filehandle)
2012            {
2013                    fprintf(filehandle,"P5\n\n");           //
2014                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2015                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2016                    fclose(filehandle);
2017                    }
2018            }
2019    */

Legend:
Removed from v.318  
changed lines
  Added in v.680

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