[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 198, Thu Jun 13 11:42:15 2002 UTC branches/dev-api-3/xvidcore/src/encoder.c revision 761, Sun Jan 5 03:30:44 2003 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.42 2002-06-13 11:42:15 edgomez Exp $   *  $Id: encoder.c,v 1.76.2.33 2003-01-05 03:30:44 suxen_drol 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 67  Line 73 
73   ****************************************************************************/   ****************************************************************************/
74    
75  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT
76  #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }  #define SWAP(_T_,A,B)    { _T_ tmp = A; A = B; B = tmp; }
77    
78  /*****************************************************************************  /*****************************************************************************
79   * Local function prototypes   * Local function prototypes
# 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 226  Line 222 
222          pEnc->mbParam.fbase = pParam->fbase;          pEnc->mbParam.fbase = pParam->fbase;
223          pEnc->mbParam.fincr = pParam->fincr;          pEnc->mbParam.fincr = pParam->fincr;
224    
225          pEnc->sStat.fMvPrevSigma = -1;          pEnc->mbParam.m_quant_type = H263_QUANT;
226    
227            pEnc->fMvPrevSigma = -1;
228    
229          /* Fill rate control parameters */          /* Fill rate control parameters */
230    
231          pEnc->bitrate = pParam->rc_bitrate;          pEnc->bitrate = pParam->rc_bitrate;
232    
233          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
234          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->mbParam.iMaxKeyInterval = pParam->max_key_interval;
235    
236          /* try to allocate frame memory */          /* try to allocate frame memory */
237    
# Line 257  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 273  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 292  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 325  Line 323 
323    
324    
325          /* B Frames specific init */          /* B Frames specific init */
 #ifdef BFRAMES  
326    
327            pEnc->mbParam.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->mbParam.bquant_ratio = pParam->bquant_ratio;
330            pEnc->mbParam.bquant_offset = pParam->bquant_offset;
331            pEnc->mbParam.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 371  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->queue = NULL;
377    
378          pEnc->mbParam.m_seconds = 0;  
379          pEnc->mbParam.m_ticks = 0;          if (pEnc->mbParam.max_bframes > 0) {
380  #endif                  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 393  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 410  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 471  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 488  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 511  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 537  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    /* convert pFrame->intra to coding_type */
650    static int intra2coding_type(int intra)
651    {
652            if (intra < 0)          return -1;
653            if (intra == 1)         return I_VOP;
654            if (intra == 2)         return B_VOP;
655    
656            return P_VOP;
657    }
658    
659    
660    
661  /*****************************************************************************  /*****************************************************************************
662   * Frame encoder entry point   * IPB frame encoder entry point
  *  
  * At this moment 2 versions coexist : one for IPB compatible encoder,  
  *                                     another one for the old IP encoder.  
663   *   *
664   * Returned values :   * Returned values :
665   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 549  Line 667 
667   *                        format   *                        format
668   ****************************************************************************/   ****************************************************************************/
669    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
670  int  int
671  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
672                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
673                             XVID_ENC_STATS * pResult)                             XVID_ENC_STATS * pResult)
674  {  {
675          uint16_t x, y;          uint16_t x, y;
676          Bitstream bs;          Bitstream bs;
677          uint32_t bits;          uint32_t bits, mode;
678    
679  #ifdef _DEBUG          int input_valid = 1;
680            int bframes_count = 0;
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 589  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(FRAMEINFO *, pEnc->current, pEnc->reference);
717    
718                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
719    
720                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
721                            bframes_count = 0;
722    
723                          BitstreamPad(&bs);                          BitstreamPad(&bs);
724                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
725                          pFrame->intra = 0;                          pFrame->intra = 0;
726    
727                            emms();
728    
729                          return XVID_ERR_OK;                          return XVID_ERR_OK;
730                  }                  }
731    
732                  /* ToDo : remove dprintf calls */  
733                  /*                  DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
734                     dprintf("--- BFRAME (flush) --- ");                                  pEnc->bframenum_head, pEnc->bframenum_tail,
735                   */                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
736    
737                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
738                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
739    
   
740                  BitstreamPad(&bs);                  BitstreamPad(&bs);
741                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
742                  pFrame->input_consumed = 0;                  pFrame->intra = 2;
                 pFrame->intra = 0;  
