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

Diff of /trunk/xvidcore/vfw/src/codec.c

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

revision 1588, Sat Jan 8 12:28:48 2005 UTC revision 1650, Sat Oct 22 22:32:44 2005 UTC
# Line 423  Line 423 
423          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
424          int i;          int i;
425          HANDLE hFile;          HANDLE hFile;
426      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
427        &codec->config.quality_user : &quality_table[codec->config.quality];
428    
429          CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */          CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
430          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
# Line 504  Line 506 
506    
507                  /* VBV */                  /* VBV */
508                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
509                  pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4;                  pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
510                  pass2.vbv_maxrate = 1000*profiles[codec->config.profile].max_bitrate;                  pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
511                  pass2.vbv_peakrate = 10000000; /* 10mbps -- fixme */  
512        // XXX: xvidcore current provides a "peak bits over 3secs" constraint.
513        //      according to the latest dxn literature, a 1sec constraint is now used
514        pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate * 3;
515    
516                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
517                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
# Line 553  Line 558 
558          create.fincr = codec->fincr;          create.fincr = codec->fincr;
559          create.fbase = codec->fbase;          create.fbase = codec->fbase;
560    
561          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
562    
563          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
564          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
565          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
566          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
567          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
568          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
569    
570          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
571    
572        /* dxn: prevent bframes usage if interlacing is selected */
573        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
574                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
575                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
576                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 570  Line 578 
578                  if (codec->config.packed)                  if (codec->config.packed)
579                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
580    
                 if (codec->config.closed_gov)  
581                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
582    
583          /* dxn: restrict max bframes and enable packed bframes */
584          if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
585    
586            if (create.max_bframes > profiles[codec->config.profile].xvid_max_bframes)
587              create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
588    
589            create.global |= XVID_GLOBAL_PACKED;
590          }
591          }          }
592            }
593    
594      /* dxn: always write divx5 userdata */
595      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
596        create.global |= XVID_GLOBAL_DIVX5_USERDATA;
597    
598          create.frame_drop_ratio = codec->config.frame_drop_ratio;          create.frame_drop_ratio = quality_preset->frame_drop_ratio;
599    
600          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
601    
# Line 663  Line 683 
683          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
684          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
685          int length;          int length;
686      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
687        &codec->config.quality_user : &quality_table[codec->config.quality];
688    
689          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
690          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 685  Line 707 
707                  }                  }
708          }          }
709    
         if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&  
                 codec->config.reduced_resolution) {  
                 frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;  
                 frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */  
         }  
   
710          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
711                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
712                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 704  Line 720 
720          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
721                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
722    
723          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
724      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
725        frame.par = XVID_PAR_11_VGA;
726      } else if (codec->config.ar_mode == 0) { /* PAR */
727                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
728                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
729                  } else {                  } else {
# Line 731  Line 750 
750          if (codec->config.vop_debug)          if (codec->config.vop_debug)
751                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
752    
753          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
754                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
755          }          }
756    
757          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
758              if (quality_preset->motion_search > 4)
759                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
760      }
761    
762          if (codec->config.chromame)          if (quality_preset->chromame)
763                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
764    
765          if (codec->config.turbo)          if (quality_preset->turbo)
766                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
767                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
768                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
769    
770          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
771    
772          if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;          if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
773    
774    
775          switch (codec->config.vhq_mode)          switch (quality_preset->vhq_mode)
776          {          {
777          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
778                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 809  Line 830 
830          }          }
831    
832          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
833          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
834                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
835    
836          /* frame-based stuff */          /* frame-based stuff */
# Line 969  Line 990 
990          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
991          init.version = XVID_VERSION;          init.version = XVID_VERSION;
992          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
993      init.debug = codec->config.debug;
994          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
995    
996          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));

Legend:
Removed from v.1588  
changed lines
  Added in v.1650

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