[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

trunk/xvidcore/src/encoder.c revision 208, Fri Jun 14 13:21:35 2002 UTC branches/dev-api-3/xvidcore/src/encoder.c revision 688, Thu Nov 28 14:45:21 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.76.2.23 2002-11-28 14:45:21 syskin Exp $
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
46    
47  #include <stdlib.h>  #include <stdlib.h>
48  #include <stdio.h>  #include <stdio.h>
49  #include <math.h>  #include <math.h>
# Line 50  Line 54 
54  #include "global.h"  #include "global.h"
55  #include "utils/timer.h"  #include "utils/timer.h"
56  #include "image/image.h"  #include "image/image.h"
57    #include "image/font.h"
58    #include "motion/sad.h"
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 83  Line 89 
89                                            bool force_inter,                                            bool force_inter,
90                                            bool vol_header);                                            bool vol_header);
91    
 #ifdef BFRAMES  
92  static void FrameCodeB(Encoder * pEnc,  static void FrameCodeB(Encoder * pEnc,
93                                             FRAMEINFO * frame,                                             FRAMEINFO * frame,
94                                             Bitstream * bs,                                             Bitstream * bs,
95                                             uint32_t * pBits);                                             uint32_t * pBits);
 #endif  
96    
97  /*****************************************************************************  /*****************************************************************************
98   * Local data   * Local data
# Line 103  Line 107 
107  };  };
108    
109    
 static void __inline  
 image_null(IMAGE * image)  
 {  
         image->y = image->u = image->v = NULL;  
 }  
   
   
110  /*****************************************************************************  /*****************************************************************************
111   * Encoder creation   * Encoder creation
112   *   *
# Line 132  Line 129 
129  encoder_create(XVID_ENC_PARAM * pParam)  encoder_create(XVID_ENC_PARAM * pParam)
130  {  {
131          Encoder *pEnc;          Encoder *pEnc;
132          uint32_t i;          int i;
133    
134          pParam->handle = NULL;          pParam->handle = NULL;
135    
# Line 200  Line 197 
197    
198          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
199    
200          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
201                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
202    
   
203          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
204          if (pEnc == NULL)          if (pEnc == NULL)
205                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
# Line 259  Line 255 
255    
256          /* try to allocate image memory */          /* try to allocate image memory */
257    
258  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
259          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
260  #endif  #endif
261  #ifdef BFRAMES  
262          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
263          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
264          image_null(&pEnc->f_refhv);          image_null(&pEnc->f_refhv);
265  #endif  
266          image_null(&pEnc->current->image);          image_null(&pEnc->current->image);
267          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
268          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
# Line 275  Line 271 
271          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
272          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
273    
274  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
275          if (image_create          if (image_create
276                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
277                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
278                  goto xvid_err_memory3;                  goto xvid_err_memory3;
279  #endif  #endif
280  #ifdef BFRAMES  
281          if (image_create          if (image_create
282                  (&pEnc->f_refh, pEnc->mbParam.edged_width,                  (&pEnc->f_refh, pEnc->mbParam.edged_width,
283                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 294  Line 290 
290                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,
291                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
292                  goto xvid_err_memory3;                  goto xvid_err_memory3;
293  #endif  
294          if (image_create          if (image_create
295                  (&pEnc->current->image, pEnc->mbParam.edged_width,                  (&pEnc->current->image, pEnc->mbParam.edged_width,
296                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
# Line 327  Line 323 
323    
324    
325          /* B Frames specific init */          /* B Frames specific init */
 #ifdef BFRAMES  
326    
327            pEnc->global = pParam->global;
328          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
329          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->bquant_ratio = pParam->bquant_ratio;
330            pEnc->bquant_offset = pParam->bquant_offset;
331            pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
332          pEnc->bframes = NULL;          pEnc->bframes = NULL;
333    
334          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 373  Line 371 
371          pEnc->bframenum_head = 0;          pEnc->bframenum_head = 0;
372          pEnc->bframenum_tail = 0;          pEnc->bframenum_tail = 0;
373          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
374            pEnc->bframenum_dx50bvop = -1;
375    
376          pEnc->mbParam.m_seconds = 0;          pEnc->queue = NULL;
377          pEnc->mbParam.m_ticks = 0;  
378  #endif  
379            if (pEnc->mbParam.max_bframes > 0) {
380                    int n;
381    
382                    pEnc->queue =
383                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),
384                                                    CACHE_LINE);
385    
386                    if (pEnc->queue == NULL)
387                            goto xvid_err_memory4;
388    
389                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
390                            image_null(&pEnc->queue[n]);
391    
392                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
393                            if (image_create
394                                    (&pEnc->queue[n], pEnc->mbParam.edged_width,
395                                     pEnc->mbParam.edged_height) < 0)
396                                    goto xvid_err_memory5;
397    
398                    }
399            }
400    
401            pEnc->queue_head = 0;
402            pEnc->queue_tail = 0;
403            pEnc->queue_size = 0;
404    
405            pEnc->mbParam.m_stamp = 0;
406    
407            pEnc->m_framenum = 0;
408            pEnc->current->stamp = 0;
409            pEnc->reference->stamp = 0;
410    
411          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
412    
# Line 395  Line 425 
425          /*          /*
426           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
427           */           */
428  #ifdef BFRAMES  
429      xvid_err_memory5:
430    
431    
432            if (pEnc->mbParam.max_bframes > 0) {
433    
434                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
435                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
436                                                      pEnc->mbParam.edged_height);
437                    }
438                    xvid_free(pEnc->queue);
439            }
440    
441    xvid_err_memory4:    xvid_err_memory4:
442    
443            if (pEnc->mbParam.max_bframes > 0) {
444    
445          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
446    
447                  if (pEnc->bframes[i] == NULL)                  if (pEnc->bframes[i] == NULL)
# Line 412  Line 457 
457          }          }
458    
459          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
460            }
 #endif  
461    
462    xvid_err_memory3:    xvid_err_memory3:
463  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
464          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
465                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
466  #endif  #endif
467    
 #ifdef BFRAMES  
468          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
469                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
470          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
471                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
472          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
473                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
 #endif  
474    
475          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
476                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
# Line 473  Line 515 
515  int  int
516  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
517  {  {
518            int i;
519    
520          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
521    
522          /* B Frames specific */          /* B Frames specific */
523  #ifdef BFRAMES          if (pEnc->mbParam.max_bframes > 0) {
524          int i;  
525                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
526    
527                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
528                                              pEnc->mbParam.edged_height);
529                    }
530                    xvid_free(pEnc->queue);
531            }
532    
533    
534            if (pEnc->mbParam.max_bframes > 0) {
535    
536          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {          for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
537    
# Line 490  Line 544 
544                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
545    
546                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
547          }          }
548    
549          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
550    
551  #endif          }
552    
553          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
554    
# Line 513  Line 566 
566                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
567          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
568                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
569  #ifdef BFRAMES  
570          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
571                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
572          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
573                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
574          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
575                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
576  #endif  
577  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
578          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
579                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
580  #endif  #endif
# Line 539  Line 592 
592          return XVID_ERR_OK;          return XVID_ERR_OK;
593  }  }
594    
595    
596    static __inline void inc_frame_num(Encoder * pEnc)
597    {
598            pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
599            pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
600    }
601    
602    
603    static __inline void
604    queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
605    {
606            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
607            {
608                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
609                    return;
610            }
611    
612            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
613                                    pEnc->bframenum_head, pEnc->bframenum_tail,
614                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
615    
616    
617            start_timer();
618            if (image_input
619                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
620                     pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
621                    return;
622            stop_conv_timer();
623    
624            pEnc->queue_size++;
625            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
626    }
627    
628    static __inline void
629    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
630    {
631    
632                    pCur->ticks = (int32_t)pCur->stamp % time_base;
633                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
634    
635                    //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
636    
637    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
638                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
639                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
640                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
641                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
642                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
643    
644    */
645    }
646    
647    
648    
649    
650    
651  /*****************************************************************************  /*****************************************************************************
652   * 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.  
653   *   *
654   * Returned values :   * Returned values :
655   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 551  Line 657 
657   *                        format   *                        format
658   ****************************************************************************/   ****************************************************************************/
659    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
660  int  int
661  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
662                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
663                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
664  {  {
665          uint16_t x, y;          uint16_t x, y;
666          Bitstream bs;          Bitstream bs;
667          uint32_t bits;          uint32_t bits, mode;
668    
669            int input_valid = 1;
670            int bframes_count = 0;
671    
672  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
673          float psnr;          float psnr;
674          char temp[128];          char temp[128];
675  #endif  #endif
676    
677          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
678          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
679            ENC_CHECK(pFrame->image);
680    
681          start_global_timer();          start_global_timer();
682    
683          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
684    
685    ipvop_loop:
686    
687          /*          /*
688           * bframe "flush" code           * bframe "flush" code
689           */           */
# Line 591  Line 698 
698                           * frame as a pframe                           * frame as a pframe
699                           */                           */
700    
701                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
702                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
703                             dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
704                           */  
705                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
706                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
707    
708                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
709    
710                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
711                            bframes_count = 0;
712    
713                          BitstreamPad(&bs);                          BitstreamPad(&bs);
714                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
715                          pFrame->intra = 0;                          pFrame->intra = 0;
716    
717                            emms();
718    
719                          return XVID_ERR_OK;                          return XVID_ERR_OK;
720                  }                  }
721    
722                  /* ToDo : remove dprintf calls */  
723                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
724                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
725                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
726    
727                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
728                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
729    
   
730                  BitstreamPad(&bs);                  BitstreamPad(&bs);
731                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
732                  pFrame->input_consumed = 0;                  pFrame->intra = 2;
                 pFrame->intra = 0;  
733    
734                  return XVID_ERR_OK;                  if (input_valid)
735          }                          queue_image(pEnc, pFrame);
736    
737          if (pFrame->image == NULL) {                  emms();
                 pFrame->length = 0;  
                 pFrame->input_consumed = 1;  
                 pFrame->intra = 0;  
738    
739                  return XVID_ERR_OK;                  return XVID_ERR_OK;
740          }          }
741    
742          if (pEnc->bframenum_head > 0) {          if (pEnc->bframenum_head > 0) {
743                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
744    
745                    /* write an empty marker to the bitstream.
746    
747                       for divx5 decoder compatibility, this marker must consist
748                       of a not-coded p-vop, with a time_base of zero, and time_increment
749                       indentical to the future-referece frame.
750                    */
751    
752                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
753                            int tmp;
754    
755                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
756                                    pEnc->bframenum_head, pEnc->bframenum_tail,
757                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
758    
759                            BitstreamPad(&bs);
760    
761                            tmp = pEnc->current->seconds;
762                            pEnc->current->seconds = 0; /* force time_base = 0 */
763                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
764                            pEnc->current->seconds = tmp;
765    
766                            pFrame->length = BitstreamLength(&bs);
767                            pFrame->intra = 4;
768    
769                            if (input_valid)
770                                    queue_image(pEnc, pFrame);
771    
772                            emms();
773    
774                            return XVID_ERR_OK;
775                    }
776          }          }
777    
         pEnc->flush_bframes = 0;  