743    
744                  return XVID_ERR_OK;                  if (input_valid)
745          }                          queue_image(pEnc, pFrame);
746    
747          if (pFrame->image == NULL) {                  emms();
                 pFrame->length = 0;  
                 pFrame->input_consumed = 1;  
                 pFrame->intra = 0;  
748    
749                  return XVID_ERR_OK;                  return XVID_ERR_OK;
750          }          }
751    
752          if (pEnc->bframenum_head > 0) {          if (pEnc->bframenum_head > 0) {
753                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
754    
755                    /* write an empty marker to the bitstream.
756    
757                       for divx5 decoder compatibility, this marker must consist
758                       of a not-coded p-vop, with a time_base of zero, and time_increment
759                       indentical to the future-referece frame.
760                    */
761    
762                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
763                            int tmp;
764    
765                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
766                                    pEnc->bframenum_head, pEnc->bframenum_tail,
767                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
768    
769                            BitstreamPad(&bs);
770    
771                            tmp = pEnc->current->seconds;
772                            pEnc->current->seconds = 0; /* force time_base = 0 */
773                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
774                            pEnc->current->seconds = tmp;
775    
776                            pFrame->length = BitstreamLength(&bs);
777                            pFrame->intra = 4;
778    
779                            if (input_valid)
780                                    queue_image(pEnc, pFrame);
781    
782                            emms();
783    
784                            return XVID_ERR_OK;
785                    }
786          }          }
787    
         pEnc->flush_bframes = 0;  
788    
789          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  bvop_loop:
790           * Well there was a separation here so i put it in ANSI C  
791           * comment style :-)          if (pEnc->bframenum_dx50bvop != -1)
792           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */          {
793    
794                    SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
795                    SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
796    
797                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
798                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
799                    }
800    
801                    if (input_valid)
802                    {
803                            queue_image(pEnc, pFrame);
804                            input_valid = 0;
805                    }
806    
807            } else if (input_valid) {
808    
809                    SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
810    
811                    start_timer();
812                    if (image_input
813                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
814                            pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
815                    {
816                            emms();
817                            return XVID_ERR_FORMAT;
818                    }
819                    stop_conv_timer();
820    
821                    // queue input frame, and dequue next image
822                    if (pEnc->queue_size > 0)
823                    {
824                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
825                            if (pEnc->queue_head != pEnc->queue_tail)
826                            {
827                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
828                            }
829                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
830                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
831                    }
832    
833            } else if (pEnc->queue_size > 0) {
834    
835                    SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
836    
837                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
838                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
839                    pEnc->queue_size--;
840    
841            } else {
842    
843                    /* if nothing was encoded, write an 'ignore this frame' flag
844                       to the bitstream */
845    
846                    if (BitstreamPos(&bs) == 0) {
847    
848                            DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
849                                    pEnc->bframenum_head, pEnc->bframenum_tail,
850                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
851    
852                            BitstreamPutBits(&bs, 0x7f, 8);
853                            pFrame->intra = 5;
854                    }
855    
856          SWAP(pEnc->current, pEnc->reference);                  pFrame->length = BitstreamLength(&bs);
857                    emms();
858                    return XVID_ERR_OK;
859            }
860    
861            pEnc->flush_bframes = 0;
862    
863          emms();          emms();
864    
865            // only inc frame num, adapt quant, etc. if we havent seen it before
866            if (pEnc->bframenum_dx50bvop < 0 )
867            {
868                    mode = intra2coding_type(pFrame->intra);
869          if (pFrame->quant == 0)          if (pFrame->quant == 0)
870                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
871          else          else
872                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
873    
874          if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
875                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
876    
877          if (pEnc->current->quant > 31)          if (pEnc->current->quant > 31)
878                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
879    */
880          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
881          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
882          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
883          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
884          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
885          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
886    
887          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();  
888    
889  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
890          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
891                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
892  #endif  #endif
893    
894          emms();          emms();
895    
896                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
897                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
898                                    "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
899                    }
900    
901          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
902           * Luminance masking           * Luminance masking
903           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
# Line 709  Line 927 
927                          }                          }
928    
929  #undef OFFSET  #undef OFFSET
   
