[svn] / branches / dev-api-3 / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /branches/dev-api-3/xvidcore/src/encoder.c

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

revision 208, Fri Jun 14 13:21:35 2002 UTC revision 325, Sun Jul 21 14:05:38 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.61 2002-07-21 14:05:38 edgomez Exp $
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
# Line 50  Line 53 
53  #include "global.h"  #include "global.h"
54  #include "utils/timer.h"  #include "utils/timer.h"
55  #include "image/image.h"  #include "image/image.h"
56    #ifdef BFRAMES
57    #include "image/font.h"
58    #endif
59  #include "motion/motion.h"  #include "motion/motion.h"
60  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
61  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 62  Line 68 
68  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
69  #include "utils/mem_align.h"  #include "utils/mem_align.h"
70    
71    #ifdef _SMP
72    #include "motion/smp_motion_est.h"
73    #endif
74  /*****************************************************************************  /*****************************************************************************
75   * Local macros   * Local macros
76   ****************************************************************************/   ****************************************************************************/
# Line 132  Line 141 
141  encoder_create(XVID_ENC_PARAM * pParam)  encoder_create(XVID_ENC_PARAM * pParam)
142  {  {
143          Encoder *pEnc;          Encoder *pEnc;
144          uint32_t i;          int i;
145    
146          pParam->handle = NULL;          pParam->handle = NULL;
147    
# Line 200  Line 209 
209    
210          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
211    
212          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
213                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
214    
   
215          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
216          if (pEnc == NULL)          if (pEnc == NULL)
217                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
# Line 228  Line 236 
236    
237          pEnc->mbParam.m_quant_type = H263_QUANT;          pEnc->mbParam.m_quant_type = H263_QUANT;
238    
239    #ifdef _SMP
240            pEnc->mbParam.num_threads = MIN(pParam->num_threads, MAXNUMTHREADS);
241    #endif
242    
243          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
244    
245          /* Fill rate control parameters */          /* Fill rate control parameters */
# Line 259  Line 271 
271    
272          /* try to allocate image memory */          /* try to allocate image memory */
273    
274  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
275          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
276  #endif  #endif
277  #ifdef BFRAMES  #ifdef BFRAMES
# Line 275  Line 287 
287          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
288          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
289    
290  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
291          if (image_create          if (image_create
292                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
293                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 329  Line 341 
341          /* B Frames specific init */          /* B Frames specific init */
342  #ifdef BFRAMES  #ifdef BFRAMES
343    
344            pEnc->global = pParam->global;
345          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
346          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->bquant_ratio = pParam->bquant_ratio;
347            pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
348          pEnc->bframes = NULL;          pEnc->bframes = NULL;
349    
350          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 373  Line 387 
387          pEnc->bframenum_head = 0;          pEnc->bframenum_head = 0;
388          pEnc->bframenum_tail = 0;          pEnc->bframenum_tail = 0;
389          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
390            pEnc->bframenum_dx50bvop = -1;
391    
392            pEnc->queue = NULL;
393    
394    
395            if (pEnc->mbParam.max_bframes > 0) {
396                    int n;
397    
398                    pEnc->queue =
399                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),
400                                                    CACHE_LINE);
401    
402                    if (pEnc->queue == NULL)
403                            goto xvid_err_memory4;
404    
405                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
406                            image_null(&pEnc->queue[n]);
407    
408                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
409                            if (image_create
410                                    (&pEnc->queue[n], pEnc->mbParam.edged_width,
411                                     pEnc->mbParam.edged_height) < 0)
412                                    goto xvid_err_memory5;
413    
414                    }
415            }
416    
417            pEnc->queue_head = 0;
418            pEnc->queue_tail = 0;
419            pEnc->queue_size = 0;
420    
421    
422          pEnc->mbParam.m_seconds = 0;          pEnc->mbParam.m_seconds = 0;
423          pEnc->mbParam.m_ticks = 0;          pEnc->mbParam.m_ticks = 0;
424            pEnc->m_framenum = 0;
425            pEnc->last_pframe = 1;
426  #endif  #endif
427    
428          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
# Line 396  Line 443 
443           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
444           */           */
445  #ifdef BFRAMES  #ifdef BFRAMES
446      xvid_err_memory5:
447    
448    
449            if (pEnc->mbParam.max_bframes > 0) {
450    
451                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
452                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
453                                                      pEnc->mbParam.edged_height);
454                    }
455                    xvid_free(pEnc->queue);
456            }
457    
458    xvid_err_memory4:    xvid_err_memory4:
459    
460            if (pEnc->mbParam.max_bframes > 0) {
461    
462          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
463    
464                  if (pEnc->bframes[i] == NULL)                  if (pEnc->bframes[i] == NULL)
# Line 412  Line 474 
474          }          }
475    
476          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
477            }
478    
479  #endif  #endif
480    
481    xvid_err_memory3:    xvid_err_memory3:
482  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
483          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
484                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
485  #endif  #endif
# Line 473  Line 536 
536  int  int
537  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
538  {  {
539    #ifdef BFRAMES
540            int i;
541    #endif
542    
543          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
544    
545          /* B Frames specific */          /* B Frames specific */
546  #ifdef BFRAMES  #ifdef BFRAMES
547          int i;          if (pEnc->mbParam.max_bframes > 0) {
548    
549                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
550    
551                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
552                                              pEnc->mbParam.edged_height);
553                    }
554                    xvid_free(pEnc->queue);
555            }
556    
557    
558            if (pEnc->mbParam.max_bframes > 0) {
559    
560          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
561    
# Line 490  Line 568 
568                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
569    
570                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
571          }          }
572    
573          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
574    
575            }
576  #endif  #endif
577    
578          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
# Line 521  Line 599 
599          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
600                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
601  #endif  #endif
602  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
603          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
604                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
605  #endif  #endif
# Line 539  Line 617 
617          return XVID_ERR_OK;          return XVID_ERR_OK;
618  }  }
619    
620    
621    #ifdef BFRAMES
622    void inc_frame_num(Encoder * pEnc)
623    {
624            pEnc->iFrameNum++;
625            pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
626    
627            pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
628            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
629    }
630    #endif
631    
632    
633    #ifdef BFRAMES
634    void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
635    {
636            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
637            {
638                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
639                    return;
640            }
641    
642            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
643                                    pEnc->bframenum_head, pEnc->bframenum_tail,
644                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
645    
646    
647            start_timer();
648            if (image_input
649                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
650                     pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
651                    return;
652            stop_conv_timer();
653    
654            pEnc->queue_size++;
655            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
656    }
657    #endif
658    
659    
660    #ifdef BFRAMES
661  /*****************************************************************************  /*****************************************************************************
662   * 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.  
663   *   *
664   * Returned values :   * Returned values :
665   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 551  Line 667 
667   *                        format   *                        format
668   ****************************************************************************/   ****************************************************************************/
669    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
670  int  int
671  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
672                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
673                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
674  {  {
# Line 565  Line 676 
676          Bitstream bs;          Bitstream bs;
677          uint32_t bits;          uint32_t bits;
678    
679  #ifdef _DEBUG          int input_valid = 1;
680    
681    #ifdef _DEBUG_PSNR
682          float psnr;          float psnr;
683          char temp[128];          char temp[128];
684  #endif  #endif
685    
686          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
687          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
688            ENC_CHECK(pFrame->image);
689    
690          start_global_timer();          start_global_timer();
691    
692          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
693    
694    ipvop_loop:
695    
696          /*          /*
697           * bframe "flush" code           * bframe "flush" code
698           */           */
# Line 591  Line 707 
707                           * frame as a pframe                           * frame as a pframe
708                           */                           */
709    
710                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
711                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
712                             dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
713                           */  
714                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
715                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
716    
# Line 604  Line 720 
720    
721                          BitstreamPad(&bs);                          BitstreamPad(&bs);
722                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
723                          pFrame->intra = 0;                          pFrame->intra = 0;
724    
725                          return XVID_ERR_OK;                          return XVID_ERR_OK;
726                  }                  }
727    
728                  /* ToDo : remove dprintf calls */  
729                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
730                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
731                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
732    
733                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
734                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
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                    if (input_valid)
741                            queue_image(pEnc, pFrame);
742    
743                  return XVID_ERR_OK;                  return XVID_ERR_OK;
744          }          }
745    
746          if (pFrame->image == NULL) {          if (pEnc->bframenum_head > 0) {
747                  pFrame->length = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
748                  pFrame->input_consumed = 1;  
749                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
750    
751                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
752                                    pEnc->bframenum_head, pEnc->bframenum_tail,
753                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
754    
755                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
756                            BitstreamPad(&bs);
757                            BitstreamPutBits(&bs, 0x7f, 8);
758    
759                            pFrame->length = BitstreamLength(&bs);
760                  pFrame->intra = 0;                  pFrame->intra = 0;
761    
762                            if (input_valid)
763                                    queue_image(pEnc, pFrame);
764    
765                  return XVID_ERR_OK;                  return XVID_ERR_OK;
766          }          }
767            }
768    
769          if (pEnc->bframenum_head > 0) {  
770                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;  bvop_loop:
771    
772            if (pEnc->bframenum_dx50bvop != -1)
773            {
774    
775                    SWAP(pEnc->current, pEnc->reference);
776                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
777    
778                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
779                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
780                    }
781    
782                    if (input_valid)
783                    {
784                            queue_image(pEnc, pFrame);
785                            input_valid = 0;
786                    }
787    
788            } else if (input_valid) {
789    
790                    SWAP(pEnc->current, pEnc->reference);
791    
792                    start_timer();
793                    if (image_input
794                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
795                            pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
796                            return XVID_ERR_FORMAT;
797                    stop_conv_timer();
798    
799                    // queue input frame, and dequue next image
800                    if (pEnc->queue_size > 0)
801                    {
802                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
803                            if (pEnc->queue_head != pEnc->queue_tail)
804                            {
805                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
806                            }
807                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
808                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
809                    }
810    
811            } else if (pEnc->queue_size > 0) {
812    
813                    SWAP(pEnc->current, pEnc->reference);
814    
815                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
816                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
817                    pEnc->queue_size--;
818    
819            } else if (BitstreamPos(&bs) == 0) {
820    
821                    DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
822                                    pEnc->bframenum_head, pEnc->bframenum_tail,
823                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
824    
825                    pFrame->intra = 0;
826    
827                    BitstreamPutBits(&bs, 0x7f, 8);
828                    BitstreamPad(&bs);
829                    pFrame->length = BitstreamLength(&bs);
830    
831                    return XVID_ERR_OK;
832    
833            } else {
834    
835                    pFrame->length = BitstreamLength(&bs);
836                    return XVID_ERR_OK;
837          }          }
838    
839          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
# Line 645  Line 843 
843           * comment style :-)           * comment style :-)
844           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
845    
         SWAP(pEnc->current, pEnc->reference);  
   