778    
779          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  bvop_loop:
780           * Well there was a separation here so i put it in ANSI C  
781           * comment style :-)          if (pEnc->bframenum_dx50bvop != -1)
782           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */          {
783    
784                    SWAP(pEnc->current, pEnc->reference);
785                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
786    
787                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
788                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
789                    }
790    
791                    if (input_valid)
792                    {
793                            queue_image(pEnc, pFrame);
794                            input_valid = 0;
795                    }
796    
797            } else if (input_valid) {
798    
799          SWAP(pEnc->current, pEnc->reference);          SWAP(pEnc->current, pEnc->reference);
800    
801                    start_timer();
802                    if (image_input
803                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
804                            pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
805                    {
806          emms();          emms();
807                            return XVID_ERR_FORMAT;
808                    }
809                    stop_conv_timer();
810    
811                    // queue input frame, and dequue next image
812                    if (pEnc->queue_size > 0)
813                    {
814                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
815                            if (pEnc->queue_head != pEnc->queue_tail)
816                            {
817                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
818                            }
819                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
820                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
821                    }
822    
823            } else if (pEnc->queue_size > 0) {
824    
825                    SWAP(pEnc->current, pEnc->reference);
826    
827                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
828                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
829                    pEnc->queue_size--;
830    
831            } else {
832    
833                    /* if nothing was encoded, write an 'ignore this frame' flag
834                       to the bitstream */
835    
836                    if (BitstreamPos(&bs) == 0) {
837    
838                            DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
839                                    pEnc->bframenum_head, pEnc->bframenum_tail,
840                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
841    
842                            BitstreamPutBits(&bs, 0x7f, 8);
843                            pFrame->intra = 5;
844                    }
845    
846                    pFrame->length = BitstreamLength(&bs);
847                    emms();
848                    return XVID_ERR_OK;
849            }
850    
851            pEnc->flush_bframes = 0;
852    
853            emms();
854    
855            // only inc frame num, adapt quant, etc. if we havent seen it before
856            if (pEnc->bframenum_dx50bvop < 0 )
857            {
858          if (pFrame->quant == 0)          if (pFrame->quant == 0)
859                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
860          else          else
861                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
862    
863          if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
864                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
865    
866          if (pEnc->current->quant > 31)          if (pEnc->current->quant > 31)
867                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
868    */
869          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
870          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
871          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
872          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
873          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
874          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
875    
876          start_timer();                  inc_frame_num(pEnc);
         if (image_input  
                 (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,  
                  pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))  
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
877    
878  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
879          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
880                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
881  #endif  #endif
882    
883          emms();          emms();
884    
885                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
886                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
887                                    "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
888                    }
889    
890          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
891           * Luminance masking           * Luminance masking
892           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
# Line 711  Line 916 
916                          }                          }
917    
918  #undef OFFSET  #undef OFFSET
   