930                  }                  }
931    
932                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
933          }          }
934    
935            }
936    
937          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
938           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
939           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
940            pEnc->iFrameNum++;
941    
942            if (pEnc->iFrameNum == 0 || pEnc->bframenum_dx50bvop >= 0 ||
943                    (mode < 0 && pEnc->mbParam.iMaxKeyInterval > 0 &&
944                            pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))
945            {
946                    mode = I_VOP;
947            }else{
948                    mode = MEanalysis(&pEnc->reference->image, pEnc->current,
949                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
950                                            (mode < 0) ? pEnc->iFrameNum : 0,
951                                            bframes_count++);
952            }
953    
954          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 ||          if (mode == I_VOP) {
                 (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&  
                  pEnc->iFrameNum >= pEnc->iMaxKeyInterval)  
                 || image_mad(&pEnc->reference->image, &pEnc->current->image,  
                                          pEnc->mbParam.edged_width, pEnc->mbParam.width,  
                                          pEnc->mbParam.height) > 30) {  
955                  /*                  /*
956                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
957                   */                   */
958                    if ((pEnc->current->global_flags & XVID_QUARTERPEL))
959                            pEnc->mbParam.m_quarterpel = 1;
960                    else
961                            pEnc->mbParam.m_quarterpel = 0;
962    
963                  /* ToDo : Remove dprintf calls */                  if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;
                 /*  
                    dprintf("--- IFRAME ---");  
                  */  
964    
965                  FrameCodeI(pEnc, &bs, &bits);                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
966                            if (pFrame->quant_intra_matrix != NULL)
967                                    set_intra_matrix(pFrame->quant_intra_matrix);
968                            if (pFrame->quant_inter_matrix != NULL)
969                                    set_inter_matrix(pFrame->quant_inter_matrix);
970                    }
971    
972    
973                    DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
974                                    pEnc->bframenum_head, pEnc->bframenum_tail,
975                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
976    
977                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
978                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
979                    }
980    
981                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
982    
983                    if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
984    
985                            pEnc->bframenum_tail--;
986                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
987    
988                            SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
989                            if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
990                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
991                            }
992                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
993                            bframes_count = 0;
994    
995                            pFrame->intra = 0;
996    
997                    } else {
998    
999                            FrameCodeI(pEnc, &bs, &bits);
1000                            bframes_count = 0;
1001                  pFrame->intra = 1;                  pFrame->intra = 1;
1002    
1003                            pEnc->bframenum_dx50bvop = -1;
1004                    }
1005    
1006                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1007    
1008                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1009                            BitstreamPadAlways(&bs);
1010                            input_valid = 0;
1011                            goto ipvop_loop;
1012                    }
1013    
1014                  /*                  /*
1015                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
1016                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1017                   */                   */
1018          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          } else if (mode == P_VOP || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
1019                  /*                  /*
1020                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1021                   */                   */
1022    
1023                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1024                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1025                     dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1026                   */  
1027                    if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1028                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1029                    }
1030    
1031                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1032                    bframes_count = 0;
1033                  pFrame->intra = 0;                  pFrame->intra = 0;
1034                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1035          } else {  
1036                    if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1037                            BitstreamPadAlways(&bs);
1038                            input_valid = 0;
1039                            goto ipvop_loop;
1040                    }
1041    
1042            } else {        /* mode == B_VOP */
1043                  /*                  /*
1044                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1045                   */                   */
1046    
1047                  /* ToDo : Remove dprintf calls */                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1048                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1049                     dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                    pEnc->bframenum_head,  
                    pEnc->bframenum_tail);  
                  */  
1050    
1051                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1052                          pEnc->current->quant =                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1053                                  ((pEnc->reference->quant +                                  pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1054                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;  
1055                  } else {                  } else {
1056                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1057                  }                  }
1058    
1059                    if (pEnc->current->quant < 1)
1060                            pEnc->current->quant = 1;
1061                    else if (pEnc->current->quant > 31)
1062                pEnc->current->quant = 31;
1063    
1064                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1065                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1066                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1067    
1068                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1069                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1070                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
1071    
1072                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1073    
1074                  pFrame->intra = 0;  // bframe report by koepi
1075                    pFrame->intra = 2;
1076                  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;  
                 }  
1077    
1078                  return XVID_ERR_OK;                  input_valid = 0;
1079                    goto bvop_loop;
1080          }          }
1081    
1082          BitstreamPad(&bs);          BitstreamPad(&bs);
# Line 801  Line 1084 
1084    
1085          if (pResult) {          if (pResult) {
1086                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1087                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1088                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1089                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1090                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1091          }          }
1092    
1093          emms();          emms();
1094    
1095  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1096          psnr =          psnr =
1097                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1098                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 824  Line 1107 
1107                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1108          }          }
1109    
         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;  
   
