[cvs] / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /xvidcore/src/encoder.c

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

revision 1.43, Fri Jun 14 13:21:35 2002 UTC revision 1.76, Tue Sep 3 17:25:18 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()
# Line 40  Line 43 
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 228  Line 238 
238    
239          pEnc->mbParam.m_quant_type = H263_QUANT;          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 259  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 275  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 329  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 373  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            pEnc->last_sync = 0;
429  #endif  #endif
430    
431          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
# Line 396  Line 446 
446           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
447           */           */
448  #ifdef BFRAMES  #ifdef BFRAMES
449      xvid_err_memory5:
450    
451    
452            if (pEnc->mbParam.max_bframes > 0) {
453    
454                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
455                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
456                                                      pEnc->mbParam.edged_height);
457                    }
458                    xvid_free(pEnc->queue);
459            }
460    
461    xvid_err_memory4:    xvid_err_memory4:
462    
463            if (pEnc->mbParam.max_bframes > 0) {
464    
465          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
466    
467                  if (pEnc->bframes[i] == NULL)                  if (pEnc->bframes[i] == NULL)
# Line 412  Line 477 
477          }          }
478    
479          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
480            }
481    
482  #endif  #endif
483    
484    xvid_err_memory3:    xvid_err_memory3:
485  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
486          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
487                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
488  #endif  #endif
# Line 473  Line 539 
539  int  int
540  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
541  {  {
542    #ifdef BFRAMES
543            int i;
544    #endif
545    
546          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
547    
548          /* B Frames specific */          /* B Frames specific */
549  #ifdef BFRAMES  #ifdef BFRAMES
550          int i;          if (pEnc->mbParam.max_bframes > 0) {
551    
552                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
553    
554                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
555                                              pEnc->mbParam.edged_height);
556                    }
557                    xvid_free(pEnc->queue);
558            }
559    
560    
561            if (pEnc->mbParam.max_bframes > 0) {
562    
563          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
564    
# Line 490  Line 571 
571                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
572    
573                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
574          }          }
575    
576          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
577    
578            }
579  #endif  #endif
580    
581          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
# Line 521  Line 602 
602          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
603                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
604  #endif  #endif
605  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
606          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
607                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
608  #endif  #endif
# Line 539  Line 620 
620          return XVID_ERR_OK;          return XVID_ERR_OK;
621  }  }
622    
623    
624    void inc_frame_num(Encoder * pEnc)
625    {
626            pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
627    
628    #ifdef BFRAMES
629            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
630            if (pEnc->mbParam.m_ticks < pEnc->last_sync)
631                    pEnc->mbParam.m_seconds = 1;            // more than 1 second since last I or P is not supported.
632            else
633                    pEnc->mbParam.m_seconds = 0;
634    
635            if (pEnc->current->coding_type != B_VOP)
636                    pEnc->last_sync = pEnc->mbParam.m_ticks;
637    #else
638    
639            pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
640            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
641    
642    #endif
643    
644    }
645    
646    
647    #ifdef BFRAMES
648    void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
649    {
650            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
651            {
652                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
653                    return;
654            }
655    
656            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
657                                    pEnc->bframenum_head, pEnc->bframenum_tail,
658                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
659    
660    
661            start_timer();
662            if (image_input
663                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
664                     pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
665                    return;
666            stop_conv_timer();
667    
668            pEnc->queue_size++;
669            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
670    }
671    #endif
672    
673    
674    #ifdef BFRAMES
675  /*****************************************************************************  /*****************************************************************************
676   * 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.  
677   *   *
678   * Returned values :   * Returned values :
679   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 551  Line 681 
681   *                        format   *                        format
682   ****************************************************************************/   ****************************************************************************/
683    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
684  int  int
685  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
686                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
687                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
688  {  {
# Line 565  Line 690 
690          Bitstream bs;          Bitstream bs;
691          uint32_t bits;          uint32_t bits;
692    
693  #ifdef _DEBUG          int input_valid = 1;
694    
695    #ifdef _DEBUG_PSNR
696          float psnr;          float psnr;
697          char temp[128];          char temp[128];
698  #endif  #endif
699    
700          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
701          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
702            ENC_CHECK(pFrame->image);
703    
704          start_global_timer();          start_global_timer();
705    
706          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
707    
708    ipvop_loop:
709    
710          /*          /*
711           * bframe "flush" code           * bframe "flush" code
712           */           */
# Line 591  Line 721 
721                           * frame as a pframe                           * frame as a pframe
722                           */                           */
723    
724                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
725                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
726                             dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
727                           */  
728                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
729                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
730    
# Line 604  Line 734 
734    
735                          BitstreamPad(&bs);                          BitstreamPad(&bs);
736                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
737                          pFrame->intra = 0;                          pFrame->intra = 0;
738    
739                          return XVID_ERR_OK;                          return XVID_ERR_OK;
740                  }                  }
741    
742                  /* ToDo : remove dprintf calls */  
743                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
744                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
745                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
746    
747                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
748                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
749    
   
750                  BitstreamPad(&bs);                  BitstreamPad(&bs);
751                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
                 pFrame->input_consumed = 0;  
752                  pFrame->intra = 0;                  pFrame->intra = 0;
753    
754                    if (input_valid)
755                            queue_image(pEnc, pFrame);
756    
757                  return XVID_ERR_OK;                  return XVID_ERR_OK;
758          }          }
759    
760          if (pFrame->image == NULL) {          if (pEnc->bframenum_head > 0) {
761                  pFrame->length = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
762                  pFrame->input_consumed = 1;  
763                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
764    
765                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
766                                    pEnc->bframenum_head, pEnc->bframenum_tail,
767                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
768    
769                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
770                            BitstreamPad(&bs);
771                            BitstreamPutBits(&bs, 0x7f, 8);
772    
773                            pFrame->length = BitstreamLength(&bs);
774                  pFrame->intra = 0;                  pFrame->intra = 0;
775    
776                            if (input_valid)
777                                    queue_image(pEnc, pFrame);
778    
779                  return XVID_ERR_OK;                  return XVID_ERR_OK;
780          }          }
781            }
782    
783          if (pEnc->bframenum_head > 0) {  
784                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;  bvop_loop:
785    
786            if (pEnc->bframenum_dx50bvop != -1)
787            {
788    
789                    SWAP(pEnc->current, pEnc->reference);
790                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
791    
792                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
793                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
794                    }
795    
796                    if (input_valid)
797                    {
798                            queue_image(pEnc, pFrame);
799                            input_valid = 0;
800                    }
801    
802            } else if (input_valid) {
803    
804                    SWAP(pEnc->current, pEnc->reference);
805    
806                    start_timer();
807                    if (image_input
808                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
809                            pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
810                            return XVID_ERR_FORMAT;
811                    stop_conv_timer();
812    
813                    // queue input frame, and dequue next image
814                    if (pEnc->queue_size > 0)
815                    {
816                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
817                            if (pEnc->queue_head != pEnc->queue_tail)
818                            {
819                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
820                            }
821                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
822                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
823                    }
824    
825            } else if (pEnc->queue_size > 0) {
826    
827                    SWAP(pEnc->current, pEnc->reference);
828    
829                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
830                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
831                    pEnc->queue_size--;
832    
833            } else if (BitstreamPos(&bs) == 0) {
834    
835                    DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
836                                    pEnc->bframenum_head, pEnc->bframenum_tail,
837                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
838    
839                    pFrame->intra = 0;
840    
841                    BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP
842                    BitstreamPad(&bs);
843                    pFrame->length = BitstreamLength(&bs);
844    
845                    return XVID_ERR_OK;
846    
847            } else {
848    
849                    pFrame->length = BitstreamLength(&bs);
850                    return XVID_ERR_OK;
851          }          }
852    
853          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
# Line 645  Line 857 
857           * comment style :-)           * comment style :-)
858           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
859    
         SWAP(pEnc->current, pEnc->reference);  
   
