[svn] / trunk / vfw / src / codec.c Repository:
ViewVC logotype

Diff of /trunk/vfw/src/codec.c

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

revision 137, Thu Apr 25 07:16:00 2002 UTC revision 295, Fri Jul 12 12:26:55 2002 UTC
# Line 23  Line 23 
23   *   *
24   *      History:   *      History:
25   *   *
26     *      12.07.2002      num_threads
27     *      23.06.2002      XVID_CPU_CHKONLY; loading speed up
28   *      25.04.2002      ICDECOMPRESS_PREROLL   *      25.04.2002      ICDECOMPRESS_PREROLL
29   *      17.04.2002      re-enabled lumi masking for 1st pass   *      17.04.2002      re-enabled lumi masking for 1st pass
30   *      15.04.2002      updated cbr support   *      15.04.2002      updated cbr support
# Line 218  Line 220 
220    
221  LRESULT compress_get_size(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_get_size(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
222  {  {
223          return lpbiOutput->bmiHeader.biWidth * lpbiOutput->bmiHeader.biHeight * 3;          return
224    #ifdef BFRAMES
225             2 *
226    #endif
227            lpbiOutput->bmiHeader.biWidth * lpbiOutput->bmiHeader.biHeight * 3;
228  }  }
229    
230    
# Line 289  Line 295 
295          param.max_quantizer = codec->config.max_pquant;          param.max_quantizer = codec->config.max_pquant;
296          param.max_key_interval = codec->config.max_key_interval;          param.max_key_interval = codec->config.max_key_interval;
297    
298    #ifdef _SMP
299            param.num_threads = codec->config.num_threads;
300    #endif
301    
302    #ifdef BFRAMES
303            param.global = 0;
304            if (codec->config.packed) param.global |= XVID_GLOBAL_PACKED;
305            if (codec->config.dx50bvop) param.global |= XVID_GLOBAL_DX50BVOP;
306            if (codec->config.debug) param.global |= XVID_GLOBAL_DEBUG;
307            param.max_bframes = codec->config.max_bframes;
308            param.bquant_ratio = codec->config.bquant_ratio;
309    #endif
310    
311          switch(xvid_encore(0, XVID_ENC_CREATE, &param, NULL))          switch(xvid_encore(0, XVID_ENC_CREATE, &param, NULL))
312          {          {
313          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 374  Line 393 
393    
394          if (codec->config.interlacing)          if (codec->config.interlacing)
395                  frame.general |= XVID_INTERLACING;                  frame.general |= XVID_INTERLACING;
396    // fix 1pass modes/hinted MV by koepi
397            if (codec->config.hinted_me && (codec->config.mode == DLG_MODE_CBR || codec->config.mode == DLG_MODE_VBR_QUAL || codec->config.mode == DLG_MODE_VBR_QUANT))
398            {
399                    codec->config.hinted_me = 0;
400            }
401    // end of ugly hack
402    
403          if (codec->config.hinted_me && codec->config.mode == DLG_MODE_2PASS_1)          if (codec->config.hinted_me && codec->config.mode == DLG_MODE_2PASS_1)
404          {          {
# Line 490  Line 515 
515                  frame.intra = 0;                  frame.intra = 0;
516          }          }
517    
518    #ifdef BFRAMES
519            frame.bquant = 0;
520    #endif
521    
522            OutputDebugString(" ");
523          switch (xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats))          switch (xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats))
524          {          {
525          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :

Legend:
Removed from v.137  
changed lines
  Added in v.295

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