1110          stop_global_timer();          stop_global_timer();
1111          write_timer();          write_timer();
1112    
1113            emms();
1114          return XVID_ERR_OK;          return XVID_ERR_OK;
1115  }  }
1116  #else  
1117    
1118    
1119  /*****************************************************************************  /*****************************************************************************
1120   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1121     *
1122     * Returned values :
1123     *    - XVID_ERR_OK     - no errors
1124     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1125     *                        format
1126   ****************************************************************************/   ****************************************************************************/
1127    
1128  int  int
1129  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1130                             XVID_ENC_FRAME * pFrame,                             XVID_ENC_FRAME * pFrame,
# Line 851  Line 1135 
1135          uint32_t bits;          uint32_t bits;
1136          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1137    
1138  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1139          float psnr;          float psnr;
1140          uint8_t temp[128];          uint8_t temp[128];
1141  #endif  #endif
# Line 863  Line 1147 
1147          ENC_CHECK(pFrame->bitstream);          ENC_CHECK(pFrame->bitstream);
1148          ENC_CHECK(pFrame->image);          ENC_CHECK(pFrame->image);
1149    
1150          SWAP(pEnc->current, pEnc->reference);          SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
1151    
1152          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1153          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1154          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1155    
1156            inc_frame_num(pEnc);
1157    
1158            /* disable alternate scan flag if interlacing is not enabled */
1159            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1160                    !(pEnc->current->global_flags & XVID_INTERLACING))
1161            {
1162                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1163            }
1164    
1165          start_timer();          start_timer();
1166          if (image_input          if (image_input
1167                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1168                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1169                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1170          stop_conv_timer();          stop_conv_timer();
1171    
1172  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1173          image_copy(&pEnc->sOriginal, &pEnc->current->image,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1174                             pEnc->mbParam.edged_width, pEnc->mbParam.height);                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
1175  #endif  #endif
# Line 891  Line 1184 
1184                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1185          }          }
1186    
1187            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1188                    pEnc->mbParam.m_quarterpel = 1;
1189            else
1190                    pEnc->mbParam.m_quarterpel = 0;
1191    
1192          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1193                  int *temp_dquants =                  int *temp_dquants =
1194                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 952  Line 1250 
1250    
1251          if (pFrame->intra < 0) {          if (pFrame->intra < 0) {
1252                  if ((pEnc->iFrameNum == 0)                  if ((pEnc->iFrameNum == 0)
1253                          || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->mbParam.iMaxKeyInterval > 0)
1254                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {                                  && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {
1255                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1256                  } else {                  } else {
1257                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
# Line 974  Line 1272 
1272    
1273          if (pResult) {          if (pResult) {
1274                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1275                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1276                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1277                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1278                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1279          }          }
1280    
1281          emms();          emms();
# Line 986  Line 1284 
1284                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1285                                                    pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
1286          }          }
1287  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1288          psnr =          psnr =
1289                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1290                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
# Line 1003  Line 1301 
1301    
1302          return XVID_ERR_OK;          return XVID_ERR_OK;
1303  }  }
 #endif  
1304    
1305    
1306  static __inline void  static __inline void
# Line 1073  Line 1370 
1370                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1371                          MVBLOCKHINT *bhint =                          MVBLOCKHINT *bhint =
1372                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1373                          VECTOR pred[4];                          VECTOR pred;
1374                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1375                          int vec;                          int vec;
1376    
1377                          pMB->mode =                          pMB->mode =
# Line 1095  Line 1391 
1391                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                  tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1392                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                  tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1393    
1394                                  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);  
1395    
1396                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
1397                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1398                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1399                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1400                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1401                                  }                                  }
1402                          } else if (pMB->mode == MODE_INTER4V) {                          } else if (pMB->mode == MODE_INTER4V) {
1403                                  for (vec = 0; vec < 4; ++vec) {                                  for (vec = 0; vec < 4; ++vec) {
# Line 1115  Line 1410 
1410                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;                                          tmp.x -= (tmp.x >= high) ? high * 2 : 0;
1411                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;                                          tmp.y -= (tmp.y >= high) ? high * 2 : 0;
1412    
1413                                          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);  
1414    
1415                                          pMB->mvs[vec].x = tmp.x;                                          pMB->mvs[vec].x = tmp.x;
1416                                          pMB->mvs[vec].y = tmp.y;                                          pMB->mvs[vec].y = tmp.y;
1417                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1418                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
1419                                  }                                  }
1420                          } else                          // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
1421                          {                          {
# Line 1239  Line 1533 
1533                     Bitstream * bs,                     Bitstream * bs,
1534                     uint32_t * pBits)                     uint32_t * pBits)
1535  {  {
1536            int mb_width = pEnc->mbParam.mb_width;
1537            int mb_height = pEnc->mbParam.mb_height;
1538    
1539          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1540          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1541    
1542          uint16_t x, y;          uint16_t x, y;
1543    
1544            if ((pEnc->current->global_flags & XVID_REDUCED))
1545            {
1546                    mb_width = (pEnc->mbParam.width + 31) / 32;
1547                    mb_height = (pEnc->mbParam.height + 31) / 32;
1548    
1549                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1550                    /* XXX: setedges is overkill */
1551                    start_timer();
1552                    image_setedges(&pEnc->current->image,
1553                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1554                            pEnc->mbParam.width, pEnc->mbParam.height);
1555                    stop_edges_timer();
1556            }
1557    
1558          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1559          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1560          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1561            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1562          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1563    
1564          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1565          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1566            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1567            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1568    
1569          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1570    
1571          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1572          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1573          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1574    
1575          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1576                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1577                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1578                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1579    
# Line 1274  Line 1587 
1587                          stop_prediction_timer();                          stop_prediction_timer();
1588    
1589                          start_timer();                          start_timer();
1590                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          if (pEnc->current->global_flags & XVID_GREYSCALE)
1591                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1592                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1593                                    qcoeff[5*64+0]=0;
1594                            }
1595                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1596                          stop_coding_timer();                          stop_coding_timer();
1597                  }                  }
1598    
1599            if ((pEnc->current->global_flags & XVID_REDUCED))
1600            {
1601                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1602                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1603                            16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);
1604            }
1605          emms();          emms();
1606    
1607          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1608          pEnc->sStat.fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1609          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1610    
1611          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
# Line 1295  Line 1617 
1617    
1618    
1619  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1620    #define BFRAME_SKIP_THRESHHOLD 30
1621    
1622  static int  static int
1623  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1308  Line 1631 
1631          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1632          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1633    
1634            int mb_width = pEnc->mbParam.mb_width;
1635            int mb_height = pEnc->mbParam.mb_height;
1636    
1637          int iLimit;          int iLimit;
1638          uint32_t x, y;          int x, y, k;
1639          int iSearchRange;          int iSearchRange;
1640          int bIntra;          int bIntra, skip_possible;
1641    
1642          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1643          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1644    
1645            if ((pEnc->current->global_flags & XVID_REDUCED))
1646            {
1647                    mb_width = (pEnc->mbParam.width + 31) / 32;
1648                    mb_height = (pEnc->mbParam.height + 31) / 32;
1649            }
1650    
1651    
1652          start_timer();          start_timer();
1653          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1654                                     pEnc->mbParam.width, pEnc->mbParam.height,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                                    pEnc->current->global_flags & XVID_INTERLACING);  
1655          stop_edges_timer();          stop_edges_timer();
1656    
1657          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1658          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1659            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1660          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1661    
1662          if (!force_inter)          if (!force_inter)
1663                  iLimit =                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
                         (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *  
                                    INTRA_THRESHOLD);  
