[svn] / tags / branch-release-1-0 / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /tags/branch-release-1-0/xvidcore/src/encoder.c

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

revision 198, Thu Jun 13 11:42:15 2002 UTC revision 347, Sun Jul 28 13:06:46 2002 UTC
# Line 32  Line 32 
32   *   *
33   *  History   *  History
34   *   *
35     *  10.07.2002  added BFRAMES_DEC_DEBUG support
36     *              MinChen <chenm001@163.com>
37     *  20.06.2002 bframe patch
38   *  08.05.2002 fix some problem in DEBUG mode;   *  08.05.2002 fix some problem in DEBUG mode;
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.42 2002-06-13 11:42:15 edgomez Exp $   *  $Id: encoder.c,v 1.65 2002-07-28 13:06:45 chl 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 50  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"
57    #ifdef BFRAMES
58    #include "image/font.h"
59    #include "motion/sad.h"
60    #endif
61  #include "motion/motion.h"  #include "motion/motion.h"
62  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
63  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 62  Line 70 
70  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
71  #include "utils/mem_align.h"  #include "utils/mem_align.h"
72    
73    #ifdef _SMP
74    #include "motion/smp_motion_est.h"
75    #endif
76  /*****************************************************************************  /*****************************************************************************
77   * Local macros   * Local macros
78   ****************************************************************************/   ****************************************************************************/
# Line 132  Line 143 
143  encoder_create(XVID_ENC_PARAM * pParam)  encoder_create(XVID_ENC_PARAM * pParam)
144  {  {
145          Encoder *pEnc;          Encoder *pEnc;
146          uint32_t i;          int i;
147    
148          pParam->handle = NULL;          pParam->handle = NULL;
149    
# Line 200  Line 211 
211    
212          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
213    
214          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
215                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
216    
   
217          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
218          if (pEnc == NULL)          if (pEnc == NULL)
219                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
# Line 226  Line 236 
236          pEnc->mbParam.fbase = pParam->fbase;          pEnc->mbParam.fbase = pParam->fbase;
237          pEnc->mbParam.fincr = pParam->fincr;          pEnc->mbParam.fincr = pParam->fincr;
238    
239            pEnc->mbParam.m_quant_type = H263_QUANT;
240    
241    #ifdef _SMP
242            pEnc->mbParam.num_threads = MIN(pParam->num_threads, MAXNUMTHREADS);
243    #endif
244    
245          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
246    
247          /* Fill rate control parameters */          /* Fill rate control parameters */
# Line 257  Line 273 
273    
274          /* try to allocate image memory */          /* try to allocate image memory */
275    
276  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
277          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
278  #endif  #endif
279  #ifdef BFRAMES  #ifdef BFRAMES
# Line 273  Line 289 
289          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
290          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
291    
292  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
293          if (image_create          if (image_create
294                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
295                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 327  Line 343 
343          /* B Frames specific init */          /* B Frames specific init */
344  #ifdef BFRAMES  #ifdef BFRAMES
345    
346            pEnc->global = pParam->global;
347          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
348          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->bquant_ratio = pParam->bquant_ratio;
349            pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
350          pEnc->bframes = NULL;          pEnc->bframes = NULL;
351    
352          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 371  Line 389 
389          pEnc->bframenum_head = 0;          pEnc->bframenum_head = 0;
390          pEnc->bframenum_tail = 0;          pEnc->bframenum_tail = 0;
391          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
392            pEnc->bframenum_dx50bvop = -1;
393    
394            pEnc->queue = NULL;
395    
396    
397            if (pEnc->mbParam.max_bframes > 0) {
398                    int n;
399    
400                    pEnc->queue =
401                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),
402                                                    CACHE_LINE);
403    
404                    if (pEnc->queue == NULL)
405                            goto xvid_err_memory4;
406    
407                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
408                            image_null(&pEnc->queue[n]);
409    
410                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
411                            if (image_create
412                                    (&pEnc->queue[n], pEnc->mbParam.edged_width,
413                                     pEnc->mbParam.edged_height) < 0)
414                                    goto xvid_err_memory5;
415    
416                    }
417            }
418    
419            pEnc->queue_head = 0;
420            pEnc->queue_tail = 0;
421            pEnc->queue_size = 0;
422    
423    
424          pEnc->mbParam.m_seconds = 0;          pEnc->mbParam.m_seconds = 0;
425          pEnc->mbParam.m_ticks = 0;          pEnc->mbParam.m_ticks = 0;
426            pEnc->m_framenum = 0;
427            pEnc->last_pframe = 1;
428  #endif  #endif
429    
430          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
# Line 394  Line 445 
445           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
446           */           */
447  #ifdef BFRAMES  #ifdef BFRAMES
448      xvid_err_memory5:
449    
450    
451            if (pEnc->mbParam.max_bframes > 0) {
452    
453                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
454                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
455                                                      pEnc->mbParam.edged_height);
456                    }
457                    xvid_free(pEnc->queue);
458            }
459    
460    xvid_err_memory4:    xvid_err_memory4:
461    
462            if (pEnc->mbParam.max_bframes > 0) {
463    
464          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
465    
466                  if (pEnc->bframes[i] == NULL)                  if (pEnc->bframes[i] == NULL)
# Line 410  Line 476 
476          }          }
477    
478          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
479            }
480    
481  #endif  #endif
482    
483    xvid_err_memory3:    xvid_err_memory3:
484  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
485          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
486                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
487  #endif  #endif
# Line 471  Line 538 
538  int  int
539  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
540  {  {
541    #ifdef BFRAMES
542            int i;
543    #endif
544    
545          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
546    
547          /* B Frames specific */          /* B Frames specific */
548  #ifdef BFRAMES  #ifdef BFRAMES
549          int i;          if (pEnc->mbParam.max_bframes > 0) {
550    
551                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
552    
553                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
554                                              pEnc->mbParam.edged_height);
555                    }
556                    xvid_free(pEnc->queue);
557            }
558    
559    
560            if (pEnc->mbParam.max_bframes > 0) {
561    
562          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
563    
# Line 488  Line 570 
570                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
571    
572                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
573          }          }
574    
575          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
576    
577            }
578  #endif  #endif
579    
580          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
# Line 519  Line 601 
601          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
602                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
603  #endif  #endif
604  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
605          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
606                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
607  #endif  #endif
# Line 537  Line 619 
619          return XVID_ERR_OK;          return XVID_ERR_OK;
620  }  }
621    
622    
623    #ifdef BFRAMES
624    void inc_frame_num(Encoder * pEnc)
625    {
626            pEnc->iFrameNum++;
627            pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
628    
629            pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
630            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
631    }
632    #endif
633    
634    
635    #ifdef BFRAMES
636    void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
637    {
638            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
639            {
640                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
641                    return;
642            }
643    
644            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
645                                    pEnc->bframenum_head, pEnc->bframenum_tail,
646                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
647    
648    
649            start_timer();
650            if (image_input
651                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
652                     pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
653                    return;
654            stop_conv_timer();
655    
656            pEnc->queue_size++;
657            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
658    }
659    #endif
660    
661    
662    #ifdef BFRAMES
663  /*****************************************************************************  /*****************************************************************************
664   * Frame encoder entry point   * IPB frame encoder entry point
  *  
  * At this moment 2 versions coexist : one for IPB compatible encoder,  
  *                                     another one for the old IP encoder.  
665   *   *
666   * Returned values :   * Returned values :
667   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 549  Line 669 
669   *                        format   *                        format
670   ****************************************************************************/   ****************************************************************************/
671    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
672  int  int
673  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
674                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
675                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
676  {  {
# Line 563  Line 678 
678          Bitstream bs;          Bitstream bs;
679          uint32_t bits;          uint32_t bits;
680    
681  #ifdef _DEBUG          int input_valid = 1;
682    
683    #ifdef _DEBUG_PSNR
684          float psnr;          float psnr;
685          char temp[128];          char temp[128];
686  #endif  #endif
687    
688          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
689          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
690            ENC_CHECK(pFrame->image);
691    
692          start_global_timer();          start_global_timer();
693    
694          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
695    
696    ipvop_loop:
697    
698          /*          /*
699           * bframe "flush" code           * bframe "flush" code
700           */           */
# Line 589  Line 709 
709                           * frame as a pframe                           * frame as a pframe
710                           */                           */
711    
712                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
713                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
714                             dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
715                           */  
716                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
717                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
718    
# Line 602  Line 722 
722    
723                          BitstreamPad(&bs);                          BitstreamPad(&bs);
724                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
725                          pFrame->intra = 0;                          pFrame->intra = 0;
726    
727                          return XVID_ERR_OK;                          return XVID_ERR_OK;
728                  }                  }
729    
730                  /* ToDo : remove dprintf calls */  
731                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
732                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
733                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
734    
735                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
736                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
737    
   
738                  BitstreamPad(&bs);                  BitstreamPad(&bs);
739                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
                 pFrame->input_consumed = 0;  
740                  pFrame->intra = 0;                  pFrame->intra = 0;
741    
742                    if (input_valid)
743                            queue_image(pEnc, pFrame);
744    
745                  return XVID_ERR_OK;                  return XVID_ERR_OK;
746          }          }
747    
748          if (pFrame->image == NULL) {          if (pEnc->bframenum_head > 0) {
749                  pFrame->length = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
750                  pFrame->input_consumed = 1;  
751                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
752    
753                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
754                                    pEnc->bframenum_head, pEnc->bframenum_tail,
755                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
756    
757                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
758                            BitstreamPad(&bs);
759                            BitstreamPutBits(&bs, 0x7f, 8);
760    
761                            pFrame->length = BitstreamLength(&bs);
762                  pFrame->intra = 0;                  pFrame->intra = 0;
763    
764                            if (input_valid)
765                                    queue_image(pEnc, pFrame);
766    
767                  return XVID_ERR_OK;                  return XVID_ERR_OK;
768          }          }
769            }
770    
771          if (pEnc->bframenum_head > 0) {  
772                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;  bvop_loop:
773    
774            if (pEnc->bframenum_dx50bvop != -1)
775            {
776    
777                    SWAP(pEnc->current, pEnc->reference);
778                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
779    
780                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
781                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
782                    }
783    
784                    if (input_valid)
785                    {
786                            queue_image(pEnc, pFrame);
787                            input_valid = 0;
788                    }
789    
790            } else if (input_valid) {
791    
792                    SWAP(pEnc->current, pEnc->reference);
793    
794                    start_timer();
795                    if (image_input
796                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
797                            pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
798                            return XVID_ERR_FORMAT;
799                    stop_conv_timer();
800    
801                    // queue input frame, and dequue next image
802                    if (pEnc->queue_size > 0)
803                    {
804                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
805                            if (pEnc->queue_head != pEnc->queue_tail)
806                            {
807                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
808                            }
809                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
810                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
811                    }
812    
813            } else if (pEnc->queue_size > 0) {
814    
815                    SWAP(pEnc->current, pEnc->reference);
816    
817                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
818                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
819                    pEnc->queue_size--;
820    
821            } else if (BitstreamPos(&bs) == 0) {
822    
823                    DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
824                                    pEnc->bframenum_head, pEnc->bframenum_tail,
825                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
826    
827                    pFrame->intra = 0;
828    
829                    BitstreamPutBits(&bs, 0x7f, 8);
830                    BitstreamPad(&bs);
831                    pFrame->length = BitstreamLength(&bs);
832    
833                    return XVID_ERR_OK;
834    
835            } else {
836    
837                    pFrame->length = BitstreamLength(&bs);
838                    return XVID_ERR_OK;
839          }          }
840    
841          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
# Line 643  Line 845 
845           * comment style :-)           * comment style :-)
846           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
847    
         SWAP(pEnc->current, pEnc->reference);  
   
