[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 198, Thu Jun 13 11:42:15 2002 UTC revision 359, Sun Aug 4 22:34:49 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.71 2002-08-04 22:34:49 edgomez 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 = 0;
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->mbParam.m_ticks += pEnc->mbParam.fincr;
627    
628            pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
629            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
630    }
631    #endif
632    
633    
634    #ifdef BFRAMES
635    void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
636    {
637            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
638            {
639                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
640                    return;
641            }
642    
643            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
644                                    pEnc->bframenum_head, pEnc->bframenum_tail,
645                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
646    
647    
648            start_timer();
649            if (image_input
650                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
651                     pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
652                    return;
653            stop_conv_timer();
654    
655            pEnc->queue_size++;
656            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
657    }
658    #endif
659    
660    
661    #ifdef BFRAMES
662  /*****************************************************************************  /*****************************************************************************
663   * 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.  
664   *   *
665   * Returned values :   * Returned values :
666   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 549  Line 668 
668   *                        format   *                        format
669   ****************************************************************************/   ****************************************************************************/
670    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
671  int  int
672  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
673                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
674                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
675  {  {
# Line 563  Line 677 
677          Bitstream bs;          Bitstream bs;
678          uint32_t bits;          uint32_t bits;
679    
680  #ifdef _DEBUG          int input_valid = 1;
681    
682    #ifdef _DEBUG_PSNR
683          float psnr;          float psnr;
684          char temp[128];          char temp[128];
685  #endif  #endif
686    
687          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
688          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
689            ENC_CHECK(pFrame->image);
690    
691          start_global_timer();          start_global_timer();
692    
693          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
694    
695    ipvop_loop:
696    
697          /*          /*
698           * bframe "flush" code           * bframe "flush" code
699           */           */
# Line 589  Line 708 
708                           * frame as a pframe                           * frame as a pframe
709                           */                           */
710    
711                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
712                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
713                             dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
714                           */  
715                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
716                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
717    
# Line 602  Line 721 
721    
722                          BitstreamPad(&bs);                          BitstreamPad(&bs);
723                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
724                          pFrame->intra = 0;                          pFrame->intra = 0;
725    
726                          return XVID_ERR_OK;                          return XVID_ERR_OK;
727                  }                  }
728    
729                  /* ToDo : remove dprintf calls */  
730                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
731                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
732                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
733    
734                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
735                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
736    
   
737                  BitstreamPad(&bs);                  BitstreamPad(&bs);
738                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
                 pFrame->input_consumed = 0;  
739                  pFrame->intra = 0;                  pFrame->intra = 0;
740    
741                    if (input_valid)
742                            queue_image(pEnc, pFrame);
743    
744                  return XVID_ERR_OK;                  return XVID_ERR_OK;
745          }          }
746    
747          if (pFrame->image == NULL) {          if (pEnc->bframenum_head > 0) {
748                  pFrame->length = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
749                  pFrame->input_consumed = 1;  
750                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
751    
752                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
753                                    pEnc->bframenum_head, pEnc->bframenum_tail,
754                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
755    
756                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
757                            BitstreamPad(&bs);
758                            BitstreamPutBits(&bs, 0x7f, 8);
759    
760                            pFrame->length = BitstreamLength(&bs);
761                  pFrame->intra = 0;                  pFrame->intra = 0;
762    
763                            if (input_valid)
764                                    queue_image(pEnc, pFrame);
765    
766                  return XVID_ERR_OK;                  return XVID_ERR_OK;
767          }          }
768            }
769    
770          if (pEnc->bframenum_head > 0) {  
771                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;  bvop_loop:
772    
773            if (pEnc->bframenum_dx50bvop != -1)
774            {
775    
776                    SWAP(pEnc->current, pEnc->reference);
777                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
778    
779                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
780                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
781                    }
782    
783                    if (input_valid)
784                    {
785                            queue_image(pEnc, pFrame);
786                            input_valid = 0;
787                    }
788    
789            } else if (input_valid) {
790    
791                    SWAP(pEnc->current, pEnc->reference);
792    
793                    start_timer();
794                    if (image_input
795                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
796                            pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
797                            return XVID_ERR_FORMAT;
798                    stop_conv_timer();
799    
800                    // queue input frame, and dequue next image
801                    if (pEnc->queue_size > 0)
802                    {
803                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
804                            if (pEnc->queue_head != pEnc->queue_tail)
805                            {
806                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
807                            }
808                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
809                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
810                    }
811    
812            } else if (pEnc->queue_size > 0) {
813    
814                    SWAP(pEnc->current, pEnc->reference);
815    
816                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
817                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
818                    pEnc->queue_size--;
819    
820            } else if (BitstreamPos(&bs) == 0) {
821    
822                    DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
823                                    pEnc->bframenum_head, pEnc->bframenum_tail,
824                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
825    
826                    pFrame->intra = 0;
827    
828                    BitstreamPutBits(&bs, 0x7f, 8);
829                    BitstreamPad(&bs);
830                    pFrame->length = BitstreamLength(&bs);
831    
832                    return XVID_ERR_OK;
833    
834            } else {
835    
836                    pFrame->length = BitstreamLength(&bs);
837                    return XVID_ERR_OK;
838          }          }
839    
840          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
# Line 643  Line 844 
844           * comment style :-)           * comment style :-)
845           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
846    
         SWAP(pEnc->current, pEnc->reference);  
   
