[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 1413, Mon Apr 5 20:39:49 2004 UTC revision 1588, Sat Jan 8 12:28:48 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;
508                    pass2.vbv_maxrate = 1000*profiles[codec->config.profile].max_bitrate;
509                    pass2.vbv_peakrate = 10000000; /* 10mbps -- fixme */
510    
511                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
512                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
513                  create.num_plugins++;                  create.num_plugins++;
# Line 588  Line 594 
594                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
595          }          }
596    
597            free(create.zones);
598          codec->ehandle = create.handle;          codec->ehandle = create.handle;
599          codec->framenum = 0;          codec->framenum = 0;
600          codec->keyspacing = 0;          codec->keyspacing = 0;
# Line 636  Line 643 
643                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
644          }          }
645    
646            if (config->zones[i].cartoon_mode) {
647                    frame->vop_flags |= XVID_VOP_CARTOON;
648                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
649            }
650    
651          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
652                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
653          }          }
654  }  }
655    
656    
657    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
658    
659  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
660  {  {
661          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 710  Line 724 
724          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
725          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
726    
727            if (codec->config.interlacing && codec->config.tff)
728                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
729    
730    
731          if (codec->config.vop_debug)          if (codec->config.vop_debug)
732                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
733    
# Line 723  Line 741 
741          if (codec->config.chromame)          if (codec->config.chromame)
742                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
743    
         if (codec->config.cartoon_mode) {  
                 frame.vop_flags |= XVID_VOP_CARTOON;  
                 frame.motion |= XVID_ME_DETECT_STATIC_MOTION;  
         }  
   
744          if (codec->config.turbo)          if (codec->config.turbo)
745                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
746                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
# Line 735  Line 748 
748    
749          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
750    
751            if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
752    
753    
754          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
755          {          {
756          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
# Line 771  Line 787 
787          }          }
788    
789          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
790          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);
791    
792          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
793                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 924  Line 940 
940          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
941          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
942          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 */
943          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
944    
945          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
946          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
947          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 981  Line 998 
998          REG_GET_N("Brightness", pp_brightness, 0);          REG_GET_N("Brightness", pp_brightness, 0);
999          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0)
1000          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0)
1001          REG_GET_N("Dering",  pp_dr, 0)          REG_GET_N("Dering_Y",  pp_dry, 0)
1002            REG_GET_N("Dering_UV", pp_druv, 0)
1003          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("FilmEffect", pp_fe, 0)
1004    
1005          RegCloseKey(hKey);          RegCloseKey(hKey);
# Line 1029  Line 1047 
1047    
1048                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1049                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1050                  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);
1051                  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)
1052                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1053    
1054                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1055                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1056                  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);
1057                  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)
1058                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1059    
# Line 1065  Line 1083 
1083                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1084                  }                  }
1085                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1086                  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);
1087                  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)
1088                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1089          }          }
1090          else          else
1091          {          {
# Line 1076  Line 1094 
1094    
1095          if (pp_dy)frame.general |= XVID_DEBLOCKY;          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1096          if (pp_duv) frame.general |= XVID_DEBLOCKUV;          if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1097  /*      if (pp_dr) frame.general |= XVID_DERING; */          if (pp_dry) frame.general |= XVID_DERINGY;
1098            if (pp_druv) frame.general |= XVID_DERINGUV;
1099          if (pp_fe) frame.general |= XVID_FILMEFFECT;          if (pp_fe) frame.general |= XVID_FILMEFFECT;
1100    
1101          frame.brightness = pp_brightness;          frame.brightness = pp_brightness;

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

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