[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 195, Wed Jun 12 20:38:41 2002 UTC revision 340, Wed Jul 24 23:17:19 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.41 2002-06-12 20:38:40 edgomez Exp $   *  $Id: encoder.c,v 1.64 2002-07-24 23:17:19 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>
50    #include <string.h>
51    
52  #include "encoder.h"  #include "encoder.h"
53  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
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    #endif
60  #include "motion/motion.h"  #include "motion/motion.h"
61  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
62  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 61  Line 69 
69  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
70  #include "utils/mem_align.h"  #include "utils/mem_align.h"
71    
72    #ifdef _SMP
73    #include "motion/smp_motion_est.h"
74    #endif
75  /*****************************************************************************  /*****************************************************************************
76   * Local macros   * Local macros
77   ****************************************************************************/   ****************************************************************************/
# Line 131  Line 142 
142  encoder_create(XVID_ENC_PARAM * pParam)  encoder_create(XVID_ENC_PARAM * pParam)
143  {  {
144          Encoder *pEnc;          Encoder *pEnc;
145          uint32_t i;          int i;
146    
147          pParam->handle = NULL;          pParam->handle = NULL;
148    
# Line 199  Line 210 
210    
211          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
212    
213          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
214                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
215    
   
216          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
217          if (pEnc == NULL)          if (pEnc == NULL)
218                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
219    
220            /* Zero the Encoder Structure */
221    
222            memset(pEnc, 0, sizeof(Encoder));
223    
224          /* Fill members of Encoder structure */          /* Fill members of Encoder structure */
225    
226          pEnc->mbParam.width = pParam->width;          pEnc->mbParam.width = pParam->width;
# Line 221  Line 235 
235          pEnc->mbParam.fbase = pParam->fbase;          pEnc->mbParam.fbase = pParam->fbase;
236          pEnc->mbParam.fincr = pParam->fincr;          pEnc->mbParam.fincr = pParam->fincr;
237    
238            pEnc->mbParam.m_quant_type = H263_QUANT;
239    
240    #ifdef _SMP
241            pEnc->mbParam.num_threads = MIN(pParam->num_threads, MAXNUMTHREADS);
242    #endif
243    
244          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
245    
246          /* Fill rate control parameters */          /* Fill rate control parameters */
# Line 252  Line 272 
272    
273          /* try to allocate image memory */          /* try to allocate image memory */
274    
275  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
276          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
277  #endif  #endif
278  #ifdef BFRAMES  #ifdef BFRAMES
# Line 268  Line 288 
288          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
289          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
290    
291  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
292          if (image_create          if (image_create
293                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
294                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 322  Line 342 
342          /* B Frames specific init */          /* B Frames specific init */
343  #ifdef BFRAMES  #ifdef BFRAMES
344    
345            pEnc->global = pParam->global;
346          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
347          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->bquant_ratio = pParam->bquant_ratio;
348            pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
349          pEnc->bframes = NULL;          pEnc->bframes = NULL;
350    
351          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 366  Line 388 
388          pEnc->bframenum_head = 0;          pEnc->bframenum_head = 0;
389          pEnc->bframenum_tail = 0;          pEnc->bframenum_tail = 0;
390          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
391            pEnc->bframenum_dx50bvop = -1;
392    
393            pEnc->queue = NULL;
394    
395    
396            if (pEnc->mbParam.max_bframes > 0) {
397                    int n;
398    
399                    pEnc->queue =
400                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),
401                                                    CACHE_LINE);
402    
403                    if (pEnc->queue == NULL)
404                            goto xvid_err_memory4;
405    
406                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
407                            image_null(&pEnc->queue[n]);
408    
409                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
410                            if (image_create
411                                    (&pEnc->queue[n], pEnc->mbParam.edged_width,
412                                     pEnc->mbParam.edged_height) < 0)
413                                    goto xvid_err_memory5;
414    
415                    }
416            }
417    
418            pEnc->queue_head = 0;
419            pEnc->queue_tail = 0;
420            pEnc->queue_size = 0;
421    
422    
423          pEnc->mbParam.m_seconds = 0;          pEnc->mbParam.m_seconds = 0;
424          pEnc->mbParam.m_ticks = 0;          pEnc->mbParam.m_ticks = 0;
425            pEnc->m_framenum = 0;
426            pEnc->last_pframe = 1;
427  #endif  #endif
428    
429          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
# Line 389  Line 444 
444           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
445           */           */
446  #ifdef BFRAMES  #ifdef BFRAMES
447      xvid_err_memory5:
448    
449    
450            if (pEnc->mbParam.max_bframes > 0) {
451    
452                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
453                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
454                                                      pEnc->mbParam.edged_height);
455                    }
456                    xvid_free(pEnc->queue);
457            }
458    
459    xvid_err_memory4:    xvid_err_memory4:
460    
461            if (pEnc->mbParam.max_bframes > 0) {
462    
463          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
464    
465                  if (pEnc->bframes[i] == NULL)                  if (pEnc->bframes[i] == NULL)
# Line 405  Line 475 
475          }          }
476    
477          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
478            }
479    
480  #endif  #endif
481    
482    xvid_err_memory3:    xvid_err_memory3:
483  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
484          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
485                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
486  #endif  #endif
# Line 466  Line 537 
537  int  int
538  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
539  {  {
540    #ifdef BFRAMES
541            int i;
542    #endif
543    
544          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
545    
546          /* B Frames specific */          /* B Frames specific */
547  #ifdef BFRAMES  #ifdef BFRAMES
548          int i;          if (pEnc->mbParam.max_bframes > 0) {
549    
550                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
551    
552                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
553                                              pEnc->mbParam.edged_height);
554                    }
555                    xvid_free(pEnc->queue);
556            }
557    
558    
559            if (pEnc->mbParam.max_bframes > 0) {
560    
561          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
562    
# Line 483  Line 569 
569                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
570    
571                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
572          }          }
573    
574          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
575    
576            }
577  #endif  #endif
578    
579          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
# Line 514  Line 600 
600          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
601                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
602  #endif  #endif
603  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
604          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
605                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
606  #endif  #endif
# Line 532  Line 618 
618          return XVID_ERR_OK;          return XVID_ERR_OK;
619  }  }
620    
621    
622    #ifdef BFRAMES
623    void inc_frame_num(Encoder * pEnc)
624    {
625            pEnc->iFrameNum++;
626            pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
627    
628            pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
629            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
630    }
631    #endif
632    
633    
634    #ifdef BFRAMES
635    void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
636    {
637            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
638            {
639                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
640                    return;
641            }
642    
643            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
644                                    pEnc->bframenum_head, pEnc->bframenum_tail,
645                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
646    
647    
648            start_timer();
649            if (image_input
650                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
651                     pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
652                    return;
653            stop_conv_timer();
654    
655            pEnc->queue_size++;
656            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
657    }
658    #endif
659    
660    
661    #ifdef BFRAMES
662  /*****************************************************************************  /*****************************************************************************
663   * Frame encoder entry point   * IPB frame encoder entry point
  *  
  * At this moment 2 versions coexist : one for IPB compatible encoder,  
  *                                     another one for the old IP encoder.  
664   *   *
665   * Returned values :   * Returned values :
666   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 544  Line 668 
668   *                        format   *                        format
669   ****************************************************************************/   ****************************************************************************/
670    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
671  int  int
672  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
673                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
674                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
675  {  {
# Line 558  Line 677 
677          Bitstream bs;          Bitstream bs;
678          uint32_t bits;          uint32_t bits;
679    
680  #ifdef _DEBUG          int input_valid = 1;
681    
682    #ifdef _DEBUG_PSNR
683          float psnr;          float psnr;
684          char temp[128];          char temp[128];
685  #endif  #endif
686    
687          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
688          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
689            ENC_CHECK(pFrame->image);
690    
691          start_global_timer();          start_global_timer();
692    
693          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
694    
695    ipvop_loop:
696    
697          /*          /*
698           * bframe "flush" code           * bframe "flush" code
699           */           */
# Line 584  Line 708 
708                           * frame as a pframe                           * frame as a pframe
709                           */                           */
710    
711                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
712                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
713                             dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
714                           */  
715                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
716                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
717    
# Line 597  Line 721 
721    
722                          BitstreamPad(&bs);                          BitstreamPad(&bs);
723                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
724                          pFrame->intra = 0;                          pFrame->intra = 0;
725    
726                          return XVID_ERR_OK;                          return XVID_ERR_OK;
727                  }                  }
728    
729                  /* ToDo : remove dprintf calls */  
730                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
731                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
732                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
733    
734                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
735                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
736    
   
737                  BitstreamPad(&bs);                  BitstreamPad(&bs);
738                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
                 pFrame->input_consumed = 0;  
739                  pFrame->intra = 0;                  pFrame->intra = 0;
740    
741                    if (input_valid)
742                            queue_image(pEnc, pFrame);
743    
744                  return XVID_ERR_OK;                  return XVID_ERR_OK;
745          }          }
746    
747          if (pFrame->image == NULL) {          if (pEnc->bframenum_head > 0) {
748                  pFrame->length = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
749                  pFrame->input_consumed = 1;  
750                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
751    
752                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
753                                    pEnc->bframenum_head, pEnc->bframenum_tail,
754                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
755    
756                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
757                            BitstreamPad(&bs);
758                            BitstreamPutBits(&bs, 0x7f, 8);
759    
760                            pFrame->length = BitstreamLength(&bs);
761                  pFrame->intra = 0;                  pFrame->intra = 0;
762    
763                            if (input_valid)
764                                    queue_image(pEnc, pFrame);
765    
766                  return XVID_ERR_OK;                  return XVID_ERR_OK;
767          }          }
768            }
769    
770          if (pEnc->bframenum_head > 0) {  
771                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;  bvop_loop:
772    
773            if (pEnc->bframenum_dx50bvop != -1)
774            {
775    
776                    SWAP(pEnc->current, pEnc->reference);
777                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
778    
779                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
780                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
781                    }
782    
783                    if (input_valid)
784                    {
785                            queue_image(pEnc, pFrame);
786                            input_valid = 0;
787                    }
788    
789            } else if (input_valid) {
790    
791                    SWAP(pEnc->current, pEnc->reference);
792    
793                    start_timer();
794                    if (image_input
795                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
796                            pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
797                            return XVID_ERR_FORMAT;
798                    stop_conv_timer();
799    
800                    // queue input frame, and dequue next image
801                    if (pEnc->queue_size > 0)
802                    {
803                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
804                            if (pEnc->queue_head != pEnc->queue_tail)
805                            {
806                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
807                            }
808                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
809                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
810                    }
811    
812            } else if (pEnc->queue_size > 0) {
813    
814                    SWAP(pEnc->current, pEnc->reference);
815    
816                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
817                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
818                    pEnc->queue_size--;
819    
820            } else if (BitstreamPos(&bs) == 0) {
821    
822                    DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
823                                    pEnc->bframenum_head, pEnc->bframenum_tail,
824                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
825    
826                    pFrame->intra = 0;
827    
828                    BitstreamPutBits(&bs, 0x7f, 8);
829                    BitstreamPad(&bs);
830                    pFrame->length = BitstreamLength(&bs);
831    
832                    return XVID_ERR_OK;
833    
834            } else {
835    
836                    pFrame->length = BitstreamLength(&bs);
837                    return XVID_ERR_OK;
838          }          }
839    
840          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
# Line 638  Line 844 
844           * comment style :-)           * comment style :-)
845           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
846    
847          SWAP(pEnc->current, pEnc->reference);          emms();
   
         EMMS();  
