Skip to content
Snippets Groups Projects
  1. May 02, 2012
    • Yaowu Xu's avatar
      chagned the decoder band to match the encoder · 3b909a6f
      Yaowu Xu authored
      missed the decoder side in last commit
      
      Change-Id: Ie97f35189e93f78783e3d8072a36eea768beed27
      3b909a6f
    • Yaowu Xu's avatar
      slight adjustment to coef band definition · bd69b7d4
      Yaowu Xu authored
      This commit adjusted slightly the 4x4 coefficents band definition to
      better classify coefficients with similar distributions and usages.
      It helps derf set about .1%, it is alos slightly positive for std-hd
      set, where 4x4 blocks are used less frequently.
      
      The commit also removed a const array not in use.
      
      Change-Id: I78d16905d4036641ec905b0c32c190c1def5b249
      bd69b7d4
  2. May 01, 2012
  3. Apr 30, 2012
  4. Apr 27, 2012
    • Adrian Grange's avatar
    • Adrian Grange's avatar
      Removed MV costing from ARNR filtering · 393440db
      Adrian Grange authored
      The ARNR filter uses a motion compensated temporal filter,
      but the motion estimation implementation accounts for the
      cost of the mv in its decision making process. The ARNR
      filter uses a dummy cost table initialized to 0 as a way
      to ignore the mv costs (which are irrelevant to the filter).
      
      This CL modifies the ARNR filter implementation to so that
      the mv costing is ignored without the requirement for
      dummy tables.
      
      Change-Id: I0dd9620c3b70682f938b2a70912c11d4d7c9284c
      393440db
  5. Apr 26, 2012
    • Deb Mukherjee's avatar
      Adds search option for best interpolation filter. · acdda50a
      Deb Mukherjee authored
      Adds a speed feature to conduct a brute force search among a set of
      available interpolation filters for the best one in an RD sense.
      
      There is a gain of 0.4% on derf, 1.0% on Std-HD.
      
      Patch 2: A macro added to determine if the encoder state is reset
      for each new filter tried.
      
      Patch 3: rebase, also fixes a bug (decodframe.c) introduced by a
      couple of missing function pointer assignements.
      
      Patch 4: rebase.
      
      Change-Id: Ic9ccca9d8c35c6af557449ae867391a2f996cc29
      acdda50a
  6. Apr 25, 2012
    • Yaowu Xu's avatar
      Merge QIMODE experiment · a16608ab
      Yaowu Xu authored
      This commit merge the QI mode experiment. As the experiment affects
      the encoding of intra coding modes on key frame only, the overall
      effect of the experiment on encoding tests is insignificant.
      
      Change-Id: I9e4e3933adface88867ad429cee3986e529c511d
      a16608ab
    • Yaowu Xu's avatar
      Merge UVINTRA experiment · c1814d26
      Yaowu Xu authored
      The commit merges the UVINTRA experiment and removed the related
      macros. The overall effect of the experiment is a small gain (.1%
      on derf)
      
      Change-Id: Ia34b3312fb9b5b34c9ba111bf0fa78c6f78ac80b
      c1814d26
  7. Apr 24, 2012
  8. Apr 20, 2012
    • Ronald S. Bultje's avatar
      Hide some code behind CONFIG_COMP_INTRA_PRED. · 2210767c
      Ronald S. Bultje authored
      Change-Id: I7c0597dede20cc71145c053f76bd99aaf759d144
      2210767c
    • Yaowu Xu's avatar
      change to allow 8x8 transform always · ade43d91
      Yaowu Xu authored
      This commit changed to enable the usage 8x8 transform for all frame
      type, all resolution and all quantizer range. This has an overall
      benefit .2% to .3% in term of compression, but more importantly,
      the difficult clips benefits much more, up to 2% to 3% on clips
      like football, harbour and so on.
      
      We observed some weird humps on very high end on a couple of youtube
      clips, but have determined the underly cause was the aggressive zbin
      having an effect of lowering rate with lower quality, which have
      an impact on slide show clips around 60DB.
      
      The commit does not change the association between prediction mode
      and transform size.
      
      Change-Id: I33043bdce6207528ae00b4a4b26d8ff63cfea1f4
      ade43d91
    • Yaowu Xu's avatar
      added reset of rate estimates for each mode · ecc28cda
      Yaowu Xu authored
      This is to prevent the evaluation of a mode from using values left
      over from a mode evaluated prior in the loop.
      
      Change-Id: Ife2c6ceb76d2f7365fd262515d3ae48229033c2d
      ecc28cda
  9. Apr 19, 2012
  10. Apr 18, 2012
  11. Apr 17, 2012
  12. Apr 16, 2012
  13. Apr 13, 2012
    • Adrian Grange's avatar
      Added save coding context & modified MV bounds · fa589adc
      Adrian Grange authored
      Added code to save the coding context in vp8_rd_pick_inter_mode
      when the coding mode is forced to ARF(0,0).
      
      Also, modified the MV bounds computation to comply with the
      change in MV border from 32 to 64 pixels.
      
      Change-Id: I96963a6f5f4d04ce84c807ae11e0635177c3ad6c
      fa589adc
  14. Apr 12, 2012
    • Deb Mukherjee's avatar
      Turning off interpolation filter selection · 237718dc
      Deb Mukherjee authored
      Turning off the interpolation filter selection based on edge
      proportion. This heuristics has not been working as well as
      expected and I have started a more rigorous investigation into
      this. We can turn this off for now since it is unnecessarily
      slowing things down.
      
      Rebase.
      
      Change-Id: Ic5958b2b3a35ec2d8eb73b6d81617ca8fbe07e74
      237718dc
    • Yaowu Xu's avatar
      a set of minor fixes · 636b2f38
      Yaowu Xu authored
      This commit tries to address an issue related to the oddity shown on
      HD _mobcal clip, where some rather ugly blocks shown in the second
      frame at low-mid bit rates if the third frame is not made a key frame
      by he encoder. The fixes include: 1)  made calls to sad_16x16 to be
      consistent with function prototype. 2) remove the error bias to intra
      and golden in mbgraph search. 3) changed the error accumulation on
      inter_segment encoding to avoid potential out-of-range. 1) has no
      effect on encoding results.
      
      Encoding test show that the overall effect of the commit helps about
      .2%(HD) to .3%(cif)
      
      Change-Id: I930975a2d0c06252f01c39e0a02351529774e30b
      636b2f38
    • Yaowu Xu's avatar
      Adjust the key frame placement condition · d6f4b71d
      Yaowu Xu authored
      The commit removed a limit on key frame detection, which caused a big
      drop in all metric measurements for standard HD clip such as _mobcal.
      
      This single change helps two standard HD clips by a huge amount, which
      help the overall std-hd set by 2.4% (glb psnr), 0.9% (avg_psnr), 2.1%
      (vpxssim).
      
      In the result page:
      http://pafr9.prod.google.com:26163/?/cns/rc-d/home/on2-prod/sunkaras/borg-test/yaowu
      
      2012_04_02_1649_yaowu_bugfix_std-hd
      2012_04_03_1452_yaowu_hump_std-hd
      represent the encoding test results and std-hd set prior and after this
      commit respectively.
      
      Change-Id: Ie4313e317c737ea0e699c3a7919c1376744baa1a
      d6f4b71d
    • Yaowu Xu's avatar
      changed function prototype for macro_block_yrd · d56acae6
      Yaowu Xu authored
      This commit has made macro_block_yrd_8x8 and macro_block_yrd_8x8 to
      take same parameters. It also removed a few unnecessary shifts that
      has the potential to create out-of-range distortion values.
      
      Change-Id: I4ec5afb307c3685c2a67a07c2850f0927d214455
      d56acae6
  15. Apr 11, 2012
    • Paul Wilkins's avatar
      Delete unused function. · d6ac213c
      Paul Wilkins authored
      Deleted check_gf_quality().
      
      Change-Id: If75fbd84accb1f6471ad6ea6ff2b65ae99976f5d
      d6ac213c
    • Paul Wilkins's avatar
      Refactoring of encode loop and bitstream packing · 13c6d1a8
      Paul Wilkins authored
      Some code re-factored / moved to allow the main
      pack operation inside the recode loop so  that the
      size estimate is accurate.
      
      Deletion of some redundant code relating to one pass.
      
      Aproximate improvement over March 27 code base:
      Derf 0.0%, YT 0.5%, YThd 0.3% Std_hd 0.25%
      
      Change-Id: Id2d071794ab44f0b52935f6fcdb5733d09a6bb86
      13c6d1a8
    • Paul Wilkins's avatar
      Changes to costing of skip. · f2ec452f
      Paul Wilkins authored
      Update the costing of skip in the recode loop and rd code.
      
      Change-Id: I2e5ebbd7ddf201212b32441321e12626cd0423e9
      f2ec452f
    • Paul Wilkins's avatar
      T8x8 zbin and rate control changes. · a3392d57
      Paul Wilkins authored
      Some adjustments to zbin for t8x8.
      Changes to rules for sizing forced key frames.
      Some extra stats output in tmp.stt.
      
      Approximate  gain on YT-hd set 0.5%
      
      There are still issues in sizing key frames and gf/arf frames
      when the image is largely static. These in part relate to
      problems with cost estimates in the recode loop.
      
      Change-Id: I6f0159dc8a8faeab4115a19c668d442491619a68
      a3392d57
    • Adrian Grange's avatar
      Superblock encoding order · 9daf3154
      Adrian Grange authored
      This is the first patch to add superblock (32x32) coding
      order capabilities. It does not yet do any mode selection
      at the SB level, that will follow in a further patch.
      
      This patch encodes rows of SBs rather than
      MBs, each SB contains 2x2 MBs.
      
      Two intra prediction modes have been disabled since they
      require reconstructed data for the above-right MB which
      may not have been encoded yet (e.g. for the bottom right
      MB in each SB).
      
      Results on the one test clip I have tried (720p GIPS clip)
      suggest that it is somewhere around 0.2dB worse than the
      baseline version, so there may be bugs.
      
      It has been tested with no experiments enabled and with
      the following 3 experiments enabled:
        --enable-enhanced_interp
        --enable-high_precision_mv
        --enable-sixteenth_subpel_uv
      in each case the decode buffer matches the recon buffer
      (using "cmp" to compare the dumped/decoded frames).
      Note: Testing these experiments individually created
      errors.
      
      Some problems were found with other experiments but it
      is unclear what state these experiments are in:
        --enable-comp_intra_pred
        --enable-newentropy
        --enable-uvintra
      
      This code has not been extensively tested yet, so there
      is every likelihood that further bugs remain. I also
      intend to do some code cleanup & refactoring in tandem
      with the next patch that adds the 32x32 modes.
      
      Change-Id: I1eba7f740a70b3510df58db53464535ef881b4d9
      9daf3154
  16. Mar 29, 2012
    • Deb Mukherjee's avatar
      Bug fix in probability update savings computation · 78ecbc98
      Deb Mukherjee authored
      Found this bug while tracking down some anomalies in my experiments.
      Since vp8_cost_one and vp8_cost_zero return unsigned int, the
      bit shift by 8 will be incorrect if the value is negative.
      I am cautiously optimistic that this fix will make the prob
      updates more correct and somewhat improve results across the board.
      But the update probabilities will need to be retuned I think.
      
      Patch 2: Adding more of the same fixes using a macro.
      
      Change-Id: I1a168f040e74e8c67e7225103b1c2af9a611da49
      78ecbc98
  17. Mar 22, 2012
  18. Mar 21, 2012
    • Yaowu Xu's avatar
      enable 8x8 transform for MBs in intra frames · 2823173e
      Yaowu Xu authored
      When ac_yquant>171, a key frame is enabled to use 8x8 transform. In
      such case, MBs with DC_PRED or TM_PRED are selected to use T8x8. This
      change helped the full STD-HD set by ~.1% or so, which is reasonable
      considering how often key frame occurs in these encodings.
      
      Change-Id: Id17009ef6327252177b19e6bf0d6628827febaf1
      2823173e
    • Paul Wilkins's avatar
      Only support improved quant · c88d335f
      Paul Wilkins authored
      Deprecate fast quant and strict_quant code.
      Small effect on quality as fast was used in first pass but the
      effect is basically neutral across the derf set.
      
      The rationale here is to reduce the number of code paths for
      now to make experimentation easier. Optimized and fast code
      options can be re-introduced later along with other  encode
      speed options.
      
      Change-Id: Ia30c5daf3dbc52e72c83b277a1d281e3c934cdad
      c88d335f
    • Paul Wilkins's avatar
      Merge Exact Quant · 36af2035
      Paul Wilkins authored
      Change-Id: Id2412a7f24a7c1016ec9fc3b9b0fbd16871f374a
      36af2035
    • Deb Mukherjee's avatar
      Making subpel filters switchable at frame level · 475d5d56
      Deb Mukherjee authored
      Various refactoring to make the subpel motion compensation
      filters switchable by a frame level field.
      Two types of 8-tap filters are supported in addition to the existing
      bilinar and sixtap filters. One is the default 8-tap and the
      other has a sharper cut-off for use with frames with substantial
      edge content.
      
      Patch 2: Added a preliminary strategy for filter selection based on
      edginess detecton. Also includes some filter changes.
      
      Change-Id: I866085bda5ae143cfdf2ec88157feaabdf7bd63a
      475d5d56
Loading