860          emms();          emms();
861    
862            // only inc frame num, adapt quant, etc. if we havent seen it before
863            if (pEnc->bframenum_dx50bvop < 0 )
864            {
865          if (pFrame->quant == 0)          if (pFrame->quant == 0)
866                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
867          else          else
868                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
869    
870          if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
871                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
872    
873          if (pEnc->current->quant > 31)          if (pEnc->current->quant > 31)
874                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
875    */
876          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
877          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
878          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
879          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
880          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
881          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
882    
883          start_timer();                  pEnc->current->seconds = pEnc->mbParam.m_seconds;
884          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();  
885    
886  #ifdef _DEBUG                  inc_frame_num(pEnc);
887    
888    #ifdef _DEBUG_PSNR
889          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
890                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
891  #endif  #endif
892    
893          emms();          emms();
894    
895                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
896                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
897                                    "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);
898                    }
899    
900          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
901           * Luminance masking           * Luminance masking
902           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
# Line 711  Line 926 
926                          }                          }
927    
928  #undef OFFSET  #undef OFFSET
   
929                  }                  }
930    
931                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
932          }          }
933    
934            }
935    
936          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
937           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
938           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
939    
940    
941          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
942                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
943                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
944                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || image_mad(&pEnc->reference->image, &pEnc->current->image,
# Line 732  Line 948 
948                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
949                   */                   */
950    
951                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
952                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
953                     dprintf("--- IFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                  */  
954    
955                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
956                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
957                    }
958    
959                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
960    
961                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
962    
963                            pEnc->bframenum_tail--;
964                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
965    
966                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
967                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
968                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
969                            }
970                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
971    
972                            pFrame->intra = 0;
973    
974                    } else {
975    
976                            FrameCodeI(pEnc, &bs, &bits);
977                  pFrame->intra = 1;                  pFrame->intra = 1;
978    
979                            pEnc->bframenum_dx50bvop = -1;
980                    }
981    
982                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
983    
984                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
985                            BitstreamPad(&bs);
986                            input_valid = 0;
987                            goto ipvop_loop;
988                    }
989    
990                  /*                  /*
991                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
992                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
# Line 751  Line 996 
996                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
997                   */                   */
998    
999                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1000                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1001                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1002                   */  
1003                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1004                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1005                    }
1006    
1007                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1008                  pFrame->intra = 0;                  pFrame->intra = 0;
1009                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1010    
1011                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1012                            BitstreamPad(&bs);
1013                            input_valid = 0;
1014                            goto ipvop_loop;
1015                    }
1016    
1017          } else {          } else {
1018                  /*                  /*
1019                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1020                   */                   */
1021    
1022                  /* ToDo : Remove dprintf calls */                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1023                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1024                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                    pEnc->bframenum_head,  
                    pEnc->bframenum_tail);  
                  */  
