[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 1487, Sun Jul 11 08:54:38 2004 UTC revision 1592, Mon Jan 10 05:01:01 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 564  Line 570 
570                  if (codec->config.packed)                  if (codec->config.packed)
571                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
572    
                 if (codec->config.closed_gov)  
573                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
574    
575          }          }
# Line 637  Line 642 
642                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
643          }          }
644    
645            if (config->zones[i].cartoon_mode) {
646                    frame->vop_flags |= XVID_VOP_CARTOON;
647                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
648            }
649    
650          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
651                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
652          }          }
653  }  }
654    
655    
656    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
657    
658  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
659  {  {
660          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 672  Line 684 
684                  }                  }
685          }          }
686    
         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 */  
         }  
   
687          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
688                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
689                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 728  Line 734 
734          if (codec->config.chromame)          if (codec->config.chromame)
735                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
736    
         if (codec->config.cartoon_mode) {  
                 frame.vop_flags |= XVID_VOP_CARTOON;  
                 frame.motion |= XVID_ME_DETECT_STATIC_MOTION;  
         }  
   
737          if (codec->config.turbo)          if (codec->config.turbo)
738                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
739                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
# Line 740  Line 741 
741    
742          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
743    
744            if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
745    
746    
747          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
748          {          {
749          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
# Line 776  Line 780 
780          }          }
781    
782          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
783          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);
784    
785          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
786                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 929  Line 933 
933          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
934          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
935          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 */
936          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount / 8;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
937    
938          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
939          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
940          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 1035  Line 1040 
1040    
1041                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1042                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1043                  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);
1044                  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)
1045                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1046    
1047                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1048                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1049                  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);
1050                  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)
1051                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1052    
# Line 1071  Line 1076 
1076                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1077                  }                  }
1078                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1079                  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);
1080                  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)
1081                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1082          }          }
1083          else          else
1084          {          {

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

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