919                  }                  }
920    
921                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
922          }          }
923    
924            }
925    
926          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
927           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
928           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
929            pEnc->iFrameNum++;
930    
931            if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
         if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||  
932                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
933                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
934                  || image_mad(&pEnc->reference->image, &pEnc->current->image,                  || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,
935                                           pEnc->mbParam.edged_width, pEnc->mbParam.width,                                                                          &pEnc->mbParam, pEnc->iMaxKeyInterval,
936                                           pEnc->mbParam.height) > 30) {                                                                          (pFrame->intra < 0) ? pEnc->iFrameNum : 0,
937                                                                            bframes_count++))) {
938    
939                  /*                  /*
940                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
941                   */                   */
942                    if ((pEnc->current->global_flags & XVID_QUARTERPEL))
943                            pEnc->mbParam.m_quarterpel = 1;
944                    else
945                            pEnc->mbParam.m_quarterpel = 0;
946    
947                  /* ToDo : Remove dprintf calls */                  if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;
                 /*  
                    dprintf("--- IFRAME ---");  
                  */  
948    
949                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
950                            if (pFrame->quant_intra_matrix != NULL)
951                                    set_intra_matrix(pFrame->quant_intra_matrix);
952                            if (pFrame->quant_inter_matrix != NULL)
953                                    set_inter_matrix(pFrame->quant_inter_matrix);
954                    }
955    
956    
957                    DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
958                                    pEnc->bframenum_head, pEnc->bframenum_tail,
959                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
960    
961                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
962                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
963                    }
964    
965                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
966    
967                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
968    
969                            pEnc->bframenum_tail--;
970                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
971    
972                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
973                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
974                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
975                            }
976                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
977                            bframes_count = 0;
978    
979                            pFrame->intra = 0;
980    
981                    } else {
982    
983                            FrameCodeI(pEnc, &bs, &bits);
984                            bframes_count = 0;
985                  pFrame->intra = 1;                  pFrame->intra = 1;
986    
987                            pEnc->bframenum_dx50bvop = -1;
988                    }
989    
990                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
991    
992                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
993                            BitstreamPadAlways(&bs);
994                            input_valid = 0;
995                            goto ipvop_loop;
996                    }
997    
998                  /*                  /*
999                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
1000                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1001                   */                   */
1002          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1003    //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1004                  /*                  /*
1005                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1006                   */                   */
1007    
1008                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1009                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1010                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1011                   */  
1012                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1013                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1014                    }
1015    
1016                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1017                    bframes_count = 0;
1018                  pFrame->intra = 0;                  pFrame->intra = 0;
1019                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1020    
1021                    if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1022                            BitstreamPadAlways(&bs);
1023                            input_valid = 0;
1024                            goto ipvop_loop;
1025                    }
1026    
1027          } else {          } else {
1028                  /*                  /*
1029                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1030                   */                   */
1031    
1032                  /* ToDo : Remove dprintf calls */                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1033                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1034                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                    pEnc->bframenum_head,  
                    pEnc->bframenum_tail);  
                  */  