1025    
1026                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1027                          pEnc->current->quant =                          pEnc->current->quant =
# Line 778  Line 1030 
1030                  } else {                  } else {
1031                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1032                  }                  }
1033                    if (pEnc->current->quant < 1)
1034                            pEnc->current->quant = 1;
1035    
1036                    if (pEnc->current->quant > 31)
1037                            pEnc->current->quant = 31;
1038    
1039    
1040                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1041                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1042                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1043    
1044    
1045    
1046                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1047                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 787  Line 1051 
1051    
1052                  pFrame->intra = 0;                  pFrame->intra = 0;
1053                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
1054    
1055                  pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;                  input_valid = 0;
1056                  if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {                  goto bvop_loop;
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
1057                  }                  }
1058    
1059                  return XVID_ERR_OK;          pEnc->iFrameNum++;
         }  
1060    
1061          BitstreamPad(&bs);          BitstreamPad(&bs);
1062          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
# Line 811  Line 1071 
1071    
1072          emms();          emms();
1073    
1074  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1075          psnr =          psnr =
1076                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1077                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 826  Line 1086 
1086                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1087          }          }
1088    
         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;  
1089    
1090          stop_global_timer();          stop_global_timer();
1091          write_timer();          write_timer();
1092    
1093          return XVID_ERR_OK;          return XVID_ERR_OK;
1094  }  }
1095  #else  
1096    #endif
1097    
1098    
1099    
1100  /*****************************************************************************  /*****************************************************************************
1101   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1102     *
1103     * Returned values :
1104     *    - XVID_ERR_OK     - no errors
1105     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1106     *                        format
1107   ****************************************************************************/   ****************************************************************************/
1108    
1109  int  int
1110  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1111                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 853  Line 1116 
1116          uint32_t bits;          uint32_t bits;
1117          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1118    
1119  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1120          float psnr;          float psnr;
1121          uint8_t temp[128];          uint8_t temp[128];
1122  #endif  #endif
# Line 869  Line 1132 
1132    
1133          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1134          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1135            pEnc->current->seconds = pEnc->mbParam.m_seconds;
1136            pEnc->current->ticks = pEnc->mbParam.m_ticks;
1137          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1138    
1139          start_timer();          start_timer();
# Line 878  Line 1143 
1143                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1144          stop_conv_timer();          stop_conv_timer();
1145    
1146  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1147          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1148                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1149  #endif  #endif
# Line 988  Line 1253 
1253                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1254                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1255          }          }
1256  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1257          psnr =          psnr =
1258                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1259                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 998  Line 1263 
1263          DEBUG(temp);          DEBUG(temp);
1264  #endif  #endif
1265    
1266            inc_frame_num(pEnc);
1267          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1268    
1269          stop_global_timer();          stop_global_timer();
# Line 1005  Line 1271 
1271    
1272          return XVID_ERR_OK;          return XVID_ERR_OK;
1273  }  }
 #endif  