848          emms();          emms();
849    
850            // only inc frame num, adapt quant, etc. if we havent seen it before
851            if (pEnc->bframenum_dx50bvop < 0 )
852            {
853          if (pFrame->quant == 0)          if (pFrame->quant == 0)
854                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
855          else          else
856                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
857    
858          if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
859                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
860    
861          if (pEnc->current->quant > 31)          if (pEnc->current->quant > 31)
862                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
863    */
864          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
865          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
866          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
867          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
868          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
869          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
870    
871          start_timer();                  pEnc->current->seconds = pEnc->mbParam.m_seconds;
872          if (image_input                  pEnc->current->ticks = pEnc->mbParam.m_ticks;
873                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,  
874                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                  inc_frame_num(pEnc);
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
875    
876  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
877          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
878                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
879  #endif  #endif
880    
881          emms();          emms();
882    
883                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
884                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
885                                    "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);
886                    }
887    
888          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
889           * Luminance masking           * Luminance masking
890           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
# Line 709  Line 914 
914                          }                          }
915    
916  #undef OFFSET  #undef OFFSET
   
917                  }                  }
918    
919                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
920          }          }
921    
922            }
923    
924          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
925           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
926           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
927    
928    
929          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
930                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
931                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
932                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || image_mad(&pEnc->reference->image, &pEnc->current->image,
# Line 730  Line 936 
936                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
937                   */                   */
938    
939                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
940                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
941                     dprintf("--- IFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                  */  
942    
943                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
944                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
945                    }
946    
947                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
948    
949                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
950    
951                            pEnc->bframenum_tail--;
952                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
953    
954                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
955                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
956                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
957                            }
958                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
959    
960                            pFrame->intra = 0;
961    
962                    } else {
963    
964                            FrameCodeI(pEnc, &bs, &bits);
965                  pFrame->intra = 1;                  pFrame->intra = 1;
966    
967                            pEnc->bframenum_dx50bvop = -1;
968                    }
969    
970                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
971    
972                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
973                            BitstreamPad(&bs);
974                            input_valid = 0;
975                            goto ipvop_loop;
976                    }
977    
978                  /*                  /*
979                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
980                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
# Line 749  Line 984 
984                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
985                   */                   */
986    
987                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
988                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
989                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
990                   */  
991                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
992                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
993                    }
994    
995                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
996                  pFrame->intra = 0;                  pFrame->intra = 0;
997                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
998    
999                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1000                            BitstreamPad(&bs);
1001                            input_valid = 0;
1002                            goto ipvop_loop;
1003                    }
1004    
1005          } else {          } else {
1006                  /*                  /*
1007                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1008                   */                   */
1009    
1010                  /* ToDo : Remove dprintf calls */                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1011                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1012                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                    pEnc->bframenum_head,  
                    pEnc->bframenum_tail);  
                  */  