1035    
1036                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1037                          pEnc->current->quant =                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1038                                  ((pEnc->reference->quant +                                  pEnc->bquant_ratio) / 2) + pEnc->bquant_offset)/100;
1039                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;  
1040                  } else {                  } else {
1041                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1042                  }                  }
1043    
1044                    if (pEnc->current->quant < 1)
1045                            pEnc->current->quant = 1;
1046                    else if (pEnc->current->quant > 31)
1047                pEnc->current->quant = 31;
1048    
1049                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1050                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1051                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1052    
1053                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1054                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1055                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
1056    
1057                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1058    
1059                  pFrame->intra = 0;  // bframe report by koepi
1060                    pFrame->intra = 2;
1061                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
1062    
1063                  pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;                  input_valid = 0;
1064                  if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase) {                  goto bvop_loop;
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
                 }  
   
                 return XVID_ERR_OK;  
1065          }          }
1066    
1067          BitstreamPad(&bs);          BitstreamPad(&bs);
# Line 811  Line 1077 
1077    
1078          emms();          emms();
1079    
1080  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1081          psnr =          psnr =
1082                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1083                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 826  Line 1092 
1092                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1093          }          }
1094    
         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;  
   
1095          stop_global_timer();          stop_global_timer();
1096          write_timer();          write_timer();
1097    
1098            emms();
1099          return XVID_ERR_OK;          return XVID_ERR_OK;
1100  }  }
1101  #else  
1102    
1103    
1104  /*****************************************************************************  /*****************************************************************************
1105   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1106     *
1107     * Returned values :
1108     *    - XVID_ERR_OK     - no errors
1109     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1110     *                        format
1111   ****************************************************************************/   ****************************************************************************/
1112    
1113  int  int
1114  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1115                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 853  Line 1120 
1120          uint32_t bits;          uint32_t bits;
1121          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1122    
1123  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1124          float psnr;          float psnr;
1125          uint8_t temp[128];          uint8_t temp[128];
1126  #endif  #endif
# Line 871  Line 1138 
1138          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1139          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1140    
1141            inc_frame_num(pEnc);
1142    
1143            /* disable alternate scan flag if interlacing is not enabled */
1144            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1145                    !(pEnc->current->global_flags & XVID_INTERLACING))
1146            {
1147                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1148            }
1149    
1150          start_timer();          start_timer();
1151          if (image_input          if (image_input
1152                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1153                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1154                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1155          stop_conv_timer();          stop_conv_timer();
1156    
1157  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1158          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1159                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1160  #endif  #endif
# Line 893  Line 1169 
1169                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1170          }          }
1171    
1172            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1173                    pEnc->mbParam.m_quarterpel = 1;
1174            else
1175                    pEnc->mbParam.m_quarterpel = 0;
1176    
1177          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1178                  int *temp_dquants =                  int *temp_dquants =
1179                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 988  Line 1269 
1269                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1270                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1271          }          }
1272  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1273          psnr =          psnr =
1274                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1275                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 1005  Line 1286 
1286    
1287          return XVID_ERR_OK;          return XVID_ERR_OK;
1288  }  }
 #endif  