848    
849            // only inc frame num, adapt quant, etc. if we havent seen it before
850            if (pEnc->bframenum_dx50bvop < 0 )
851            {
852          if (pFrame->quant == 0)          if (pFrame->quant == 0)
853                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
854          else          else
855                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
856    
857          if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
858                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
859    
860          if (pEnc->current->quant > 31)          if (pEnc->current->quant > 31)
861                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
862    */
863          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
864          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
865          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
866          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
867          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
868          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
869    
870          start_timer();                  pEnc->current->seconds = pEnc->mbParam.m_seconds;
871          if (image_input                  pEnc->current->ticks = pEnc->mbParam.m_ticks;
872                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,  
873                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                  inc_frame_num(pEnc);
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
874    
875  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
876          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
877                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
878  #endif  #endif
879    
880          EMMS();                  emms();
881    
882                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
883                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
884                                    "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);
885                    }
886    
887          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
888           * Luminance masking           * Luminance masking
# Line 704  Line 913 
913                          }                          }
914    
915  #undef OFFSET  #undef OFFSET
   
916                  }                  }
917    
918                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
919          }          }
920    
921            }
922    
923          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
924           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
925           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
926    
927    
928          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
929                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
930                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
931                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || image_mad(&pEnc->reference->image, &pEnc->current->image,
# Line 725  Line 935 
935                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
936                   */                   */
937    
938                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
939                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
940                     dprintf("--- IFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                  */  
941    
942                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
943                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
944                    }
945    
946                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
947    
948                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
949    
950                            pEnc->bframenum_tail--;
951                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
952    
953                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
954                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
955                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
956                            }
957                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
958    
959                            pFrame->intra = 0;
960    
961                    } else {
962    
963                            FrameCodeI(pEnc, &bs, &bits);
964                  pFrame->intra = 1;                  pFrame->intra = 1;
965    
966                            pEnc->bframenum_dx50bvop = -1;
967                    }
968    
969                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
970    
971                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
972                            BitstreamPad(&bs);
973                            input_valid = 0;
974                            goto ipvop_loop;
975                    }
976    
977                  /*                  /*
978                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
979                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
# Line 744  Line 983 
983                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
984                   */                   */
985    
986                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
987                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
988                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
989                   */  
990                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
991                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
992                    }
993    
994                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
995                  pFrame->intra = 0;                  pFrame->intra = 0;
996                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
997    
998                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
999                            BitstreamPad(&bs);
1000                            input_valid = 0;
1001                            goto ipvop_loop;
1002                    }
1003    
1004          } else {          } else {
1005                  /*                  /*
1006                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1007                   */                   */
1008    
1009                  /* ToDo : Remove dprintf calls */                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1010                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1011                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                    pEnc->bframenum_head,  
                    pEnc->bframenum_tail);  
                  */  
