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

Diff of /trunk/xvidcore/src/encoder.c

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

revision 208, Fri Jun 14 13:21:35 2002 UTC revision 369, Fri Aug 9 20:05:28 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.43 2002-06-14 13:21:35 Isibaar Exp $   *  $Id: encoder.c,v 1.74 2002-08-09 20:05:28 chl Exp $
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
46    
47  #include <stdlib.h>  #include <stdlib.h>
48  #include <stdio.h>  #include <stdio.h>
49  #include <math.h>  #include <math.h>
# Line 50  Line 54 
54  #include "global.h"  #include "global.h"
55  #include "utils/timer.h"  #include "utils/timer.h"
56  #include "image/image.h"  #include "image/image.h"
57    #ifdef BFRAMES
58    #include "image/font.h"
59    #include "motion/sad.h"
60    #endif
61  #include "motion/motion.h"  #include "motion/motion.h"
62  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
63  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 62  Line 70 
70  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
71  #include "utils/mem_align.h"  #include "utils/mem_align.h"
72    
73    #ifdef _SMP
74    #include "motion/smp_motion_est.h"
75    #endif
76  /*****************************************************************************  /*****************************************************************************
77   * Local macros   * Local macros
78   ****************************************************************************/   ****************************************************************************/
# Line 132  Line 143 
143  encoder_create(XVID_ENC_PARAM * pParam)  encoder_create(XVID_ENC_PARAM * pParam)
144  {  {
145          Encoder *pEnc;          Encoder *pEnc;
146          uint32_t i;          int i;
147    
148          pParam->handle = NULL;          pParam->handle = NULL;
149    
# Line 200  Line 211 
211    
212          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
213    
214          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
215                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
216    
   
217          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
218          if (pEnc == NULL)          if (pEnc == NULL)
219                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
# Line 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    #ifdef BFRAMES
625    void inc_frame_num(Encoder * pEnc)
626    {
627            pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
628    
629            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
630    
631    /*      fprintf(stderr, "ENC %c %i:%i %i\n",
632                    pEnc->current->coding_type == I_VOP ? 'I' : pEnc->current->coding_type == P_VOP ? 'P' : 'B',
633                    pEnc->mbParam.m_seconds, pEnc->mbParam.m_ticks,pEnc->last_sync);
634    */
635    
636            if (pEnc->mbParam.m_ticks < pEnc->last_sync)
637                    pEnc->mbParam.m_seconds = 1;            // more than 1 second since last I or P is not supported.
638            else
639                    pEnc->mbParam.m_seconds = 0;
640    
641            if (pEnc->current->coding_type != B_VOP)
642                    pEnc->last_sync = pEnc->mbParam.m_ticks;
643    
644    }
645    #endif
646    
647    
648    #ifdef BFRAMES
649    void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
650    {
651            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
652            {
653                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
654                    return;
655            }
656    
657            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
658                                    pEnc->bframenum_head, pEnc->bframenum_tail,
659                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
660    
661    
662            start_timer();
663            if (image_input
664                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
665                     pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
666                    return;
667            stop_conv_timer();
668    
669            pEnc->queue_size++;
670            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
671    }
672    #endif
673    
674    
675    #ifdef BFRAMES
676  /*****************************************************************************  /*****************************************************************************
677   * 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.  
678   *   *
679   * Returned values :   * Returned values :
680   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 551  Line 682 
682   *                        format   *                        format
683   ****************************************************************************/   ****************************************************************************/
684    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
685  int  int
686  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
687                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
688                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
689  {  {
# Line 565  Line 691 
691          Bitstream bs;          Bitstream bs;
692          uint32_t bits;          uint32_t bits;
693    
694  #ifdef _DEBUG          int input_valid = 1;
695    
696    #ifdef _DEBUG_PSNR
697          float psnr;          float psnr;
698          char temp[128];          char temp[128];
699  #endif  #endif
700    
701          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
702          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
703            ENC_CHECK(pFrame->image);
704    
705          start_global_timer();          start_global_timer();
706    
707          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
708    
709    ipvop_loop:
710    
711          /*          /*
712           * bframe "flush" code           * bframe "flush" code
713           */           */
# Line 591  Line 722 
722                           * frame as a pframe                           * frame as a pframe
723                           */                           */
724    
725                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
726                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
727                             dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
728                           */  
729                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
730                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
731    
# Line 604  Line 735 
735    
736                          BitstreamPad(&bs);                          BitstreamPad(&bs);
737                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
738                          pFrame->intra = 0;                          pFrame->intra = 0;
739    
740                          return XVID_ERR_OK;                          return XVID_ERR_OK;
741                  }                  }
742    
743                  /* ToDo : remove dprintf calls */  
744                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
745                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
746                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
747    
748                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
749                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
750    
   
751                  BitstreamPad(&bs);                  BitstreamPad(&bs);
752                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
                 pFrame->input_consumed = 0;  
753                  pFrame->intra = 0;                  pFrame->intra = 0;
754    
755                    if (input_valid)
756                            queue_image(pEnc, pFrame);
757    
758                  return XVID_ERR_OK;                  return XVID_ERR_OK;
759          }          }
760    
761          if (pFrame->image == NULL) {          if (pEnc->bframenum_head > 0) {
762                  pFrame->length = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
763                  pFrame->input_consumed = 1;  
764                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
765    
766                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
767                                    pEnc->bframenum_head, pEnc->bframenum_tail,
768                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
769    
770                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
771                            BitstreamPad(&bs);
772                            BitstreamPutBits(&bs, 0x7f, 8);
773    
774                            pFrame->length = BitstreamLength(&bs);
775                  pFrame->intra = 0;                  pFrame->intra = 0;
776    
777                            if (input_valid)
778                                    queue_image(pEnc, pFrame);
779    
780                  return XVID_ERR_OK;                  return XVID_ERR_OK;
781          }          }
782            }
783    
784          if (pEnc->bframenum_head > 0) {  
785                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;  bvop_loop:
786    
787            if (pEnc->bframenum_dx50bvop != -1)
788            {
789    
790                    SWAP(pEnc->current, pEnc->reference);
791                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
792    
793                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
794                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
795                    }
796    
797                    if (input_valid)
798                    {
799                            queue_image(pEnc, pFrame);
800                            input_valid = 0;
801                    }
802    
803            } else if (input_valid) {
804    
805                    SWAP(pEnc->current, pEnc->reference);
806    
807                    start_timer();
808                    if (image_input
809                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
810                            pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
811                            return XVID_ERR_FORMAT;
812                    stop_conv_timer();
813    
814                    // queue input frame, and dequue next image
815                    if (pEnc->queue_size > 0)
816                    {
817                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
818                            if (pEnc->queue_head != pEnc->queue_tail)
819                            {
820                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
821                            }
822                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
823                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
824                    }
825    
826            } else if (pEnc->queue_size > 0) {
827    
828                    SWAP(pEnc->current, pEnc->reference);
829    
830                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
831                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
832                    pEnc->queue_size--;
833    
834            } else if (BitstreamPos(&bs) == 0) {
835    
836                    DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
837                                    pEnc->bframenum_head, pEnc->bframenum_tail,
838                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
839    
840                    pFrame->intra = 0;
841    
842                    BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP
843                    BitstreamPad(&bs);
844                    pFrame->length = BitstreamLength(&bs);
845    
846                    return XVID_ERR_OK;
847    
848            } else {
849    
850                    pFrame->length = BitstreamLength(&bs);
851                    return XVID_ERR_OK;
852          }          }
853    
854          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
# Line 645  Line 858 
858           * comment style :-)           * comment style :-)
859           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
860    
         SWAP(pEnc->current, pEnc->reference);  
   