1289    
1290    
1291  static __inline void  static __inline void
# Line 1075  Line 1355 
1355                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1356                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1357                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1358                          VECTOR pred[4];                          VECTOR pred;
1359                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1360                          int vec;                          int vec;
1361    
1362                          pMB->mode =                          pMB->mode =
# Line 1097  Line 1376 
1376                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1377                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1378    
1379                                  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);  
1380    
1381                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1382                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1383                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1384                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1385                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1386                                  }                                  }
1387                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1388                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1117  Line 1395 
1395                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1396                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1397    
1398                                          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);  
1399    
1400                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1401                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1402                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1403                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1404                                  }                                  }
1405                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1406                          {                          {
# Line 1250  Line 1527 
1527          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1528          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1529          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1530            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1531          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1532    
1533          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1534          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1535    #define DIVX501B481P "DivX501b481p"
1536            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1537                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1538            }
1539    
1540    #define XVID_ID "XviD" XVID_BS_VERSION
1541            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1542    
1543            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1544            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1545    
1546          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1547    
# Line 1276  Line 1564 
1564                          stop_prediction_timer();                          stop_prediction_timer();
1565    
1566                          start_timer();                          start_timer();
1567                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1568                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1569                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1570                                    qcoeff[5*64+0]=0;
1571                            }
1572                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1573                          stop_coding_timer();                          stop_coding_timer();
1574                  }                  }
# Line 1297  Line 1590 
1590    
1591    
1592  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1593    #define BFRAME_SKIP_THRESHHOLD 30
1594    
1595  static int  static int
1596  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1311  Line 1605 
1605          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1606    
1607          int iLimit;          int iLimit;
1608          uint32_t x, y;          int x, y, k;
1609          int iSearchRange;          int iSearchRange;
1610          int bIntra;          int bIntra, skip_possible;
1611    
1612          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1613          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1614    
1615          start_timer();          start_timer();
1616          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1617                                     pEnc->mbParam.width, pEnc->mbParam.height,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                                    pEnc->current->global_flags & XVID_INTERLACING);  
1618          stop_edges_timer();          stop_edges_timer();
1619    
1620          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1621          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1622            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1623          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1624    
1625          if (!force_inter)          if (!force_inter)
# Line 1340  Line 1634 
1634                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1635                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1636                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1637                                                      pEnc->mbParam.m_quarterpel,
1638                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1639                  stop_inter_timer();                  stop_inter_timer();
1640          }          }
1641    
1642            if (pEnc->current->global_flags & XVID_GMC) {
1643    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1644                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1645                    pEnc->current->coding_type = S_VOP;
1646            } else
1647                    pEnc->current->coding_type = P_VOP;
1648    
1649          start_timer();          start_timer();
1650          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1651                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1652            if (bIntra == 0) {
1653                            pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);
1654                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1655                                                                                            &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1656                    }
1657    
1658          } else {          } else {
1659    
1660                  bIntra =                  bIntra =
1661                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1662                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
# Line 1355  Line 1664 
1664          }          }
1665          stop_motion_timer();          stop_motion_timer();
1666    
1667          if (bIntra == 1) {          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1668                  return FrameCodeI(pEnc, bs, pBits);  
1669          }          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1670                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1671    
         pEnc->current->coding_type = P_VOP;  