1274    
1275    
1276  static __inline void  static __inline void
# Line 1075  Line 1340 
1340                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1341                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1342                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1343                          VECTOR pred[4];                          VECTOR pred;
1344                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1345                          int vec;                          int vec;
1346    
1347                          pMB->mode =                          pMB->mode =
# Line 1097  Line 1361 
1361                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1362                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1363    
1364                                  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);  
1365    
1366                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1367                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1368                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1369                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1370                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1371                                  }                                  }
1372                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1373                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1117  Line 1380 
1380                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1381                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1382    
1383                                          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);  
1384    
1385                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1386                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1387                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1388                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1389                                  }                                  }
1390                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1391                          {                          {
# Line 1253  Line 1515 
1515          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1516    
1517          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1518          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  #ifdef BFRAMES
1519    #define DIVX501B481P "DivX501b481p"
1520            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1521                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1522            }
1523    #endif
1524            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1525    
1526          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1527    
# Line 1276  Line 1544 
1544                          stop_prediction_timer();                          stop_prediction_timer();
1545    
1546                          start_timer();                          start_timer();
1547                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1548                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1549                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1550                                    qcoeff[5*64+0]=0;
1551                            }
1552                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1553                          stop_coding_timer();                          stop_coding_timer();
1554                  }                  }
# Line 1297  Line 1570 
1570    
1571    
1572  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1573    #define BFRAME_SKIP_THRESHHOLD 16
1574    
1575  static int  static int
1576  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1311  Line 1585 
1585          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1586    
1587          int iLimit;          int iLimit;
1588          uint32_t x, y;          int x, y, k;
1589          int iSearchRange;          int iSearchRange;
1590          int bIntra;          int bIntra;
1591    
# Line 1348  Line 1622 
1622          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1623                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1624          } else {          } else {
1625    
1626    #ifdef _SMP
1627            if (pEnc->mbParam.num_threads > 1)
1628                    bIntra =
1629                            SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1630                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1631                                                     iLimit);
1632            else
1633    #endif
1634                  bIntra =                  bIntra =
1635                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1636                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1637                                                           iLimit);                                                           iLimit);
1638    
1639          }          }
1640          stop_motion_timer();          stop_motion_timer();
1641    
# Line 1364  Line 1648 
1648          if (vol_header)          if (vol_header)
1649                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1650    
1651          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1652    
1653          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1654    
# Line 1429  Line 1713 
1713                          }                          }
1714    
1715                          start_timer();                          start_timer();
1716    
1717                            /* Finished processing the MB, now check if to CODE or SKIP */
1718    
1719                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1720                                    pMB->mvs[0].y == 0) {
1721    
1722    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1723    
1724    #ifdef BFRAMES
1725                                    int iSAD=BFRAME_SKIP_THRESHHOLD;
1726                                    int bSkip=1;
1727    
1728                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1729                                    {
1730                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1731                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1732                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1733                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD)
1734                                            {       bSkip = 0;
1735                                                    break;
1736                                            }
1737                                    }
1738                                    if (!bSkip)
1739                                    {
1740                                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1741                                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1742                                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1743                                                    qcoeff[5*64+0]=0;
1744                                            }
1745                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1746                                            pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */
1747                                    }
1748                                    else
1749                                            MBSkip(bs);
1750    
1751    #else
1752                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1753    
1754    #endif
1755    
1756                            } else {
1757                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1758                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1759                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1760                                            qcoeff[5*64+0]=0;
1761                                    }
1762                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1763                            }
1764    
1765                          stop_coding_timer();                          stop_coding_timer();
1766                  }                  }
1767          }          }
# Line 1463  Line 1795 
1795    
1796          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1797    
1798    #ifdef BFRAMES
1799            /* frame drop code */
1800            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1801            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1802                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1803            {
1804                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1805                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1806    
1807                    BitstreamReset(bs);
1808                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1809    
1810                    // copy reference frame details into the current frame
1811                    pEnc->current->quant = pEnc->reference->quant;
1812                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1813                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1814                    pEnc->current->fcode = pEnc->reference->fcode;
1815                    pEnc->current->bcode = pEnc->reference->bcode;
1816                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1817                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1818    
1819            }
1820    #endif
1821    
1822          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1823    
1824    #ifdef BFRAMES
1825            pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->current->ticks) %
1826                            (int32_t)pEnc->mbParam.fbase;
1827            pEnc->last_pframe = pEnc->current->ticks;
1828    #endif
1829    
1830          return 0;                                       // inter          return 0;                                       // inter
1831  }  }
1832    
# Line 1485  Line 1847 
1847          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1848          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1849    
1850    #ifdef BFRAMES_DEC_DEBUG
1851            FILE *fp;
1852            static char first=0;
1853    #define BFRAME_DEBUG    if (!first && fp){ \
1854                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1855            }
1856    
1857            if (!first){
1858                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1859            }
1860    #endif
1861    
1862          // forward          // forward
1863          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1864                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1508  Line 1882 
1882          stop_inter_timer();          stop_inter_timer();
1883    
1884          start_timer();          start_timer();
1885          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1886                    ((int32_t)pEnc->mbParam.fbase + pEnc->last_pframe - frame->ticks) % pEnc->mbParam.fbase,
1887                                                    pEnc->time_pp,
1888                                                    pEnc->reference->mbs, f_ref,
1889                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1890                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,
1891                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
# Line 1522  Line 1899 
1899             } */             } */
1900    
1901          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1902          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1903    
1904          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1905    
# Line 1551  Line 1928 
1928                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1929                                  mb->mvs[0].x = 0;                                  mb->mvs[0].x = 0;
1930                                  mb->mvs[0].y = 0;                                  mb->mvs[0].y = 0;
1931    
1932                                    mb->cbp = 0;
1933    #ifdef BFRAMES_DEC_DEBUG
1934            BFRAME_DEBUG
1935    #endif
1936                                  continue;                                  continue;
1937                          }                          }
1938    
# Line 1562  Line 1944 
1944    
1945                          mb->quant = frame->quant;                          mb->quant = frame->quant;
1946                          mb->cbp =                          mb->cbp =
1947                                  MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes,                                  MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
                                                                   qcoeff);  
