[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

revision 530, Mon Sep 23 20:36:02 2002 UTC revision 659, Tue Nov 19 13:21:25 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.76.2.1 2002-09-23 20:36:01 chl Exp $   *  $Id: encoder.c,v 1.76.2.20 2002-11-19 13:21:25 suxen_drol Exp $
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
# 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 109  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 336  Line 327 
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;          pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
332          pEnc->bframes = NULL;          pEnc->bframes = NULL;
333    
# Line 410  Line 402 
402          pEnc->queue_tail = 0;          pEnc->queue_tail = 0;
403          pEnc->queue_size = 0;          pEnc->queue_size = 0;
404    
405            pEnc->mbParam.m_stamp = 0;
406    
         pEnc->mbParam.m_seconds = 0;  
         pEnc->mbParam.m_ticks = 0;  
407          pEnc->m_framenum = 0;          pEnc->m_framenum = 0;
408          pEnc->last_pframe = 0;          pEnc->current->stamp = 0;
409          pEnc->last_sync = 0;          pEnc->reference->stamp = 0;
410    
411          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
412    
# Line 604  Line 595 
595    
596  static __inline void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
597  {  {
598          pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;          pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
599            pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
         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;  
   
600  }  }
601    
602    
# Line 633  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    
# Line 641  Line 625 
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    
628    static __inline void
629    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
630    {
631    
632                    pCur->ticks = (int32_t)pCur->stamp % time_base;
633                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
634    
635                    //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
636    
637    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
638                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
639                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
640                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
641                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
642                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
643    
644    */
645    }
646    
647    
648    
649    
650    
651  /*****************************************************************************  /*****************************************************************************
# Line 659  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 702  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 720  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 777  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 801  Line 828 
828                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
829                  pEnc->queue_size--;                  pEnc->queue_size--;
830    
831          } else if (BitstreamPos(&bs) == 0) {          } else {
832    
833                    /* if nothing was encoded, write an 'ignore this frame' flag
834                       to the bitstream */
835    
836                    if (BitstreamPos(&bs) == 0) {
837    
838                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
839                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
840                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
841    
842                  pFrame->intra = 0;                          BitstreamPutBits(&bs, 0x7f, 8);
843                            pFrame->intra = 5;
844                  BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP                  }
                 BitstreamPad(&bs);  
                 pFrame->length = BitstreamLength(&bs);  
   
                 return XVID_ERR_OK;  
   
         } else {  
845    
846                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
847                    emms();
848                  return XVID_ERR_OK;                  return XVID_ERR_OK;
849          }          }
850    
# Line 846  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 860  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 903  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                  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",
947                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
# Line 934  Line 963 
963                                  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");
964                          }                          }
965                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
966                            bframes_count = 0;
967    
968                          pFrame->intra = 0;                          pFrame->intra = 0;
969    
970                  } else {                  } else {
971    
972                          FrameCodeI(pEnc, &bs, &bits);                          FrameCodeI(pEnc, &bs, &bits);
973                            bframes_count = 0;
974                          pFrame->intra = 1;                          pFrame->intra = 1;
975    
976                          pEnc->bframenum_dx50bvop = -1;                          pEnc->bframenum_dx50bvop = -1;
# Line 948  Line 979 
979                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
980    
981                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
982                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
983                          input_valid = 0;                          input_valid = 0;
984                          goto ipvop_loop;                          goto ipvop_loop;
985                  }                  }
# Line 957  Line 988 
988                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
989                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
990                   */                   */
991          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
992    //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
993                  /*                  /*
994                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
995                   */                   */
# Line 971  Line 1003 
1003                  }                  }
1004    
1005                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1006                    bframes_count = 0;
1007                  pFrame->intra = 0;                  pFrame->intra = 0;
1008                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1009    
1010                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1011                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1012                          input_valid = 0;                          input_valid = 0;
1013                          goto ipvop_loop;                          goto ipvop_loop;
1014                  }                  }
# Line 990  Line 1023 
1023                  }                  }
1024    
1025                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1026                          pEnc->current->quant =                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1027                                  ((pEnc->reference->quant +                                  pEnc->bquant_ratio) / 2) + pEnc->bquant_offset)/100;
1028                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;  
1029                  } else {                  } else {
1030                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1031                  }                  }
1032    
1033                  if (pEnc->current->quant < 1)                  if (pEnc->current->quant < 1)
1034                          pEnc->current->quant = 1;                          pEnc->current->quant = 1;
1035                    else if (pEnc->current->quant > 31)
                 if (pEnc->current->quant > 31)  
1036                          pEnc->current->quant = 31;                          pEnc->current->quant = 31;
1037    
   