861          emms();          emms();
862    
863            // only inc frame num, adapt quant, etc. if we havent seen it before
864            if (pEnc->bframenum_dx50bvop < 0 )
865            {
866          if (pFrame->quant == 0)          if (pFrame->quant == 0)
867                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
868          else          else
869                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
870    
871          if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
872                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
873    
874          if (pEnc->current->quant > 31)          if (pEnc->current->quant > 31)
875                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
876    */
877          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
878          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
879          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
880          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
881          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
882          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
883    
884          start_timer();                  pEnc->current->seconds = pEnc->mbParam.m_seconds;
885          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();  
886    
887  #ifdef _DEBUG                  inc_frame_num(pEnc);
888    
889    #ifdef _DEBUG_PSNR
890          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
891                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
892  #endif  #endif
893    
894          emms();          emms();
895    
896                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
897                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
898                                    "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);
899                    }
900    
901          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
902           * Luminance masking           * Luminance masking
903           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
# Line 711  Line 927 
927                          }                          }
928    
929  #undef OFFSET  #undef OFFSET
   
930                  }                  }
931    
932                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
933          }          }
934    
935            }
936    
937          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
938           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
939           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
940    
941    
942          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
943                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
944                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
945                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || image_mad(&pEnc->reference->image, &pEnc->current->image,
# Line 732  Line 949 
949                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
950                   */                   */
951    
952                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
953                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
954                     dprintf("--- IFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                  */  
955    
956                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
957                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
958                    }
959    
960                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
961    
962                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
963    
964                            pEnc->bframenum_tail--;
965                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
966    
967                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
968                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
969                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
970                            }
971                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
972    
973                            pFrame->intra = 0;
974    
975                    } else {
976    
977                            FrameCodeI(pEnc, &bs, &bits);
978                  pFrame->intra = 1;                  pFrame->intra = 1;
979    
980                            pEnc->bframenum_dx50bvop = -1;
981                    }
982    
983                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
984    
985                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
986                            BitstreamPad(&bs);
987                            input_valid = 0;
988                            goto ipvop_loop;
989                    }
990    
991                  /*                  /*
992                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
993                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
# Line 751  Line 997 
997                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
998                   */                   */
999    
1000                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1001                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1002                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1003                   */  
1004                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1005                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1006                    }
1007    
1008                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1009                  pFrame->intra = 0;                  pFrame->intra = 0;
1010                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1011    
1012                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1013                            BitstreamPad(&bs);
1014                            input_valid = 0;
1015                            goto ipvop_loop;
1016                    }
1017    
1018          } else {          } else {
1019                  /*                  /*
1020                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1021                   */                   */
1022    
1023                  /* ToDo : Remove dprintf calls */                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1024                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1025                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                    pEnc->bframenum_head,  
                    pEnc->bframenum_tail);  
                  */  