1664          else          else
1665                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1666    
1667          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1668                  start_timer();                  start_timer();
1669                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1670                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1671                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1672                                                      pEnc->mbParam.m_quarterpel,
1673                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1674                  stop_inter_timer();                  stop_inter_timer();
1675          }          }
1676    
1677            if (pEnc->current->global_flags & XVID_GMC) {
1678    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1679                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1680                    pEnc->current->coding_type = S_VOP;
1681            } else
1682                    pEnc->current->coding_type = P_VOP;
1683    
1684          start_timer();          start_timer();
1685          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1686                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1687          } else {          else
1688    
1689                  bIntra =                  bIntra =
1690                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1691                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1692                                                           iLimit);                                                           iLimit);
1693          }  
1694          stop_motion_timer();          stop_motion_timer();
1695    
1696          if (bIntra == 1) {          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1697                  return FrameCodeI(pEnc, bs, pBits);  
1698          }          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1699                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1700    
         pEnc->current->coding_type = P_VOP;  
1701    
1702          if (vol_header)          if (vol_header)
1703                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1704    
1705          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1706            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1707            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1708    
1709          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1710    
1711          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1712          pEnc->sStat.iMvSum = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
         pEnc->sStat.iMvCount = 0;  
         pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;  
1713    
1714          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1715                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1716                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1717                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1718    
# Line 1386  Line 1726 
1726                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1727                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1728                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1729                                                                             pEnc->mbParam.m_quarterpel,
1730                                                                             (pEnc->current->global_flags & XVID_REDUCED),
1731                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1732                                  stop_comp_timer();                                  stop_comp_timer();
1733    
# Line 1403  Line 1745 
1745    
1746                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1747    
1748                                    if (pMB->mode != MODE_NOT_CODED)
1749                                  pMB->cbp =                                  pMB->cbp =
1750                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1751                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
# Line 1417  Line 1760 
1760                          stop_prediction_timer();                          stop_prediction_timer();
1761    
1762                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
1763                                  pEnc->sStat.kblks++;                                  pEnc->current->sStat.kblks++;
1764                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1765                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1766                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1767                                  pEnc->sStat.mblks++;                                  pEnc->current->sStat.mblks++;
1768                          } else {                          } else {
1769                                  pEnc->sStat.ublks++;                                  pEnc->current->sStat.ublks++;
1770                          }                          }
1771    
1772                          start_timer();                          start_timer();
1773                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);  
1774                            /* Finished processing the MB, now check if to CODE or SKIP */
1775    
1776                            skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1777                                                            (pMB->dquant == NO_CHANGE);
1778    
1779                            if(pEnc->mbParam.m_quarterpel)
1780                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1781                            }
1782                            else
1783                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1784                            }
1785    
1786                            if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1787    
1788    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1789                                    int bSkip = 1;
1790    
1791                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1792                                            for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1793                                            {
1794                                                    int iSAD;
1795                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1796                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1797                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1798                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1799                                                    {       bSkip = 0;
1800                                                            break;
1801                                                    }
1802                                            }
1803    
1804                                    if (!bSkip)
1805                                    {
1806                                            VECTOR predMV;
1807                                            if(pEnc->mbParam.m_quarterpel) {
1808                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1809                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1810                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1811                                            }
1812                                            else {
1813                                                    predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1814                                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1815                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1816                                            }
1817                                            pMB->mode = MODE_INTER;
1818                                            pMB->cbp = 0;
1819                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1820                                    }
1821                                    else
1822                                    {
1823                                            pMB->mode = MODE_NOT_CODED;
1824                                            MBSkip(bs);
1825                                    }
1826    
1827                            } else {
1828                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1829                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1830                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1831                                            qcoeff[5*64+0]=0;
1832                                    }
1833                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1834                            }
1835    
1836                          stop_coding_timer();                          stop_coding_timer();
1837                  }                  }
1838          }          }
1839    
1840            if ((pEnc->current->global_flags & XVID_REDUCED))
1841            {
1842                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1843                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1844                            16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);
1845            }
1846    
1847          emms();          emms();
1848    
1849          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1850                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1851          }          }
1852    
1853          if (pEnc->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
1854                  pEnc->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
1855    
1856          fSigma = (float) sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
1857    
1858          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1859    
1860          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1861                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1862          {          {
1863                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1864                  iSearchRange *= 2;                  iSearchRange *= 2;
1865          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1866                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1867                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1868                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1869          {          {
1870                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1871                  iSearchRange /= 2;                  iSearchRange /= 2;
1872          }          }
1873    
1874          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1875    
1876            /* frame drop code */
1877            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1878            if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1879                    (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1880            {
1881                    pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1882                    pEnc->current->sStat.ublks = mb_width * mb_height;
1883    
1884                    BitstreamReset(bs);
1885    
1886                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1887                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1888    
1889                    // copy reference frame details into the current frame
1890                    pEnc->current->quant = pEnc->reference->quant;
1891                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1892                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1893                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1894                    pEnc->current->fcode = pEnc->reference->fcode;
1895                    pEnc->current->bcode = pEnc->reference->bcode;
1896                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1897                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1898            }
1899    
1900            /* XXX: debug
1901            {
1902                    char s[100];
1903                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1904                    image_dump_yuvpgm(&pEnc->current->image,
1905                            pEnc->mbParam.edged_width,
1906                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1907    
1908                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1909                    image_dump_yuvpgm(&pEnc->reference->image,
1910                            pEnc->mbParam.edged_width,
1911                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1912            }
1913            */
1914    
1915    
1916          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1917    
# Line 1467  Line 1919 
1919  }  }
1920    
1921    
 #ifdef BFRAMES  
1922  static void  static void
1923  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1924                     FRAMEINFO * frame,                     FRAMEINFO * frame,
1925                     Bitstream * bs,                     Bitstream * bs,
1926                     uint32_t * pBits)                     uint32_t * pBits)
1927  {  {
1928          int16_t dct_codes[6 * 64];          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1929          int16_t qcoeff[6 * 64];          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1930          uint32_t x, y;          uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1931    
1932          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1933          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1934    
1935    #ifdef BFRAMES_DEC_DEBUG
1936            FILE *fp;
1937            static char first=0;
1938    #define BFRAME_DEBUG    if (!first && fp){ \
1939                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1940            }
1941    
1942            pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */
1943    
1944            if (!first){
1945                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1946            }
1947    #endif
1948    
1949            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1950    
1951          // forward          // forward
1952          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1953                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1954                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1955          start_timer();          start_timer();
1956          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,
1957                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1958                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1959          stop_inter_timer();          stop_inter_timer();
1960    
1961          // backward          // backward
1962          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_ref, pEnc->mbParam.edged_width,
1963                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1964                                     pEnc->mbParam.height,                                     pEnc->mbParam.height);
                                    frame->global_flags & XVID_INTERLACING);  