1038                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1039                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1040                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1041    
   
   
1042                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1043                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1044                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
1045    
1046                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1047    
1048                  pFrame->intra = 0;  // bframe report by koepi
1049                    pFrame->intra = 2;
1050                  pFrame->length = 0;                  pFrame->length = 0;
1051    
1052                  input_valid = 0;                  input_valid = 0;
# Line 1052  Line 1083 
1083                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1084          }          }
1085    
   
1086          stop_global_timer();          stop_global_timer();
1087          write_timer();          write_timer();
1088    
1089            emms();
1090          return XVID_ERR_OK;          return XVID_ERR_OK;
1091  }  }
1092    
# Line 1096  Line 1127 
1127    
1128          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1129          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;  
1130          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1131    
1132            inc_frame_num(pEnc);
1133    
1134            /* disable alternate scan flag if interlacing is not enabled */
1135            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1136                    !(pEnc->current->global_flags & XVID_INTERLACING))
1137            {
1138                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1139            }
1140    
1141          start_timer();          start_timer();
1142          if (image_input          if (image_input
1143                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1144                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1145                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1146          stop_conv_timer();          stop_conv_timer();
1147    
# Line 1122  Line 1160 
1160                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1161          }          }
1162    
1163            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1164                    pEnc->mbParam.m_quarterpel = 1;
1165            else
1166                    pEnc->mbParam.m_quarterpel = 0;
1167    
1168          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1169                  int *temp_dquants =                  int *temp_dquants =
1170                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 1227  Line 1270 
1270          DEBUG(temp);          DEBUG(temp);
1271  #endif  #endif
1272    
         inc_frame_num(pEnc);  
1273          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1274    
1275          stop_global_timer();          stop_global_timer();
# Line 1476  Line 1518 
1518          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1519          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1520          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1521            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1522          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1523    
1524          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
# Line 1484  Line 1527 
1527          if ((pEnc->global & XVID_GLOBAL_PACKED)) {          if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1528                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1529          }          }
1530    
1531    #define XVID_ID "XviD" XVID_BS_VERSION
1532            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1533    
1534            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1535          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1536    
1537          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1524  Line 1572 
1572          pEnc->sStat.iMvCount = 0;          pEnc->sStat.iMvCount = 0;
1573          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1574    
         pEnc->last_pframe = pEnc->current->ticks;  
         pEnc->last_sync = pEnc->current->ticks;  
   
1575          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1576                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1577          }          }
# Line 1553  Line 1598 
1598          int iLimit;          int iLimit;
1599          int x, y, k;          int x, y, k;
1600          int iSearchRange;          int iSearchRange;
1601          int bIntra;          int bIntra, skip_possible;
1602    
1603          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1604          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1605    
1606          start_timer();          start_timer();
1607          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1608                                     pEnc->mbParam.width, pEnc->mbParam.height,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                                    pEnc->current->global_flags & XVID_INTERLACING);  
1609          stop_edges_timer();          stop_edges_timer();
1610    
1611          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1612          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1613            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1614          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1615    
1616          if (!force_inter)          if (!force_inter)
# Line 1580  Line 1625 
1625                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1626                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1627                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1628                                                      pEnc->mbParam.m_quarterpel,
1629                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1630                  stop_inter_timer();                  stop_inter_timer();
1631          }          }
1632    
1633            if (pEnc->current->global_flags & XVID_GMC) {
1634    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1635                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1636                    pEnc->current->coding_type = S_VOP;
1637            } else
1638                    pEnc->current->coding_type = P_VOP;
1639    
1640          start_timer();          start_timer();
1641          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1642                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1643                  if (bIntra == 0) MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,          if (bIntra == 0) {
1644                            pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);
1645                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1646                                                                                          &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                                                                                          &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1647                    }
1648    
1649          } else {          } else {
1650    
# Line 1596  Line 1652 
1652                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1653                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1654                           iLimit);                           iLimit);
   
1655          }          }
1656          stop_motion_timer();          stop_motion_timer();
1657    
1658          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1659    
1660          pEnc->current->coding_type = P_VOP;          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1661                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1662    
1663    
1664          if (vol_header)          if (vol_header)
1665                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1666    
1667    
1668            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1669          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1670    
1671          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1629  Line 1688 
1688                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1689                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1690                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1691                                                                             pEnc->mbParam.m_quarterpel,
1692                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1693                                  stop_comp_timer();                                  stop_comp_timer();
1694    
# Line 1674  Line 1734 
1734    
1735                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1736    
1737                          if ((pMB->mode == MODE_NOT_CODED) ||                          skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1738                                  (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&                                                          (pMB->dquant == NO_CHANGE);
1739                                  pMB->mvs[0].y == 0 && pMB->dquant == NO_CHANGE)) {  
1740                            if(pEnc->mbParam.m_quarterpel)
1741                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1742                            }
1743                            else
1744                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1745                            }
1746    
1747  /* This is a candidate for SKIPping, but check intermediate B-frames first */                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1748    
1749    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1750                                  int bSkip = 1;                                  int bSkip = 1;
                                 pMB->mode = MODE_NOT_CODED;  