1026    
1027                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1028                          pEnc->current->quant =                          pEnc->current->quant =
# Line 778  Line 1031 
1031                  } else {                  } else {
1032                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1033                  }                  }
1034                    if (pEnc->current->quant < 1)
1035                            pEnc->current->quant = 1;
1036    
1037                    if (pEnc->current->quant > 31)
1038                            pEnc->current->quant = 31;
1039    
1040    
1041                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1042                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1043                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1044    
1045    
1046    
1047                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1048                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 787  Line 1052 
1052    
1053                  pFrame->intra = 0;                  pFrame->intra = 0;
1054                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
1055    
1056                  pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;                  input_valid = 0;
1057                  if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {                  goto bvop_loop;
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
1058                  }                  }
1059    
1060                  return XVID_ERR_OK;          pEnc->iFrameNum++;
         }  
1061    
1062          BitstreamPad(&bs);          BitstreamPad(&bs);
1063          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
# Line 811  Line 1072 
1072    
1073          emms();          emms();
1074    
1075  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1076          psnr =          psnr =
1077                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1078                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 826  Line 1087 
1087                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1088          }          }
1089    
         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;  
1090    
1091          stop_global_timer();          stop_global_timer();
1092          write_timer();          write_timer();
1093    
1094          return XVID_ERR_OK;          return XVID_ERR_OK;
1095  }  }
1096  #else  
1097    #endif
1098    
1099    
1100    
1101  /*****************************************************************************  /*****************************************************************************
1102   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1103     *
1104     * Returned values :
1105     *    - XVID_ERR_OK     - no errors
1106     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1107     *                        format
1108   ****************************************************************************/   ****************************************************************************/
1109    
1110  int  int
1111  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1112                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 853  Line 1117 
1117          uint32_t bits;          uint32_t bits;
1118          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1119    
1120  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1121          float psnr;          float psnr;
1122          uint8_t temp[128];          uint8_t temp[128];
1123  #endif  #endif
# Line 869  Line 1133 
1133    
1134          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1135          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1136    #ifdef BFRAMES
1137            pEnc->current->seconds = pEnc->mbParam.m_seconds;
1138            pEnc->current->ticks = pEnc->mbParam.m_ticks;
1139    #endif
1140          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1141    
1142          start_timer();          start_timer();
# Line 878  Line 1146 
1146                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1147          stop_conv_timer();          stop_conv_timer();
1148    
1149  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1150          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1151                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1152  #endif  #endif
# Line 988  Line 1256 
1256                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1257                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1258          }          }
1259  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1260          psnr =          psnr =
1261                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1262                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 998  Line 1266 
1266          DEBUG(temp);          DEBUG(temp);
1267  #endif  #endif
1268    
1269    #ifdef BFRAMES
1270            inc_frame_num(pEnc);
1271    #endif
1272          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1273    
1274          stop_global_timer();          stop_global_timer();
# Line 1005  Line 1276 
1276    
1277          return XVID_ERR_OK;          return XVID_ERR_OK;
1278  }  }
 #endif  
