Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 46890 | Differences between
and this patch

Collapse All | Expand All

(-)xawdecode/xawdecode/src/divx.c (-1 / +10 lines)
Lines 1001-1007 Link Here
1001
      if(lavc_param_normalize_aqp) codec_context->flags|= CODEC_FLAG_NORMALIZE_AQP;
1001
      if(lavc_param_normalize_aqp) codec_context->flags|= CODEC_FLAG_NORMALIZE_AQP;
1002
      if(lavc_param_interlaced_dct) codec_context->flags|= CODEC_FLAG_INTERLACED_DCT;
1002
      if(lavc_param_interlaced_dct) codec_context->flags|= CODEC_FLAG_INTERLACED_DCT;
1003
      */
1003
      */
1004
      codec_context->me_method             = Motion_Est_QTab[divx.quality];
1004
  
1005
      /*                 
1006
       *         0    none (very low quality)
1007
                 1    full (slow)
1008
                 2    log (low quality)
1009
                 3    phods (low quality)
1010
                 4    EPZS (default)
1011
                 5    X1 (experimental)
1012
      */
1013
      codec_context->me_method = ME_ZERO+ divx.quality;
1005
1014
1006
      /* fixed qscale :p */
1015
      /* fixed qscale :p */
1007
      /*
1016
      /*

Return to bug 46890