846          emms();          emms();
847    
848            // only inc frame num, adapt quant, etc. if we havent seen it before
849            if (pEnc->bframenum_dx50bvop < 0 )
850            {
851          if (pFrame->quant == 0)          if (pFrame->quant == 0)
852                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
853          else          else
# Line 662  Line 861 
861    
862          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
863          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
864          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
865          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
866          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
867          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
868    
869          start_timer();                  pEnc->current->seconds = pEnc->mbParam.m_seconds;
870          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();  
871    
872  #ifdef _DEBUG                  inc_frame_num(pEnc);
873    
874    #ifdef _DEBUG_PSNR
875          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
876                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
877  #endif  #endif
878    
879          emms();          emms();
880    
881                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
882                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
883                                    "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);
884                    }
885    
886          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
887           * Luminance masking           * Luminance masking
888           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
# Line 711  Line 912 
912                          }                          }
913    
914  #undef OFFSET  #undef OFFSET
   
915                  }                  }
916    
917                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
918          }          }
919    
920            }
921    
922          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
923           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
924           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
925    
926    
927          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
928                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
929                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
930                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || image_mad(&pEnc->reference->image, &pEnc->current->image,
# Line 732  Line 934 
934                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
935                   */                   */
936    
937                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
938                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
939                     dprintf("--- IFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                  */  
940    
941                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
942                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
943                    }
944    
945                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
946    
947                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
948    
949                            pEnc->bframenum_tail--;
950                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
951    
952                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
953                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
954                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
955                            }
956                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
957    
958                            pFrame->intra = 0;
959    
960                    } else {
961    
962                            FrameCodeI(pEnc, &bs, &bits);
963                  pFrame->intra = 1;                  pFrame->intra = 1;
964    
965                            pEnc->bframenum_dx50bvop = -1;
966                    }
967    
968                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
969    
970                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
971                            BitstreamPad(&bs);
972                            input_valid = 0;
973                            goto ipvop_loop;
974                    }
975    
976                  /*                  /*
977                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
978                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
# Line 751  Line 982 
982                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
983                   */                   */
984    
985                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
986                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
987                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
988                   */  
989                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
990                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
991                    }
992    
993                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
994                  pFrame->intra = 0;                  pFrame->intra = 0;
995                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
996    
997                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
998                            BitstreamPad(&bs);
999                            input_valid = 0;
1000                            goto ipvop_loop;
1001                    }
1002    
1003          } else {          } else {
1004                  /*                  /*
1005                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1006                   */                   */
1007    
1008                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1009                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1010                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1011                     pEnc->bframenum_head,  
1012                     pEnc->bframenum_tail);                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1013                   */                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1014                    }
1015    
1016                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1017                          pEnc->current->quant =                          pEnc->current->quant =
# Line 787  Line 1029 
1029    
1030                  pFrame->intra = 0;                  pFrame->intra = 0;
1031                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
1032    
1033                  pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;                  input_valid = 0;
1034                  if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {                  goto bvop_loop;
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
                 }  
   
                 return XVID_ERR_OK;  
