[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 1510, Sun Jul 18 12:45:57 2004 UTC revision 1607, Sun Mar 27 03:59:42 2005 UTC
# Line 502  Line 502 
502                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
503                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
504    
505                    /* VBV */
506                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
507                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
508                    pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
509    
510        // XXX: xvidcore current provides a "peak bits over 3secs" constraint.
511        //      according to the latest dxn literature, a 1sec constraint is now used
512        pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate * 3;
513    
514                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
515                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
516                  create.num_plugins++;                  create.num_plugins++;
# Line 557  Line 566 
566          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = codec->config.max_bquant;
567    
568          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
569    
570        /* dxn: prevent bframes usage if interlacing is selected */
571        if (!((profiles[codec->config.profile].flags & PROFILE_DXN) && codec->config.interlacing)) {
572                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
573                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
574                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 564  Line 576 
576                  if (codec->config.packed)                  if (codec->config.packed)
577                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
578    
                 if (codec->config.closed_gov)  
579                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
580    
581          /* dxn: restrict max bframes and enable packed bframes */
582          if ((profiles[codec->config.profile].flags & PROFILE_DXN)) {
583    
584            if (create.max_bframes > profiles[codec->config.profile].dxn_max_bframes)
585              create.max_bframes = profiles[codec->config.profile].dxn_max_bframes;
586    
587            create.global |= XVID_GLOBAL_PACKED;
588          }
589          }          }
590            }
591    
592      /* dxn: always write divx5 userdata */
593      if ((profiles[codec->config.profile].flags & PROFILE_DXN))
594        create.global |= XVID_GLOBAL_DIVX5_USERDATA;
595    
596          create.frame_drop_ratio = codec->config.frame_drop_ratio;          create.frame_drop_ratio = codec->config.frame_drop_ratio;
597    
# Line 637  Line 661 
661                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
662          }          }
663    
664            if (config->zones[i].cartoon_mode) {
665                    frame->vop_flags |= XVID_VOP_CARTOON;
666                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
667            }
668    
669          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
670                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
671          }          }
# Line 674  Line 703 
703                  }                  }
704          }          }
705    
         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 */  
         }  
   
706          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
707                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
708                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 693  Line 716 
716          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
717                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
718    
719          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
720      if ((profiles[codec->config.profile].flags & PROFILE_DXN)) {
721        frame.par = XVID_PAR_11_VGA;
722      } else if (codec->config.ar_mode == 0) { /* PAR */
723                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
724                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
725                  } else {                  } else {
# Line 724  Line 750 
750                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
751          }          }
752    
753      if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
754          if (codec->config.motion_search > 4)          if (codec->config.motion_search > 4)
755                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
756      }
757    
758          if (codec->config.chromame)          if (codec->config.chromame)
759                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
760    
         if (codec->config.cartoon_mode) {  
                 frame.vop_flags |= XVID_VOP_CARTOON;  
                 frame.motion |= XVID_ME_DETECT_STATIC_MOTION;  
         }  
   
761          if (codec->config.turbo)          if (codec->config.turbo)
762                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
763                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
# Line 963  Line 986 
986          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
987          init.version = XVID_VERSION;          init.version = XVID_VERSION;
988          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
989      init.debug = codec->config.debug;
990          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
991    
992          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
# Line 1079  Line 1103 
1103                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1104                  frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);                  frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);
1105                  if (frame.output.csp == XVID_CSP_I420 || frame.output.csp == XVID_CSP_YV12)                  if (frame.output.csp == XVID_CSP_I420 || frame.output.csp == XVID_CSP_YV12)
1106                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1107          }          }
1108          else          else
1109          {          {

Legend:
Removed from v.1510  
changed lines
  Added in v.1607

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