1. 31 Mar, 2014 9 commits
  2. 30 Mar, 2014 11 commits
  3. 29 Mar, 2014 2 commits
  4. 28 Mar, 2014 1 commit
  5. 27 Mar, 2014 12 commits
  6. 26 Mar, 2014 5 commits
    • Vittorio Giovara's avatar
      fate: add Alias PIX tests · 9718c31e
      Vittorio Giovara authored
      9718c31e
    • Vittorio Giovara's avatar
      Alias PIX image encoder and decoder · e50f5d3c
      Vittorio Giovara authored
      e50f5d3c
    • Ben Avison's avatar
      truehd: add hand-scheduled ARM asm version of ff_mlp_pack_output. · 3b5946bc
      Ben Avison authored
      Profiling results for overall decode and the output_data function in
      particular are as follows:
      
                    Before          After
                    Mean   StdDev   Mean   StdDev  Confidence  Change
      6:2 total     339.6  15.1     329.3  16.0    95.8%       +3.1%  (insignificant)
      6:2 function  24.6   6.0      9.9    3.1     100.0%      +148.5%
      8:2 total     324.5  15.5     323.6  14.3    15.2%       +0.3%  (insignificant)
      8:2 function  20.4   3.9      9.9    3.4     100.0%      +104.7%
      6:6 total     572.8  20.6     539.9  24.2    100.0%      +6.1%
      6:6 function  54.5   5.6      16.0   3.8     100.0%      +240.9%
      8:8 total     741.5  21.2     702.5  18.5    100.0%      +5.6%
      8:8 function  63.9   7.6      18.4   4.8     100.0%      +247.3%
      
      The assembly version has also been tested with a fuzz tester to ensure that
      any combinations of inputs not exercised by my available test streams still
      generate mathematically identical results to the C version.
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      3b5946bc
    • Ben Avison's avatar
      truehd: break out part of output_data into platform-specific callback. · b9eb0341
      Ben Avison authored
      Verified with profiling that this doesn't have a measurable effect upon
      overall performance.
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      b9eb0341
    • Ben Avison's avatar
      truehd: tune VLC decoding for ARM. · fcf5fc44
      Ben Avison authored
      Profiling on a Raspberry Pi revealed the best performance to correspond
      with VLC_BITS = 5. Results for overall audio decode and the get_vlc2 function
      in particular are as follows:
      
                    Before          After
                    Mean   StdDev   Mean   StdDev  Confidence  Change
      6:2 total     348.8  20.1     339.6  15.1    88.8%       +2.7%  (insignificant)
      6:2 function  38.1   8.1      26.4   4.1     100.0%      +44.5%
      8:2 total     339.1  15.4     324.5  15.5    99.4%       +4.5%
      8:2 function  33.8   7.0      27.3   5.6     99.7%       +23.6%
      6:6 total     604.6  20.8     572.8  20.6    100.0%      +5.6%
      6:6 function  95.8   8.4      68.9   8.2     100.0%      +39.1%
      8:8 total     766.4  17.6     741.5  21.2    100.0%      +3.4%
      8:8 function  106.0  11.4     86.1   9.9     100.0%      +23.1%
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      fcf5fc44