847          emms();          emms();
848    
849            // only inc frame num, adapt quant, etc. if we havent seen it before
850            if (pEnc->bframenum_dx50bvop < 0 )
851            {
852          if (pFrame->quant == 0)          if (pFrame->quant == 0)
853                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
854          else          else
855                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
856    
857          if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
858                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
859    
860          if (pEnc->current->quant > 31)          if (pEnc->current->quant > 31)
861                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
862    */
863          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
864          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
865          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
866          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
867          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
868          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
869    
870          start_timer();                  pEnc->current->seconds = pEnc->mbParam.m_seconds;
871          if (image_input                  pEnc->current->ticks = pEnc->mbParam.m_ticks;
                 (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,  
                  pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))  
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
872    
873  #ifdef _DEBUG                  inc_frame_num(pEnc);
874    
875    #ifdef _DEBUG_PSNR
876          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
877                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
878  #endif  #endif
879    
880          emms();          emms();
881    
882                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
883                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
884                                    "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);
885                    }
886    
887          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
888           * Luminance masking           * Luminance masking
889           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
# Line 709  Line 913 
913                          }                          }
914    
915  #undef OFFSET  #undef OFFSET
   
916                  }                  }
917    
918                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
919          }          }
920    
921            }
922    
923          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
924           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
925           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
926    
927    
928          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
929                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
930                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
931                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || image_mad(&pEnc->reference->image, &pEnc->current->image,
# Line 730  Line 935 
935                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
936                   */                   */
937    
938                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
939                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
940                     dprintf("--- IFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                  */  
941    
942                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
943                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
944                    }
945    
946                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
947    
948                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
949    
950                            pEnc->bframenum_tail--;
951                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
952    
953                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
954                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
955                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
956                            }
957                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
958    
959                            pFrame->intra = 0;
960    
961                    } else {
962    
963                            FrameCodeI(pEnc, &bs, &bits);
964                  pFrame->intra = 1;                  pFrame->intra = 1;
965    
966                            pEnc->bframenum_dx50bvop = -1;
967                    }
968    
969                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
970    
971                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
972                            BitstreamPad(&bs);
973                            input_valid = 0;
974                            goto ipvop_loop;
975                    }
976    
977                  /*                  /*
978                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
979                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
# Line 749  Line 983 
983                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
984                   */                   */
985    
986                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
987                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
988                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
989                   */  
990                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
991                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
992                    }
993    
994                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
995                  pFrame->intra = 0;                  pFrame->intra = 0;
996                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
997    
998                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
999                            BitstreamPad(&bs);
1000                            input_valid = 0;
1001                            goto ipvop_loop;
1002                    }
1003    
1004          } else {          } else {
1005                  /*                  /*
1006                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1007                   */                   */
1008    
1009                  /* ToDo : Remove dprintf calls */                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1010                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1011                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                    pEnc->bframenum_head,  
                    pEnc->bframenum_tail);  
                  */  
1012    
1013                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1014                          pEnc->current->quant =                          pEnc->current->quant =
# Line 776  Line 1017 
1017                  } else {                  } else {
1018                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1019                  }                  }
1020                    if (pEnc->current->quant < 1)
1021                            pEnc->current->quant = 1;
1022    
1023                    if (pEnc->current->quant > 31)
1024                            pEnc->current->quant = 31;
1025    
1026    
1027                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1028                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1029                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1030    
1031    
1032    
1033                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1034                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 785  Line 1038 
1038    
1039                  pFrame->intra = 0;                  pFrame->intra = 0;
1040                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
1041    
1042                  pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;                  input_valid = 0;
1043                  if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {                  goto bvop_loop;
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
1044                  }                  }
1045    
1046                  return XVID_ERR_OK;          pEnc->iFrameNum++;
         }  
1047    
1048          BitstreamPad(&bs);          BitstreamPad(&bs);
1049          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
# Line 809  Line 1058 
1058    
1059          emms();          emms();
1060    
1061  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1062          psnr =          psnr =
1063                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1064                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 824  Line 1073 
1073                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1074          }          }
1075    
         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;  