1035          }          }
1036    
1037          BitstreamPad(&bs);          BitstreamPad(&bs);
# Line 811  Line 1047 
1047    
1048          emms();          emms();
1049    
1050  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1051          psnr =          psnr =
1052                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1053                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 826  Line 1062 
1062                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1063          }          }
1064    
         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;  
1065    
1066          stop_global_timer();          stop_global_timer();
1067          write_timer();          write_timer();
1068    
1069          return XVID_ERR_OK;          return XVID_ERR_OK;
1070  }  }
1071  #else  
1072    #endif
1073    
1074    
1075    
1076  /*****************************************************************************  /*****************************************************************************
1077   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1078     *
1079     * Returned values :
1080     *    - XVID_ERR_OK     - no errors
1081     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1082     *                        format
1083   ****************************************************************************/   ****************************************************************************/
1084    
1085  int  int
1086  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1087                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 853  Line 1092 
1092          uint32_t bits;          uint32_t bits;
1093          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1094    
1095  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1096          float psnr;          float psnr;
1097          uint8_t temp[128];          uint8_t temp[128];
1098  #endif  #endif
# Line 869  Line 1108 
1108    
1109          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1110          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1111    #ifdef BFRAMES
1112            pEnc->current->seconds = pEnc->mbParam.m_seconds;
1113            pEnc->current->ticks = pEnc->mbParam.m_ticks;
1114    #endif
1115          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1116    
1117          start_timer();          start_timer();
# Line 878  Line 1121 
1121                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1122          stop_conv_timer();          stop_conv_timer();
1123    
1124  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1125          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1126                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1127  #endif  #endif
# Line 988  Line 1231 
1231                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1232                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1233          }          }
1234  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1235          psnr =          psnr =
1236                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1237                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 998  Line 1241 
1241          DEBUG(temp);          DEBUG(temp);
1242  #endif  #endif
1243    
1244    #ifdef BFRAMES
1245            inc_frame_num(pEnc);
1246    #else
1247          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1248    #endif
1249    
1250    
1251          stop_global_timer();          stop_global_timer();
1252          write_timer();          write_timer();
1253    
1254          return XVID_ERR_OK;          return XVID_ERR_OK;
1255  }  }
 #endif  