1012    
1013                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1014                          pEnc->current->quant =                          pEnc->current->quant =
# Line 771  Line 1017 
1017                  } else {                  } else {
1018                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1019                  }                  }
1020                    if (pEnc->current->quant < 1)
1021                            pEnc->current->quant = 1;
1022    
1023                    if (pEnc->current->quant > 31)
1024                            pEnc->current->quant = 31;
1025    
1026    
1027                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1028                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1029                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1030    
1031    
1032    
1033                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1034                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 780  Line 1038 
1038    
1039                  pFrame->intra = 0;                  pFrame->intra = 0;
1040                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
   
                 pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;  
                 if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {  
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
                 }  
1041    
1042                  return XVID_ERR_OK;                  input_valid = 0;
1043                    goto bvop_loop;
1044          }          }
1045    
1046          BitstreamPad(&bs);          BitstreamPad(&bs);
# Line 802  Line 1054 
1054                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->sStat.ublks;
1055          }          }
1056    
1057          EMMS();          emms();
1058    
1059  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1060          psnr =          psnr =
1061                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1062                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 819  Line 1071 
1071                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1072          }          }
1073    
         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;  
1074    
1075          stop_global_timer();          stop_global_timer();
1076          write_timer();          write_timer();
1077    
1078          return XVID_ERR_OK;          return XVID_ERR_OK;
1079  }  }
1080  #else  
1081    #endif
1082    
1083    
1084    
1085  /*****************************************************************************  /*****************************************************************************
1086   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1087     *
1088     * Returned values :
1089     *    - XVID_ERR_OK     - no errors
1090     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1091     *                        format
1092   ****************************************************************************/   ****************************************************************************/
1093    
1094  int  int
1095  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1096                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 846  Line 1101 
1101          uint32_t bits;          uint32_t bits;
1102          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1103    
1104  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1105          float psnr;          float psnr;
1106          uint8_t temp[128];          uint8_t temp[128];
1107  #endif  #endif
# Line 862  Line 1117 
1117    
1118          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1119          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1120    #ifdef BFRAMES
1121            pEnc->current->seconds = pEnc->mbParam.m_seconds;
1122            pEnc->current->ticks = pEnc->mbParam.m_ticks;
1123    #endif
1124          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1125    
1126          start_timer();          start_timer();
# Line 871  Line 1130 
1130                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1131          stop_conv_timer();          stop_conv_timer();
1132    
1133  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1134          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1135                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1136  #endif  #endif
1137    
1138          EMMS();          emms();
1139    
1140          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
1141    
# Line 975  Line 1234 
1234                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->sStat.ublks;
1235          }          }
1236    
1237          EMMS();          emms();
1238    
1239          if (pFrame->quant == 0) {          if (pFrame->quant == 0) {
1240                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1241                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1242          }          }
1243  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1244          psnr =          psnr =
1245                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1246                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 991  Line 1250 
1250          DEBUG(temp);          DEBUG(temp);
1251  #endif  #endif
1252    
1253    #ifdef BFRAMES
1254            inc_frame_num(pEnc);
1255    #else
1256          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1257    #endif
1258    
1259    
1260          stop_global_timer();          stop_global_timer();
1261          write_timer();          write_timer();
1262    
1263          return XVID_ERR_OK;          return XVID_ERR_OK;
1264  }  }
 #endif  