1076    
1077          stop_global_timer();          stop_global_timer();
1078          write_timer();          write_timer();
1079    
1080          return XVID_ERR_OK;          return XVID_ERR_OK;
1081  }  }
1082  #else  
1083    #endif
1084    
1085    
1086    
1087  /*****************************************************************************  /*****************************************************************************
1088   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1089     *
1090     * Returned values :
1091     *    - XVID_ERR_OK     - no errors
1092     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1093     *                        format
1094   ****************************************************************************/   ****************************************************************************/
1095    
1096  int  int
1097  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1098                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 851  Line 1103 
1103          uint32_t bits;          uint32_t bits;
1104          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1105    
1106  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1107          float psnr;          float psnr;
1108          uint8_t temp[128];          uint8_t temp[128];
1109  #endif  #endif
# Line 867  Line 1119 
1119    
1120          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1121          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1122    #ifdef BFRAMES
1123            pEnc->current->seconds = pEnc->mbParam.m_seconds;
1124            pEnc->current->ticks = pEnc->mbParam.m_ticks;
1125    #endif
1126          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1127    
1128          start_timer();          start_timer();
# Line 876  Line 1132 
1132                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1133          stop_conv_timer();          stop_conv_timer();
1134    
1135  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1136          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1137                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1138  #endif  #endif
# Line 986  Line 1242 
1242                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1243                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1244          }          }
1245  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1246          psnr =          psnr =
1247                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1248                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 996  Line 1252 
1252          DEBUG(temp);          DEBUG(temp);
1253  #endif  #endif
1254    
1255    #ifdef BFRAMES
1256            inc_frame_num(pEnc);
1257    #endif
1258          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1259    
1260          stop_global_timer();          stop_global_timer();
# Line 1003  Line 1262 
1262    
1263          return XVID_ERR_OK;          return XVID_ERR_OK;
1264  }  }
 #endif  