1279    
1280    
1281  static __inline void  static __inline void
# Line 1075  Line 1345 
1345                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1346                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1347                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1348                          VECTOR pred[4];                          VECTOR pred;
1349                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1350                          int vec;                          int vec;
1351    
1352                          pMB->mode =                          pMB->mode =
# Line 1097  Line 1366 
1366                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1367                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1368    
1369                                  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);  
1370    
1371                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1372                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1373                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1374                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1375                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1376                                  }                                  }
1377                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1378                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1117  Line 1385 
1385                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1386                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1387    
1388                                          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);  
1389    
1390                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1391                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1392                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1393                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1394                                  }                                  }
1395                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1396                          {                          {
# Line 1253  Line 1520 
1520          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1521    
1522          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1523          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  #ifdef BFRAMES
1524    #define DIVX501B481P "DivX501b481p"
1525            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1526                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1527            }
1528    #endif
1529            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1530    
1531          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1532    
# Line 1276  Line 1549 
1549                          stop_prediction_timer();                          stop_prediction_timer();
1550    
1551                          start_timer();                          start_timer();
1552                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1553                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1554                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1555                                    qcoeff[5*64+0]=0;
1556                            }
1557                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1558                          stop_coding_timer();                          stop_coding_timer();
1559                  }                  }
# Line 1297  Line 1575 
1575    
1576    
1577  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1578    #define BFRAME_SKIP_THRESHHOLD 16
1579    
1580  static int  static int
1581  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1311  Line 1590 
1590          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1591    
1592          int iLimit;          int iLimit;
1593          uint32_t x, y;          int x, y, k;
1594          int iSearchRange;          int iSearchRange;
1595          int bIntra;          int bIntra;
1596    
# Line 1348  Line 1627 
1627          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1628                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1629          } else {          } else {
1630    
1631    #ifdef _SMP
1632            if (pEnc->mbParam.num_threads > 1)
1633                    bIntra =
1634                            SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1635                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1636                                                     iLimit);
1637            else
1638    #endif
1639                  bIntra =                  bIntra =
1640                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1641                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1642                                                           iLimit);                                                           iLimit);
1643    
1644          }          }
1645          stop_motion_timer();          stop_motion_timer();
1646    
# Line 1364  Line 1653 
1653          if (vol_header)          if (vol_header)
1654                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1655    
1656          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1657    
1658          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1659    
# Line 1429  Line 1718 
1718                          }                          }
1719    
1720                          start_timer();                          start_timer();
1721    
1722                            /* Finished processing the MB, now check if to CODE or SKIP */
1723    
1724                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1725                                    pMB->mvs[0].y == 0) {
1726    
1727    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1728    
1729    #ifdef BFRAMES
1730                                    int iSAD=BFRAME_SKIP_THRESHHOLD;
1731                                    int bSkip=1;
1732    
1733                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1734                                    {
1735                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1736                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1737                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1738                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD)
1739                                            {       bSkip = 0;
1740                                                    break;
1741                                            }
1742                                    }
1743                                    if (!bSkip)
1744                                    {
1745                                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1746                                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1747                                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1748                                                    qcoeff[5*64+0]=0;
1749                                            }
1750                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1751                                            pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */
1752                                    }
1753                                    else
1754                                            MBSkip(bs);
1755    
1756    #else
1757                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1758    
1759    #endif
1760    
1761                            } else {
1762                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1763                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1764                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1765                                            qcoeff[5*64+0]=0;
1766                                    }
1767                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1768                            }
1769    
1770                          stop_coding_timer();                          stop_coding_timer();
1771                  }                  }
1772          }          }
# Line 1463  Line 1800 
1800    
1801          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1802    
1803    #ifdef BFRAMES
1804            /* frame drop code */
1805            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1806            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1807                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1808            {
1809                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1810                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1811    
1812                    BitstreamReset(bs);
1813                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1814    
1815                    // copy reference frame details into the current frame
1816                    pEnc->current->quant = pEnc->reference->quant;
1817                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1818                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1819                    pEnc->current->fcode = pEnc->reference->fcode;
1820                    pEnc->current->bcode = pEnc->reference->bcode;
1821                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1822                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1823    
1824            }
1825    #endif
1826    
1827          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1828    
1829    #ifdef BFRAMES
1830            pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->current->ticks) %
1831                            (int32_t)pEnc->mbParam.fbase;
1832            pEnc->last_pframe = pEnc->current->ticks;
1833    #endif
1834    
1835          return 0;                                       // inter          return 0;                                       // inter
1836  }  }
1837    
# Line 1485  Line 1852 
1852          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1853          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1854    
1855    #ifdef BFRAMES_DEC_DEBUG
1856            FILE *fp;
1857            static char first=0;
1858    #define BFRAME_DEBUG    if (!first && fp){ \
1859                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1860            }
1861    
1862            if (!first){
1863                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1864            }
1865    #endif
1866    
1867          // forward          // forward
1868          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1869                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1508  Line 1887 
1887          stop_inter_timer();          stop_inter_timer();
1888    
1889          start_timer();          start_timer();
1890          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1891                    ((int32_t)pEnc->mbParam.fbase + pEnc->last_pframe - frame->ticks) % pEnc->mbParam.fbase,
1892                                                    pEnc->time_pp,
1893                                                    pEnc->reference->mbs, f_ref,
1894                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1895                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,
1896                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
# Line 1522  Line 1904 
1904             } */             } */
1905    
1906          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1907          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1908    
1909          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1910    
# Line 1551  Line 1933 
1933                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1934                                  mb->mvs[0].x = 0;                                  mb->mvs[0].x = 0;
1935                                  mb->mvs[0].y = 0;                                  mb->mvs[0].y = 0;
1936    
1937                                    mb->cbp = 0;
1938    #ifdef BFRAMES_DEC_DEBUG
1939            BFRAME_DEBUG
1940    #endif
1941                                  continue;                                  continue;
1942                          }                          }
1943    
# Line 1562  Line 1949 
1949    
1950                          mb->quant = frame->quant;                          mb->quant = frame->quant;
1951                          mb->cbp =                          mb->cbp =
1952                                  MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes,                                  MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y, dct_codes,
1953                                                                    qcoeff);                                                                    qcoeff);
1954                          //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);
1955    
1956                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1957                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {
1958                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 mb->mode = 5;   // skipped  
1959                          }                          }
1960    
1961    /* update predictors for forward and backward vectors */
1962                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1963                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1964                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1585  Line 1972 
1972                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1973                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1974                          }                          }
 //          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);  
1975    
1976    //                      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);
1977    
1978    #ifdef BFRAMES_DEC_DEBUG
1979            BFRAME_DEBUG
1980    #endif
1981                          start_timer();                          start_timer();
1982                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1983                                                   &pEnc->sStat);                                                   &pEnc->sStat);
# Line 1599  Line 1990 
1990          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1991    
1992          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1993    
1994    #ifdef BFRAMES_DEC_DEBUG
1995            if (!first){
1996                    first=1;
1997                    if (fp)
1998                            fclose(fp);
1999  }  }
2000  #endif  #endif
2001    }
2002    #endif
2003    
2004    
2005    /*      in case internal output is needed somewhere... */
2006    /*      {
2007            FILE *filehandle;
2008            filehandle=fopen("last-b.pgm","wb");
2009            if (filehandle)
2010            {
2011                    fprintf(filehandle,"P5\n\n");           //
2012                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2013                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2014                    fclose(filehandle);
2015                    }
2016            }
2017    */

Legend:
Removed from v.208  
changed lines
  Added in v.369

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