1256    
1257    
1258  static __inline void  static __inline void
# Line 1075  Line 1322 
1322                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1323                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1324                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1325                          VECTOR pred[4];                          VECTOR pred;
1326                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1327                          int vec;                          int vec;
1328    
1329                          pMB->mode =                          pMB->mode =
# Line 1097  Line 1343 
1343                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1344                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1345    
1346                                  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);  
1347    
1348                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1349                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1350                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1351                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1352                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1353                                  }                                  }
1354                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1355                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1117  Line 1362 
1362                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1363                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1364    
1365                                          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);  
1366    
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[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1370                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1371                                  }                                  }
1372                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1373                          {                          {
# Line 1253  Line 1497 
1497          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1498    
1499          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1500          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  #ifdef BFRAMES
1501    #define DIVX501B481P "DivX501b481p"
1502            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1503                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1504            }
1505    #endif
1506            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1507    
1508          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1509    
# Line 1348  Line 1598 
1598          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1599                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1600          } else {          } else {
1601    
1602    #ifdef _SMP
1603            if (pEnc->mbParam.num_threads > 1)
1604                    bIntra =
1605                            SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1606                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1607                                                     iLimit);
1608            else
1609    #endif
1610                  bIntra =                  bIntra =
1611                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1612                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1613                                                           iLimit);                                                           iLimit);
1614    
1615          }          }
1616          stop_motion_timer();          stop_motion_timer();
1617    
# Line 1364  Line 1624 
1624          if (vol_header)          if (vol_header)
1625                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1626    
1627          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1628    
1629          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1630    
# Line 1463  Line 1723 
1723    
1724          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1725    
1726    #ifdef BFRAMES
1727            /* frame drop code */
1728            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1729            if (pEnc->sStat.kblks + pEnc->sStat.mblks <=
1730                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1731            {
1732                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1733                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1734    
1735                    BitstreamReset(bs);
1736                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1737    
1738                    // copy reference frame details into the current frame
1739                    pEnc->current->quant = pEnc->reference->quant;
1740                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1741                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1742                    pEnc->current->fcode = pEnc->reference->fcode;
1743                    pEnc->current->bcode = pEnc->reference->bcode;
1744                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1745                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1746    
1747            }
1748    #endif
1749    
1750          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1751    
1752    #ifdef BFRAMES
1753            pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;
1754    
1755            pEnc->last_pframe = pEnc->mbParam.m_ticks;
1756    #endif
1757          return 0;                                       // inter          return 0;                                       // inter
1758  }  }
1759    
# Line 1485  Line 1774 
1774          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1775          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1776    
1777    #ifdef BFRAMES_DEC_DEBUG
1778            FILE *fp;
1779            static char first=0;
1780    #define BFRAME_DEBUG    if (!first && fp){ \
1781                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1782            }
1783    
1784            if (!first){
1785                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1786            }
1787    #endif
1788    
1789          // forward          // forward
1790          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1791                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1508  Line 1809 
1809          stop_inter_timer();          stop_inter_timer();
1810    
1811          start_timer();          start_timer();
1812          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1813              ((int32_t)pEnc->mbParam.fbase + (int32_t)pEnc->mbParam.m_ticks + 1 - (int32_t)pEnc->last_pframe) % pEnc->mbParam.fbase,
1814                                                    pEnc->time_pp,
1815                                                    pEnc->reference->mbs, f_ref,
1816                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1817                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,
1818                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
# Line 1522  Line 1826 
1826             } */             } */
1827    
1828          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1829          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1830    
1831          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1832    
# Line 1551  Line 1855 
1855                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1856                                  mb->mvs[0].x = 0;                                  mb->mvs[0].x = 0;
1857                                  mb->mvs[0].y = 0;                                  mb->mvs[0].y = 0;
1858    
1859                                    mb->cbp = 0;
1860    #ifdef BFRAMES_DEC_DEBUG
1861            BFRAME_DEBUG
1862    #endif
1863                                  continue;                                  continue;
1864                          }                          }
1865    
# Line 1569  Line 1878 
1878    
1879                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)
1880                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {
1881                                  mb->mode = 5;   // skipped                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
1882                          }                          }
1883    
1884                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
# Line 1585  Line 1894 
1894                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1895                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1896                          }                          }
1897  //          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);  //                      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);
1898    
1899    #ifdef BFRAMES_DEC_DEBUG
1900            BFRAME_DEBUG
1901    #endif
1902                          start_timer();                          start_timer();
1903                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1904                                                   &pEnc->sStat);                                                   &pEnc->sStat);
# Line 1599  Line 1911 
1911          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1912    
1913          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1914    
1915    #ifdef BFRAMES_DEC_DEBUG
1916            if (!first){
1917                    first=1;
1918                    if (fp)
1919                            fclose(fp);
1920            }
1921    #endif
1922  }  }
1923  #endif  #endif

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

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