[svn] / branches / release-1_3-branch / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Diff of /branches/release-1_3-branch/xvidcore/vfw/src/codec.c

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

revision 1398, Fri Apr 2 21:29:21 2004 UTC revision 1887, Mon May 10 13:50:46 2010 UTC
# Line 348  Line 348 
348          return 0;          return 0;
349  }  }
350    
 static int exit_dll(CODEC* codec)  
 {  
         if(codec->m_hdll)  
         {  
                 FreeLibrary(codec->m_hdll);  
                 codec->m_hdll = NULL;  
                 codec->xvid_global_func = NULL;  
                 codec->xvid_encore_func = NULL;  
                 codec->xvid_decore_func = NULL;  
                 codec->xvid_plugin_single_func = NULL;  
                 codec->xvid_plugin_2pass1_func = NULL;  
                 codec->xvid_plugin_2pass2_func = NULL;  
                 codec->xvid_plugin_lumimasking_func = NULL;  
                 codec->xvid_plugin_psnr_func = NULL;  
         }  
         return 0;  
 }  
   
351  /* constant-quant zones for fixed quant encoding */  /* constant-quant zones for fixed quant encoding */
352  static void  static void
353  prepare_cquant_zones(CONFIG * config) {  prepare_cquant_zones(CONFIG * config) {
# Line 439  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_plugin_lumimasking_t masking;
425        xvid_gbl_info_t info;
426          int i;          int i;
427          HANDLE hFile;          HANDLE hFile;
428      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
429        &codec->config.quality_user : &quality_table[codec->config.quality];
430    
431          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 */
432          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
# Line 458  Line 444 
444          init.debug = codec->config.debug;          init.debug = codec->config.debug;
445          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
446    
447            memset(&info, 0, sizeof(info));
448            info.version = XVID_VERSION;
449            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
450    
451          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
452          create.version = XVID_VERSION;          create.version = XVID_VERSION;
453    
# Line 520  Line 510 
510                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
511                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
512    
513                    /* VBV */
514                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
515                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
516                    pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
517    
518        // XXX: xvidcore current provides a "peak bits over 3secs" constraint.
519        //      according to the latest dxn literature, a 1sec constraint is now used
520        pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate * 3;
521    
522                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
523                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
524                  create.num_plugins++;                  create.num_plugins++;
# Line 548  Line 547 
547          }          }
548    
549          /* lumimasking plugin */          /* lumimasking plugin */
550          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && (codec->config.lum_masking>0)) {
551                    memset(&masking, 0, sizeof(masking));
552                    masking.method = (codec->config.lum_masking==2);
553                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
554                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = &masking;
555                  create.num_plugins++;                  create.num_plugins++;
556          }          }
557    
# Line 565  Line 566 
566          create.fincr = codec->fincr;          create.fincr = codec->fincr;
567          create.fbase = codec->fbase;          create.fbase = codec->fbase;
568    
569          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
570    
571          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
572          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
573          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
574          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
575          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
576          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
577    
578          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
579    
580        /* dxn: prevent bframes usage if interlacing is selected */
581        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
582                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
583                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
584                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 582  Line 586 
586                  if (codec->config.packed)                  if (codec->config.packed)
587                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
588    
                 if (codec->config.closed_gov)  
589                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
590    
591          }        /* restrict max bframes */
592          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
593            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
594    
595          create.frame_drop_ratio = codec->config.frame_drop_ratio;        /* DXN: enable packed bframes */
596          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
597            create.global |= XVID_GLOBAL_PACKED;
598          }
599        }
600            }
601    
602        /* dxn: always write divx5 userdata */
603        if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
604          create.global |= XVID_GLOBAL_DIVX5_USERDATA;
605    
606            create.frame_drop_ratio = quality_preset->frame_drop_ratio;
607    
608        /* Encoder threads */
609        if (codec->config.num_threads == 0)
610            create.num_threads = info.num_threads; /* Autodetect */
611        else if (codec->config.num_threads == 1)
612            create.num_threads = -1; /* Single-threaded, disable SMP */
613        else
614          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
615    
616    
617          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
618          {          {
619          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 606  Line 629 
629                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
630          }          }
631    
632            free(create.zones);
633          codec->ehandle = create.handle;          codec->ehandle = create.handle;
634          codec->framenum = 0;          codec->framenum = 0;
635          codec->keyspacing = 0;          codec->keyspacing = 0;
# Line 621  Line 645 
645    
646  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
647  {  {
648      if (codec==NULL)
649        return ICERR_OK;
650    
651          if (codec->m_hdll != NULL) {          if (codec->m_hdll != NULL) {
652                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
653                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
654                          codec->ehandle = NULL;                          codec->ehandle = NULL;
655                  }                  }
                 exit_dll(codec);  
656          }          }
657    
658          if (codec->config.display_status)          if (codec->config.display_status)
# Line 655  Line 681 
681                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
682          }          }
683    
684            if (config->zones[i].cartoon_mode) {
685                    frame->vop_flags |= XVID_VOP_CARTOON;
686                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
687            }
688    
689          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
690                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
691          }          }
692  }  }
693    
694    
695    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
696    
697  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
698  {  {
699          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 668  Line 701 
701          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
702          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
703          int length;          int length;
704      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
705        &codec->config.quality_user : &quality_table[codec->config.quality];
706    
707          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
708          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 690  Line 725 
725                  }                  }
726          }          }
727    
         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 */  
         }  
   