1013    
1014                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1015                          pEnc->current->quant =                          pEnc->current->quant =
# Line 776  Line 1018 
1018                  } else {                  } else {
1019                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1020                  }                  }
1021                    if (pEnc->current->quant < 1)
1022                            pEnc->current->quant = 1;
1023    
1024                    if (pEnc->current->quant > 31)
1025                            pEnc->current->quant = 31;
1026    
1027    
1028                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1029                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1030                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1031    
1032    
1033    
1034                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1035                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 785  Line 1039 
1039    
1040                  pFrame->intra = 0;                  pFrame->intra = 0;
1041                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
   
                 pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;  
                 if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {  
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
                 }  
1042    
1043                  return XVID_ERR_OK;                  input_valid = 0;
1044                    goto bvop_loop;
1045          }          }
1046    
1047          BitstreamPad(&bs);          BitstreamPad(&bs);
# Line 809  Line 1057 
1057    
1058          emms();          emms();
1059    
1060  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1061          psnr =          psnr =
1062                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1063                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 824  Line 1072 
1072                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1073          }          }
1074    
         pEnc->iFrameNum++;  
         pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;  
         if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {  
                 pEnc->mbParam.m_seconds++;  
                 pEnc->mbParam.m_ticks = 0;  
         }  
         pFrame->input_consumed = 1;  