1965          start_timer();          start_timer();
1966          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1967                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1968                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1969          stop_inter_timer();          stop_inter_timer();
1970    
1971          start_timer();          start_timer();
1972          MotionEstimationBVOP(&pEnc->mbParam, frame, pEnc->reference->mbs, f_ref,  
1973            MotionEstimationBVOP(&pEnc->mbParam, frame,
1974                    ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1975                    ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1976                            pEnc->reference->mbs, f_ref,
1977                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1978                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1979                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1980    
1981    
# Line 1520  Line 1987 
1987             } */             } */
1988    
1989          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1990          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);  
1991            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1992            BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1993    
1994          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1995    
1996          pEnc->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
1997          pEnc->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
1998          pEnc->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
1999          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
2000    
2001    
2002          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;  
   
2003                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
2004                          MACROBLOCK *f_mb =                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
2005                                  &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];                          int direction = pEnc->mbParam.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];  
2006    
2007                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
2008                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
2009                                  mb->mvs[0].x = 0;                                  //mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0;
                                 mb->mvs[0].y = 0;  
2010                                  continue;                                  continue;
2011                          }                          }
2012    
2013                            if (mb->mode != MODE_DIRECT_NONE_MV) {
2014                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
2015                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
2016                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
2017                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
2018                                                                           dct_codes);                                                                           dct_codes);
2019    
2020                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
2021                          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);  
   