1948                          //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);
1949    
1950                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1951                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {
1952                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 mb->mode = 5;   // skipped  
1953                          }                          }
1954    
1955    /* update predictors for forward and backward vectors */
1956                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1957                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1958                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1585  Line 1966 
1966                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1967                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1968                          }                          }
 //          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);  
1969    
1970    //                      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);
1971    
1972    #ifdef BFRAMES_DEC_DEBUG
1973            BFRAME_DEBUG
1974    #endif
1975                          start_timer();                          start_timer();
1976                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1977                                                   &pEnc->sStat);                                                   &pEnc->sStat);
# Line 1599  Line 1984 
1984          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1985    
1986          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1987    
1988    #ifdef BFRAMES_DEC_DEBUG
1989            if (!first){
1990                    first=1;
1991                    if (fp)
1992                            fclose(fp);
1993  }  }
1994  #endif  #endif
1995    }
1996    #endif
1997    
1998    
1999    /*      in case internal output is needed somewhere... */
2000    /*      {
2001            FILE *filehandle;
2002            filehandle=fopen("last-b.pgm","wb");
2003            if (filehandle)
2004            {
2005                    fprintf(filehandle,"P5\n\n");           //
2006                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2007                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2008                    fclose(filehandle);
2009                    }
2010            }
2011    */

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.76

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