[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 1592, Mon Jan 10 05:01:01 2005 UTC revision 1816, Fri Nov 28 11:56:01 2008 UTC
# Line 421  Line 421 
421          xvid_plugin_single_t single;          xvid_plugin_single_t single;
422          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
423          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
424        xvid_gbl_info_t info;
425          int i;          int i;
426          HANDLE hFile;          HANDLE hFile;
427      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
428        &codec->config.quality_user : &quality_table[codec->config.quality];
429    
430          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 */
431          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
# Line 440  Line 443 
443          init.debug = codec->config.debug;          init.debug = codec->config.debug;
444          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
445    
446            memset(&info, 0, sizeof(info));
447            info.version = XVID_VERSION;
448            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
449    
450          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
451          create.version = XVID_VERSION;          create.version = XVID_VERSION;
452    
# Line 504  Line 511 
511    
512                  /* VBV */                  /* VBV */
513                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
514                  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% */
515                  pass2.vbv_maxrate = 1000*profiles[codec->config.profile].max_bitrate;                  pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
516                  pass2.vbv_peakrate = 10000000; /* 10mbps -- fixme */  
517        // XXX: xvidcore current provides a "peak bits over 3secs" constraint.
518        //      according to the latest dxn literature, a 1sec constraint is now used
519        pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate * 3;
520    
521                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
522                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
# Line 553  Line 563 
563          create.fincr = codec->fincr;          create.fincr = codec->fincr;
564          create.fbase = codec->fbase;          create.fbase = codec->fbase;
565    
566          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
567    
568          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
569          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
570          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
571          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
572          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
573          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
574    
575          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
576    
577        /* dxn: prevent bframes usage if interlacing is selected */
578        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
579                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
580                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
581                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 572  Line 585 
585    
586                  create.global |= XVID_GLOBAL_CLOSED_GOP;                  create.global |= XVID_GLOBAL_CLOSED_GOP;
587    
588          }        /* restrict max bframes */
589          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
590            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
591    
592          create.frame_drop_ratio = codec->config.frame_drop_ratio;        /* DXN: enable packed bframes */
593          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
594            create.global |= XVID_GLOBAL_PACKED;
595          }
596        }
597            }
598    
599        /* dxn: always write divx5 userdata */
600        if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
601          create.global |= XVID_GLOBAL_DIVX5_USERDATA;
602    
603            create.frame_drop_ratio = quality_preset->frame_drop_ratio;
604    
605        /* Encoder threads */
606        if (codec->config.num_threads == 0)
607            create.num_threads = info.num_threads; /* Autodetect */
608        else if (codec->config.num_threads == 1)
609            create.num_threads = -1; /* Single-threaded, disable SMP */
610        else
611          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
612    
613    
614          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
615          {          {
616          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 609  Line 642 
642    
643  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
644  {  {
645      if (codec==NULL)
646        return ICERR_OK;
647    
648          if (codec->m_hdll != NULL) {          if (codec->m_hdll != NULL) {
649                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
650                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
# Line 662  Line 698 
698          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
699          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
700          int length;          int length;
701      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
702        &codec->config.quality_user : &quality_table[codec->config.quality];
703    
704          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
705          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 697  Line 735 
735          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
736                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
737    
738          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
739      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
740        frame.par = XVID_PAR_11_VGA;
741      } else if (codec->config.ar_mode == 0) { /* PAR */
742                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
743                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
744                  } else {                  } else {
# Line 724  Line 765 
765          if (codec->config.vop_debug)          if (codec->config.vop_debug)
766                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
767    
768          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
769                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
770          }          }
771    
772          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
773              if (quality_preset->motion_search > 4)
774                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
775      }
776    
777          if (codec->config.chromame)          if (quality_preset->chromame)
778                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
779    
780          if (codec->config.turbo)          if (quality_preset->turbo)
781                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
782                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
783                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
784    
785          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
786    
787          if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;          if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
788    
789    
790          switch (codec->config.vhq_mode)          switch (quality_preset->vhq_mode)
791          {          {
792          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
793                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 802  Line 845 
845          }          }
846    
847          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
848          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
849                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
850    
851          /* frame-based stuff */          /* frame-based stuff */
# Line 962  Line 1005 
1005          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
1006          init.version = XVID_VERSION;          init.version = XVID_VERSION;
1007          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
1008      init.debug = codec->config.debug;
1009          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
1010    
1011          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));

Legend:
Removed from v.1592  
changed lines
  Added in v.1816

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