1751    
1752                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1753                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1754                                  {                                  {
1755                                          int iSAD;                                          int iSAD;
# Line 1694  Line 1761 
1761                                                  break;                                                  break;
1762                                          }                                          }
1763                                  }                                  }
1764    
1765                                  if (!bSkip)                                  if (!bSkip)
1766                                  {                                  {
1767                                          VECTOR predMV;                                          VECTOR predMV;
1768                                            if(pEnc->mbParam.m_quarterpel) {
1769                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1770                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1771                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1772                                            }
1773                                            else {
1774                                          predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                          predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1775                                          pMB->pmvs[0].x = -predMV.x; pMB->pmvs[0].y = -predMV.y;                                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1776                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1777                                            }
1778                                          pMB->mode = MODE_INTER;                                          pMB->mode = MODE_INTER;
1779                                          pMB->cbp = 0;                                          pMB->cbp = 0;
1780                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1781                                  }                                  }
1782                                  else MBSkip(bs);                                  else
1783                                    {
1784                                            pMB->mode = MODE_NOT_CODED;
1785                                            MBSkip(bs);
1786                                    }
1787    
1788                          } else {                          } else {
1789                                  if (pEnc->current->global_flags & XVID_GREYSCALE)                                  if (pEnc->current->global_flags & XVID_GREYSCALE)
# Line 1732  Line 1812 
1812          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1813    
1814          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1815                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1816          {          {
1817                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1818                  iSearchRange *= 2;                  iSearchRange *= 2;
1819          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1820                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->sStat.fMvPrevSigma >= 0)
1821                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1822                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1823          {          {
1824                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1825                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 1747  Line 1827 
1827    
1828          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1829    
1830  #ifdef BFRAMES  #ifdef FRAMEDROP
1831          /* frame drop code */          /* frame drop code */
1832          // 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);
1833          if (pEnc->sStat.kblks + pEnc->sStat.mblks <          if (pEnc->sStat.kblks + pEnc->sStat.mblks <
# Line 1757  Line 1837 
1837                  pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;                  pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1838    
1839                  BitstreamReset(bs);                  BitstreamReset(bs);
1840    
1841                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1842                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1843    
1844                  // copy reference frame details into the current frame                  // copy reference frame details into the current frame
1845                  pEnc->current->quant = pEnc->reference->quant;                  pEnc->current->quant = pEnc->reference->quant;
1846                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  pEnc->current->motion_flags = pEnc->reference->motion_flags;
1847                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  pEnc->current->rounding_type = pEnc->reference->rounding_type;
1848                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1849                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1850                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1851                  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 1773  Line 1856 
1856    
1857          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1858    
         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;  
   
1859          return 0;                                       // inter          return 0;                                       // inter
1860  }  }
1861    
# Line 1806  Line 1885 
1885          }          }
1886  #endif  #endif
1887    
1888            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1889    
1890          // forward          // forward
1891          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1892                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1893                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1894          start_timer();          start_timer();
1895          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,
1896                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1897                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1898          stop_inter_timer();          stop_inter_timer();
1899    
1900          // backward          // backward
1901          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_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(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
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          start_timer();          start_timer();
1911    
1912          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1913                  ((int32_t)pEnc->mbParam.fbase + pEnc->last_pframe - frame->ticks) % pEnc->mbParam.fbase,                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1914                                                  pEnc->time_pp,                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1915                                                  pEnc->reference->mbs, f_ref,                                                  pEnc->reference->mbs, f_ref,
1916                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1917                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1918                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1919    
1920    
# Line 1846  Line 1926 
1926             } */             } */
1927    
1928          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1929    
1930            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1931          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1932    
1933          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1859  Line 1941 
1941          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1942                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1943                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1944                            int direction = pEnc->global & XVID_ALTERNATESCAN ? 2 : 0;
1945    
1946                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
1947                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
# Line 1890  Line 1973 
1973  #endif  #endif
1974                          start_timer();                          start_timer();
1975                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1976                                                   &pEnc->sStat);                                                   &pEnc->sStat, direction);
1977                          stop_coding_timer();                          stop_coding_timer();
1978                  }                  }
1979          }          }

Legend:
Removed from v.530  
changed lines
  Added in v.659

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