2022    
2023                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  mb->cbp =
2024                                  && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {                                          MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
                                 mb->mode = 5;   // skipped  
                         }  
2025    
2026                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
2027                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
2028                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                          mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 forward.x = mb->mvs[0].x;  
                                 forward.y = mb->mvs[0].y;  
2029                          }                          }
   
                         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;  
2030                          }                          }
 //          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);  
2031    
2032    #ifdef BFRAMES_DEC_DEBUG
2033            BFRAME_DEBUG
2034    #endif
2035                          start_timer();                          start_timer();
2036                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
2037                                                   &pEnc->sStat);                                                   &frame->sStat, direction);
2038                          stop_coding_timer();                          stop_coding_timer();
2039                  }                  }
2040          }          }
# Line 1597  Line 2044 
2044          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
2045    
2046          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
2047    
2048    #ifdef BFRAMES_DEC_DEBUG
2049            if (!first){
2050                    first=1;
2051                    if (fp)
2052                            fclose(fp);
2053  }  }
2054  #endif  #endif
2055    }
2056    
2057    
2058    /*      in case internal output is needed somewhere... */
2059    /*      {
2060            FILE *filehandle;
2061            filehandle=fopen("last-b.pgm","wb");
2062            if (filehandle)
2063            {
2064                    fprintf(filehandle,"P5\n\n");           //
2065                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2066                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2067                    fclose(filehandle);
2068                    }
2069            }
2070    */

Legend:
Removed from v.198  
changed lines
  Added in v.761

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