728          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
729                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
730                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 709  Line 738 
738          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
739                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
740    
741          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
742      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
743        frame.par = XVID_PAR_11_VGA;
744      } else if (codec->config.ar_mode == 0) { /* PAR */
745                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
746                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
747                  } else {                  } else {
# Line 729  Line 761 
761          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
762          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
763    
764            if (codec->config.interlacing && codec->config.tff)
765                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
766    
767    
768          if (codec->config.vop_debug)          if (codec->config.vop_debug)
769                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
770    
771          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
772                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
773          }          }
774    
775          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
776              if (quality_preset->motion_search > 4)
777                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
778      }
779    
780          if (codec->config.chromame)          if (quality_preset->chromame)
781                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
782    
783          if (codec->config.cartoon_mode) {          if (quality_preset->turbo)
                 frame.vop_flags |= XVID_VOP_CARTOON;  
                 frame.motion |= XVID_ME_DETECT_STATIC_MOTION;  
         }  
   
         if (codec->config.turbo)  
784                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
785                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
786                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
787    
788          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
789    
790          switch (codec->config.vhq_mode)          if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
791    
792    
793            switch (quality_preset->vhq_mode)
794          {          {
795          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
796                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 790  Line 826 
826          }          }
827    
828          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
829          frame.input.stride[0] = (((icc->lpbiInput->biWidth * icc->lpbiInput->biBitCount) + 31) & ~31) >> 3;          frame.input.stride[0] = CALC_BI_STRIDE(icc->lpbiInput->biWidth, icc->lpbiInput->biBitCount);
830    
831          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
832                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 812  Line 848 
848          }          }
849    
850          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
851          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
852                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
853    
854          /* frame-based stuff */          /* frame-based stuff */
# Line 943  Line 979 
979          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
980          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
981          outhdr->biCompression = BI_RGB; /* sonic foundry vegas video v3 only supports BI_RGB */          outhdr->biCompression = BI_RGB; /* sonic foundry vegas video v3 only supports BI_RGB */
982          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
983    
984          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
985          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
986          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 971  Line 1008 
1008          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
1009          init.version = XVID_VERSION;          init.version = XVID_VERSION;
1010          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
1011      init.debug = codec->config.debug;
1012          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
1013    
1014          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
# Line 998  Line 1036 
1036          RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);          RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
1037    
1038          REG_GET_N("Brightness", pp_brightness, 0);          REG_GET_N("Brightness", pp_brightness, 0);
1039          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0);
1040          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0);
1041          REG_GET_N("Dering",  pp_dr, 0)          REG_GET_N("Dering_Y",  pp_dry, 0);
1042          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("Dering_UV", pp_druv, 0);
1043            REG_GET_N("FilmEffect", pp_fe, 0);
1044    
1045          RegCloseKey(hKey);          RegCloseKey(hKey);
1046    
# Line 1016  Line 1055 
1055                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1056                          codec->dhandle = NULL;                          codec->dhandle = NULL;
1057                  }                  }
                 exit_dll(codec);  
1058          }          }
1059    
1060          return ICERR_OK;          return ICERR_OK;
# Line 1049  Line 1087 
1087    
1088                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1089                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1090                  convert.input.stride[0] = (((icd->lpbiInput->biWidth *icd->lpbiInput->biBitCount) + 31) & ~31) >> 3;                  convert.input.stride[0] = CALC_BI_STRIDE(icd->lpbiInput->biWidth, icd->lpbiInput->biBitCount);
1091                  if (convert.input.csp == XVID_CSP_I420 || convert.input.csp == XVID_CSP_YV12)                  if (convert.input.csp == XVID_CSP_I420 || convert.input.csp == XVID_CSP_YV12)
1092                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1093    
1094                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1095                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1096                  convert.output.stride[0] = (((icd->lpbiOutput->biWidth *icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;                  convert.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);
1097                  if (convert.output.csp == XVID_CSP_I420 || convert.output.csp == XVID_CSP_YV12)                  if (convert.output.csp == XVID_CSP_I420 || convert.output.csp == XVID_CSP_YV12)
1098                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1099    
# Line 1085  Line 1123 
1123                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1124                  }                  }
1125                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1126                  frame.output.stride[0] = (((icd->lpbiOutput->biWidth * icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;                  frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);
1127                  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)
1128                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1129          }          }
1130          else          else
1131          {          {
# Line 1096  Line 1134 
1134    
1135          if (pp_dy)frame.general |= XVID_DEBLOCKY;          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1136          if (pp_duv) frame.general |= XVID_DEBLOCKUV;          if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1137  /*      if (pp_dr) frame.general |= XVID_DERING; */          if (pp_dry) frame.general |= XVID_DERINGY;
1138            if (pp_druv) frame.general |= XVID_DERINGUV;
1139          if (pp_fe) frame.general |= XVID_FILMEFFECT;          if (pp_fe) frame.general |= XVID_FILMEFFECT;
1140    
1141          frame.brightness = pp_brightness;          frame.brightness = pp_brightness;

Legend:
Removed from v.1398  
changed lines
  Added in v.1887

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