1075    
1076          stop_global_timer();          stop_global_timer();
1077          write_timer();          write_timer();
1078    
1079          return XVID_ERR_OK;          return XVID_ERR_OK;
1080  }  }
1081  #else  
1082    #endif
1083    
1084    
1085    
1086  /*****************************************************************************  /*****************************************************************************
1087   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1088     *
1089     * Returned values :
1090     *    - XVID_ERR_OK     - no errors
1091     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1092     *                        format
1093   ****************************************************************************/   ****************************************************************************/
1094    
1095  int  int
1096  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1097                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 851  Line 1102 
1102          uint32_t bits;          uint32_t bits;
1103          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1104    
1105  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1106          float psnr;          float psnr;
1107          uint8_t temp[128];          uint8_t temp[128];
1108  #endif  #endif
# Line 867  Line 1118 
1118    
1119          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1120          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1121    #ifdef BFRAMES
1122            pEnc->current->seconds = pEnc->mbParam.m_seconds;
1123            pEnc->current->ticks = pEnc->mbParam.m_ticks;
1124    #endif
1125          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1126    
1127          start_timer();          start_timer();
# Line 876  Line 1131 
1131                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1132          stop_conv_timer();          stop_conv_timer();
1133    
1134  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1135          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1136                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1137  #endif  #endif
# Line 986  Line 1241 
1241                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1242                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1243          }          }
1244  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1245          psnr =          psnr =
1246                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1247                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 996  Line 1251 
1251          DEBUG(temp);          DEBUG(temp);
1252  #endif  #endif
1253    
1254    #ifdef BFRAMES
1255            inc_frame_num(pEnc);
1256    #else
1257          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1258    #endif
1259    
1260    
1261          stop_global_timer();          stop_global_timer();
1262          write_timer();          write_timer();
1263    
1264          return XVID_ERR_OK;          return XVID_ERR_OK;
1265  }  }
 #endif  