1672    
1673          if (vol_header)          if (vol_header)
1674                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1675    
1676          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1677            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1678            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1679    
1680          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1681    
1682          pEnc->sStat.iTextBits = 0;          pEnc->sStat.iTextBits = pEnc->sStat.iMvSum = pEnc->sStat.iMvCount =
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1683          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1684    
1685          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
# Line 1388  Line 1697 
1697                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1698                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1699                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1700                                                                             pEnc->mbParam.m_quarterpel,
1701                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1702                                  stop_comp_timer();                                  stop_comp_timer();
1703    
# Line 1405  Line 1715 
1715    
1716                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1717    
1718                                    if (pMB->mode != MODE_NOT_CODED)
1719                                  pMB->cbp =                                  pMB->cbp =
1720                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1721                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
# Line 1429  Line 1740 
1740                          }                          }
1741    
1742                          start_timer();                          start_timer();
1743    
1744                            /* Finished processing the MB, now check if to CODE or SKIP */
1745    
1746                            skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1747                                                            (pMB->dquant == NO_CHANGE);
1748    
1749                            if(pEnc->mbParam.m_quarterpel)
1750                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1751                            }
1752                            else
1753                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1754                            }
1755    
1756                            if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1757    
1758    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1759                                    int bSkip = 1;
1760    
1761                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1762                                            for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1763                                            {
1764                                                    int iSAD;
1765                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1766                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1767                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1768                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1769                                                    {       bSkip = 0;
1770                                                            break;
1771                                                    }
1772                                            }
1773    
1774                                    if (!bSkip)
1775                                    {
1776                                            VECTOR predMV;
1777                                            if(pEnc->mbParam.m_quarterpel) {
1778                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1779                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1780                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1781                                            }
1782                                            else {
1783                                                    predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1784                                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1785                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1786                                            }
1787                                            pMB->mode = MODE_INTER;
1788                                            pMB->cbp = 0;
1789                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1790                                    }
1791                                    else
1792                                    {
1793                                            pMB->mode = MODE_NOT_CODED;
1794                                            MBSkip(bs);
1795                                    }
1796    
1797                            } else {
1798                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1799                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1800                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1801                                            qcoeff[5*64+0]=0;
1802                                    }
1803                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1804                            }
1805    
1806                          stop_coding_timer();                          stop_coding_timer();
1807                  }                  }
1808          }          }
# Line 1448  Line 1821 
1821          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1822    
1823          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1824                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1825          {          {
1826                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1827                  iSearchRange *= 2;                  iSearchRange *= 2;
1828          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1829                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->sStat.fMvPrevSigma >= 0)
1830                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1831                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1832          {          {
1833                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1834                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 1463  Line 1836 
1836    
1837          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1838    
1839    #ifdef FRAMEDROP
1840            /* frame drop code */
1841            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1842            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1843                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1844            {
1845                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1846                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1847    
1848                    BitstreamReset(bs);
1849    
1850                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1851                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1852    
1853                    // copy reference frame details into the current frame
1854                    pEnc->current->quant = pEnc->reference->quant;
1855                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1856                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1857                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1858                    pEnc->current->fcode = pEnc->reference->fcode;
1859                    pEnc->current->bcode = pEnc->reference->bcode;
1860                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1861                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1862    
1863            }
1864    #endif
1865    
1866          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1867    
1868          return 0;                                       // inter          return 0;                                       // inter
1869  }  }
1870    
1871    
1872  #ifdef BFRAMES  static __inline void
 static void  
1873  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1874                     FRAMEINFO * frame,                     FRAMEINFO * frame,
1875                     Bitstream * bs,                     Bitstream * bs,
# Line 1479  Line 1878 
1878          int16_t dct_codes[6 * 64];          int16_t dct_codes[6 * 64];
1879          int16_t qcoeff[6 * 64];          int16_t qcoeff[6 * 64];
1880          uint32_t x, y;          uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1881    
1882          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1883          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1884    
1885    #ifdef BFRAMES_DEC_DEBUG
1886            FILE *fp;
1887            static char first=0;
1888    #define BFRAME_DEBUG    if (!first && fp){ \
1889                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1890            }
1891    
1892            if (!first){
1893                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1894            }
1895    #endif
1896    
1897            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1898    
1899          // forward          // forward
1900          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1901                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1902                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1903          start_timer();          start_timer();
1904          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1905                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1906                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1907          stop_inter_timer();          stop_inter_timer();
1908    
1909          // backward          // backward
1910          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_ref, pEnc->mbParam.edged_width,
1911                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1912                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1913          start_timer();          start_timer();
1914          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1915                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1916                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1917          stop_inter_timer();          stop_inter_timer();
1918    
1919          start_timer();          start_timer();
1920          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,  
1921            MotionEstimationBVOP(&pEnc->mbParam, frame,
1922                    ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1923                    ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1924                            pEnc->reference->mbs, f_ref,
1925                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1926                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1927                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1928    
1929    
# Line 1522  Line 1935 
1935             } */             } */
1936    
1937          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1938          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);  
1939            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1940            BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1941    
1942          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1943    
# Line 1533  Line 1948 
1948    
1949    
1950          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
                 // reset prediction  
   
                 forward.x = 0;  
                 forward.y = 0;  
                 backward.x = 0;  
                 backward.y = 0;  
   