1265    
1266    
1267  static __inline void  static __inline void
# Line 1068  Line 1331 
1331                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1332                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1333                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1334                          VECTOR pred[4];                          VECTOR pred;
1335                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1336                          int vec;                          int vec;
1337    
1338                          pMB->mode =                          pMB->mode =
# Line 1090  Line 1352 
1352                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1353                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1354    
1355                                  get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width,                                  pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,0);
                                                         0, pred, dummy);  
1356    
1357                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1358                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1359                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1360                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1361                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1362                                  }                                  }
1363                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1364                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1110  Line 1371 
1371                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1372                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1373    
1374                                          get_pmvdata(pEnc->current->mbs, x, y,                                          pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,vec);
                                                                 pEnc->mbParam.mb_width, vec, pred, dummy);  
1375    
1376                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1377                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1378                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1379                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1380                                  }                                  }
1381                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1382                          {                          {
# Line 1246  Line 1506 
1506          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1507    
1508          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1509          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  #ifdef BFRAMES
1510    #define DIVX501B481P "DivX501b481p"
1511            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1512                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1513            }
1514    #endif
1515            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1516    
1517          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1518    
# Line 1341  Line 1607 
1607          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1608                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1609          } else {          } else {
1610    
1611    #ifdef _SMP
1612            if (pEnc->mbParam.num_threads > 1)
1613                    bIntra =
1614                            SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1615                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1616                                                     iLimit);
1617            else
1618    #endif
1619                  bIntra =                  bIntra =
1620                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1621                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1622                                                           iLimit);                                                           iLimit);
1623    
1624          }          }
1625          stop_motion_timer();          stop_motion_timer();
1626    
# Line 1357  Line 1633 
1633          if (vol_header)          if (vol_header)
1634                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1635    
1636          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1637    
1638          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1639    
# Line 1456  Line 1732 
1732    
1733          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1734    
1735    #ifdef BFRAMES
1736            /* frame drop code */
1737            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1738            if (pEnc->sStat.kblks + pEnc->sStat.mblks <=
1739                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1740            {
1741                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1742                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1743    
1744                    BitstreamReset(bs);
1745                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1746    
1747                    // copy reference frame details into the current frame
1748                    pEnc->current->quant = pEnc->reference->quant;
1749                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1750                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1751                    pEnc->current->fcode = pEnc->reference->fcode;
1752                    pEnc->current->bcode = pEnc->reference->bcode;
1753                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1754                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1755    
1756            }
1757    #endif
1758    
1759          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1760    
1761    #ifdef BFRAMES
1762            pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;
1763            pEnc->last_pframe = pEnc->mbParam.m_ticks;
1764    #endif
1765    
1766          return 0;                                       // inter          return 0;                                       // inter
1767  }  }
1768    
# Line 1478  Line 1783 
1783          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1784          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1785    
1786    #ifdef BFRAMES_DEC_DEBUG
1787            FILE *fp;
1788            static char first=0;
1789    #define BFRAME_DEBUG    if (!first && fp){ \
1790                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1791            }
1792    
1793            if (!first){
1794                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1795            }
1796    #endif
1797    
1798          // forward          // forward
1799          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1800                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1501  Line 1818 
1818          stop_inter_timer();          stop_inter_timer();
1819    
1820          start_timer();          start_timer();
1821          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1822              ((int32_t)pEnc->mbParam.fbase + (int32_t)pEnc->mbParam.m_ticks + 1 - (int32_t)pEnc->last_pframe) % pEnc->mbParam.fbase,
1823                                                    pEnc->time_pp,
1824                                                    pEnc->reference->mbs, f_ref,
1825                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1826                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,
1827                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
# Line 1515  Line 1835 
1835             } */             } */
1836    
1837          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1838          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1839    
1840          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1841    
# Line 1544  Line 1864 
1864                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1865                                  mb->mvs[0].x = 0;                                  mb->mvs[0].x = 0;
1866                                  mb->mvs[0].y = 0;                                  mb->mvs[0].y = 0;
1867    
1868                                    mb->cbp = 0;
1869    #ifdef BFRAMES_DEC_DEBUG
1870            BFRAME_DEBUG
1871    #endif
1872                                  continue;                                  continue;
1873                          }                          }
1874    
# Line 1559  Line 1884 
1884                                                                    qcoeff);                                                                    qcoeff);
1885                          //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);
1886    
1887                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1888                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {
1889                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 mb->mode = 5;   // skipped  
1890                          }                          }
1891    
1892    /* update predictors for forward and backward vectors */
1893                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1894                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1895                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1578  Line 1903 
1903                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1904                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1905                          }                          }
 //          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);  
1906    
1907    //                      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);
1908    
1909    #ifdef BFRAMES_DEC_DEBUG
1910            BFRAME_DEBUG
1911    #endif
1912                          start_timer();                          start_timer();
1913                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1914                                                   &pEnc->sStat);                                                   &pEnc->sStat);
# Line 1592  Line 1921 
1921          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1922    
1923          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1924    
1925    #ifdef BFRAMES_DEC_DEBUG
1926            if (!first){
1927                    first=1;
1928                    if (fp)
1929                            fclose(fp);
1930            }
1931    #endif
1932  }  }
1933  #endif  #endif
1934    
1935    
1936    /*      in case internal output is needed somewhere... */
1937    /*      {
1938            FILE *filehandle;
1939            filehandle=fopen("last-b.pgm","wb");
1940            if (filehandle)
1941            {
1942                    fprintf(filehandle,"P5\n\n");           //
1943                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
1944                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
1945                    fclose(filehandle);
1946                    }
1947            }
1948    */

Legend:
Removed from v.195  
changed lines
  Added in v.340

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