1266    
1267    
1268  static __inline void  static __inline void
# Line 1073  Line 1332 
1332                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1333                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1334                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1335                          VECTOR pred[4];                          VECTOR pred;
1336                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1337                          int vec;                          int vec;
1338    
1339                          pMB->mode =                          pMB->mode =
# Line 1095  Line 1353 
1353                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1354                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1355    
1356                                  get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width,                                  pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,0);
                                                         0, pred, dummy);  
1357    
1358                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1359                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1360                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1361                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1362                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1363                                  }                                  }
1364                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1365                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1115  Line 1372 
1372                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1373                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1374    
1375                                          get_pmvdata(pEnc->current->mbs, x, y,                                          pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,vec);
                                                                 pEnc->mbParam.mb_width, vec, pred, dummy);  
1376    
1377                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1378                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1379                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1380                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1381                                  }                                  }
1382                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1383                          {                          {
# Line 1251  Line 1507 
1507          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1508    
1509          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1510          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  #ifdef BFRAMES
1511    #define DIVX501B481P "DivX501b481p"
1512            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1513                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1514            }
1515    #endif
1516            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1517    
1518          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1519    
# Line 1295  Line 1557 
1557    
1558    
1559  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1560    #define BFRAME_SKIP_THRESHHOLD 16
1561    
1562  static int  static int
1563  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1309  Line 1572 
1572          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1573    
1574          int iLimit;          int iLimit;
1575          uint32_t x, y;          int k;
1576            int x, y;
1577          int iSearchRange;          int iSearchRange;
1578          int bIntra;          int bIntra;
1579    
# Line 1346  Line 1610 
1610          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1611                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1612          } else {          } else {
1613    
1614    #ifdef _SMP
1615            if (pEnc->mbParam.num_threads > 1)
1616                    bIntra =
1617                            SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1618                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1619                                                     iLimit);
1620            else
1621    #endif
1622                  bIntra =                  bIntra =
1623                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1624                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1625                                                           iLimit);                                                           iLimit);
1626    
1627          }          }
1628          stop_motion_timer();          stop_motion_timer();
1629    
# Line 1362  Line 1636 
1636          if (vol_header)          if (vol_header)
1637                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1638    
1639          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1640    
1641          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1642    
# Line 1427  Line 1701 
1701                          }                          }
1702    
1703                          start_timer();                          start_timer();
1704    
1705                            /* Finished processing the MB, now check if to CODE or SKIP */
1706    
1707                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1708                                    pMB->mvs[0].y == 0) {
1709    
1710    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1711    
1712    #ifdef BFRAMES
1713                                    int iSAD=BFRAME_SKIP_THRESHHOLD;
1714                                    int bSkip=1;
1715    
1716                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1717                                    {
1718                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1719                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1720                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1721                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD)
1722                                            {       bSkip = 0;
1723                                                    break;
1724                                            }
1725                                    }
1726                                    if (!bSkip)
1727                                    {
1728                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1729                                            pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */
1730                                    }
1731                                    else
1732                                            MBSkip(bs);
1733    
1734    
1735    #else
1736                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1737    
1738    #endif
1739    
1740                            } else {
1741                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1742                            }
1743    
1744                          stop_coding_timer();                          stop_coding_timer();
1745                  }                  }
1746          }          }
# Line 1461  Line 1774 
1774    
1775          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1776    
1777    #ifdef BFRAMES
1778            /* frame drop code */
1779            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1780            if (pEnc->sStat.kblks + pEnc->sStat.mblks <=
1781                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1782            {
1783                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1784                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1785    
1786                    BitstreamReset(bs);
1787                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1788    
1789                    // copy reference frame details into the current frame
1790                    pEnc->current->quant = pEnc->reference->quant;
1791                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1792                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1793                    pEnc->current->fcode = pEnc->reference->fcode;
1794                    pEnc->current->bcode = pEnc->reference->bcode;
1795                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1796                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1797    
1798            }
1799    #endif
1800    
1801          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1802    
1803    #ifdef BFRAMES
1804            pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;
1805            pEnc->last_pframe = pEnc->mbParam.m_ticks;
1806    #endif
1807    
1808          return 0;                                       // inter          return 0;                                       // inter
1809  }  }
1810    
# Line 1483  Line 1825 
1825          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1826          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1827    
1828    #ifdef BFRAMES_DEC_DEBUG
1829            FILE *fp;
1830            static char first=0;
1831    #define BFRAME_DEBUG    if (!first && fp){ \
1832                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1833            }
1834    
1835            if (!first){
1836                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1837            }
1838    #endif
1839    
1840          // forward          // forward
1841          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1842                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1506  Line 1860 
1860          stop_inter_timer();          stop_inter_timer();
1861    
1862          start_timer();          start_timer();
1863          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1864              ((int32_t)pEnc->mbParam.fbase + (int32_t)pEnc->mbParam.m_ticks + 1 - (int32_t)pEnc->last_pframe) % pEnc->mbParam.fbase,
1865                                                    pEnc->time_pp,
1866                                                    pEnc->reference->mbs, f_ref,
1867                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1868                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,
1869                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
# Line 1520  Line 1877 
1877             } */             } */
1878    
1879          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1880          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1881    
1882          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1883    
# Line 1549  Line 1906 
1906                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1907                                  mb->mvs[0].x = 0;                                  mb->mvs[0].x = 0;
1908                                  mb->mvs[0].y = 0;                                  mb->mvs[0].y = 0;
1909    
1910                                    mb->cbp = 0;
1911    #ifdef BFRAMES_DEC_DEBUG
1912            BFRAME_DEBUG
1913    #endif
1914                                  continue;                                  continue;
1915                          }                          }
1916    
# Line 1564  Line 1926 
1926                                                                    qcoeff);                                                                    qcoeff);
1927                          //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);                          //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);
1928    
1929                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1930                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {
1931                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 mb->mode = 5;   // skipped  
1932                          }                          }
1933    
1934    /* update predictors for forward and backward vectors */
1935                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1936                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1937                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1583  Line 1945 
1945                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1946                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1947                          }                          }
 //          printf("[%i %i] M=%i CBP=%i MVX=%i MVY=%i %i,%i  %i,%i\n", x, y, pMB->mode, pMB->cbp, pMB->mvs[0].x, bmb->pmvs[0].x, bmb->pmvs[0].y, forward.x, forward.y);  
1948    
1949    //                      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);
1950    
1951    #ifdef BFRAMES_DEC_DEBUG
1952            BFRAME_DEBUG
1953    #endif
1954                          start_timer();                          start_timer();
1955                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1956                                                   &pEnc->sStat);                                                   &pEnc->sStat);
# Line 1597  Line 1963 
1963          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1964    
1965          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1966    
1967    #ifdef BFRAMES_DEC_DEBUG
1968            if (!first){
1969                    first=1;
1970                    if (fp)
1971                            fclose(fp);
1972  }  }
1973  #endif  #endif
1974    }
1975    #endif
1976    
1977    
1978    /*      in case internal output is needed somewhere... */
1979    /*      {
1980            FILE *filehandle;
1981            filehandle=fopen("last-b.pgm","wb");
1982            if (filehandle)
1983            {
1984                    fprintf(filehandle,"P5\n\n");           //
1985                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
1986                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
1987                    fclose(filehandle);
1988                    }
1989            }
1990    */

Legend:
Removed from v.198  
changed lines
  Added in v.347

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