1951                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1952                          MACROBLOCK *f_mb =                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1953                                  &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];                          int direction = pEnc->global & XVID_ALTERNATESCAN ? 2 : 0;
                         MACROBLOCK *b_mb =  
                                 &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
                         MACROBLOCK *mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];  
1954    
1955                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
1956                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1957                                  mb->mvs[0].x = 0;                                  //mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0;
                                 mb->mvs[0].y = 0;  
1958                                  continue;                                  continue;
1959                          }                          }
1960    
1961                            if (mb->mode != MODE_DIRECT_NONE_MV) {
1962                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1963                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1964                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1965                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
1966                                                                           dct_codes);                                                                           dct_codes);
1967    
1968                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1969                          mb->quant = frame->quant;                          mb->quant = frame->quant;
                         mb->cbp =  
                                 MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes,  
                                                                   qcoeff);  
                         //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);  
1970    
1971                                    mb->cbp =
1972                                            MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
1973    
1974                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1975                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
1976                                  mb->mode = 5;   // skipped                                          mb->mode = MODE_DIRECT_NONE_MV; // skipped
                         }  
   
                         if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {  
                                 mb->pmvs[0].x = mb->mvs[0].x - forward.x;  
                                 mb->pmvs[0].y = mb->mvs[0].y - forward.y;  
                                 forward.x = mb->mvs[0].x;  
                                 forward.y = mb->mvs[0].y;  
1977                          }                          }
   
                         if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_BACKWARD) {  
                                 mb->b_pmvs[0].x = mb->b_mvs[0].x - backward.x;  
                                 mb->b_pmvs[0].y = mb->b_mvs[0].y - backward.y;  
                                 backward.x = mb->b_mvs[0].x;  
                                 backward.y = mb->b_mvs[0].y;  
1978                          }                          }
 //          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);  
1979    
1980    #ifdef BFRAMES_DEC_DEBUG
1981            BFRAME_DEBUG
1982    #endif
1983                          start_timer();                          start_timer();
1984                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1985                                                   &pEnc->sStat);                                                   &pEnc->sStat, direction);
1986                          stop_coding_timer();                          stop_coding_timer();
1987                  }                  }
1988          }          }
# Line 1599  Line 1992 
1992          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1993    
1994          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1995    
1996    #ifdef BFRAMES_DEC_DEBUG
1997            if (!first){
1998                    first=1;
1999                    if (fp)
2000                            fclose(fp);
2001  }  }
2002  #endif  #endif
2003    }
2004    
2005    
2006    /*      in case internal output is needed somewhere... */
2007    /*      {
2008            FILE *filehandle;
2009            filehandle=fopen("last-b.pgm","wb");
2010            if (filehandle)
2011            {
2012                    fprintf(filehandle,"P5\n\n");           //
2013                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2014                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2015                    fclose(filehandle);
2016                    }
2017            }
2018    */

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

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