1265    
1266    
1267  static __inline void  static __inline void
# Line 1073  Line 1331 
1331                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1332                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1333                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1334                          VECTOR pred[4];                          VECTOR pred;
1335                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1336                          int vec;                          int vec;
1337    
1338                          pMB->mode =                          pMB->mode =
# Line 1095  Line 1352 
1352                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1353                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1354    
1355                                  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);  
1356    
1357                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1358                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1359                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1360                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1361                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1362                                  }                                  }
1363                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1364                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1115  Line 1371 
1371                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1372                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1373    
1374                                          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);  
1375    
1376                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1377                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1378                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1379                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1380                                  }                                  }
1381                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1382                          {                          {
# Line 1251  Line 1506 
1506          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1507    
1508          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1509          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  #ifdef BFRAMES
1510    #define DIVX501B481P "DivX501b481p"
1511            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1512                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1513            }
1514    #endif
1515            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1516    
1517          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1518    
# Line 1274  Line 1535 
1535                          stop_prediction_timer();                          stop_prediction_timer();
1536    
1537                          start_timer();                          start_timer();
1538                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1539                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1540                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1541                                    qcoeff[5*64+0]=0;
1542                            }
1543                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1544                          stop_coding_timer();                          stop_coding_timer();
1545                  }                  }
# Line 1295  Line 1561 
1561    
1562    
1563  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1564    #define BFRAME_SKIP_THRESHHOLD 16
1565    
1566  static int  static int
1567  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1309  Line 1576 
1576          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1577    
1578          int iLimit;          int iLimit;
1579          uint32_t x, y;          int x, y, k;
1580          int iSearchRange;          int iSearchRange;
1581          int bIntra;          int bIntra;
1582    
# Line 1346  Line 1613 
1613          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1614                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1615          } else {          } else {
1616    
1617    #ifdef _SMP
1618            if (pEnc->mbParam.num_threads > 1)
1619                    bIntra =
1620                            SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1621                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1622                                                     iLimit);
1623            else
1624    #endif
1625                  bIntra =                  bIntra =
1626                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1627                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1628                                                           iLimit);                                                           iLimit);
1629    
1630          }          }
1631          stop_motion_timer();          stop_motion_timer();
1632    
# Line 1362  Line 1639 
1639          if (vol_header)          if (vol_header)
1640                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1641    
1642          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1643    
1644          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1645    
# Line 1427  Line 1704 
1704                          }                          }
1705    
1706                          start_timer();                          start_timer();
1707    
1708                            /* Finished processing the MB, now check if to CODE or SKIP */
1709    
1710                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1711                                    pMB->mvs[0].y == 0) {
1712    
1713    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1714    
1715    #ifdef BFRAMES
1716                                    int iSAD=BFRAME_SKIP_THRESHHOLD;
1717                                    int bSkip=1;
1718    
1719                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1720                                    {
1721                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1722                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1723                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1724                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD)
1725                                            {       bSkip = 0;
1726                                                    break;
1727                                            }
1728                                    }
1729                                    if (!bSkip)
1730                                    {
1731                                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1732                                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1733                                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1734                                                    qcoeff[5*64+0]=0;
1735                                            }
1736                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1737                                            pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */
1738                                    }
1739                                    else
1740                                            MBSkip(bs);
1741    
1742    #else
1743                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1744    
1745    #endif
1746    
1747                            } else {
1748                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1749                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1750                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1751                                            qcoeff[5*64+0]=0;
1752                                    }
1753                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1754                            }
1755    
1756                          stop_coding_timer();                          stop_coding_timer();
1757                  }                  }
1758          }          }
# Line 1461  Line 1786 
1786    
1787          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1788    
1789    #ifdef BFRAMES
1790            /* frame drop code */
1791            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1792            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1793                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1794            {
1795                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1796                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1797    
1798                    BitstreamReset(bs);
1799                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1800    
1801                    // copy reference frame details into the current frame
1802                    pEnc->current->quant = pEnc->reference->quant;
1803                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1804                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1805                    pEnc->current->fcode = pEnc->reference->fcode;
1806                    pEnc->current->bcode = pEnc->reference->bcode;
1807                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1808                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1809    
1810            }
1811    #endif
1812    
1813          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1814    
1815    #ifdef BFRAMES
1816            pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->current->ticks) %
1817                            (int32_t)pEnc->mbParam.fbase;
1818            pEnc->last_pframe = pEnc->current->ticks;
1819    #endif
1820    
1821          return 0;                                       // inter          return 0;                                       // inter
1822  }  }
1823    
# Line 1483  Line 1838 
1838          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1839          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1840    
1841    #ifdef BFRAMES_DEC_DEBUG
1842            FILE *fp;
1843            static char first=0;
1844    #define BFRAME_DEBUG    if (!first && fp){ \
1845                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1846            }
1847    
1848            if (!first){
1849                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1850            }
1851    #endif
1852    
1853          // forward          // forward
1854          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1855                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1506  Line 1873 
1873          stop_inter_timer();          stop_inter_timer();
1874    
1875          start_timer();          start_timer();
1876          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1877                    ((int32_t)pEnc->mbParam.fbase + pEnc->last_pframe - frame->ticks) % pEnc->mbParam.fbase,
1878                                                    pEnc->time_pp,
1879                                                    pEnc->reference->mbs, f_ref,
1880                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1881                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,
1882                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
# Line 1520  Line 1890 
1890             } */             } */
1891    
1892          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1893          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1894    
1895          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1896    
# Line 1549  Line 1919 
1919                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1920                                  mb->mvs[0].x = 0;                                  mb->mvs[0].x = 0;
1921                                  mb->mvs[0].y = 0;                                  mb->mvs[0].y = 0;
1922    
1923                                    mb->cbp = 0;
1924    #ifdef BFRAMES_DEC_DEBUG
1925            BFRAME_DEBUG
1926    #endif
1927                                  continue;                                  continue;
1928                          }                          }
1929    
# Line 1564  Line 1939 
1939                                                                    qcoeff);                                                                    qcoeff);
1940                          //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);
1941    
1942                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1943                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {
1944                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 mb->mode = 5;   // skipped  
1945                          }                          }
1946    
1947    /* update predictors for forward and backward vectors */
1948                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1949                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1950                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1583  Line 1958 
1958                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1959                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1960                          }                          }
 //          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);  
1961    
1962    //                      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);
1963    
1964    #ifdef BFRAMES_DEC_DEBUG
1965            BFRAME_DEBUG
1966    #endif
1967                          start_timer();                          start_timer();
1968                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1969                                                   &pEnc->sStat);                                                   &pEnc->sStat);
# Line 1597  Line 1976 
1976          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1977    
1978          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1979    
1980    #ifdef BFRAMES_DEC_DEBUG
1981            if (!first){
1982                    first=1;
1983                    if (fp)
1984                            fclose(fp);
1985            }
1986    #endif
1987  }  }
1988  #endif  #endif
1989    
1990    
1991    /*      in case internal output is needed somewhere... */
1992    /*      {
1993            FILE *filehandle;
1994            filehandle=fopen("last-b.pgm","wb");
1995            if (filehandle)
1996            {
1997                    fprintf(filehandle,"P5\n\n");           //
1998                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
1999                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2000                    fclose(filehandle);
2001                    }
2002            }
2003    */

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

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