Skip to content
Snippets Groups Projects
  1. Dec 16, 2010
    • Timothy B. Terriberry's avatar
      Change strategies for allocation hole prevention. · 405e6a99
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      In commit ffe10574 JM added a "done" flag to the allocation
       interpolation loop: whenver a band did not have enough bits to
       pass its threshold for receiving PVQ pulses, all of the rest of
       band were given just enough bits for fine energy only.
      This patch implements JM's "backwards done" idea: instead work
       backwards, dropping bands until the first band that is over the
       threshold is encountered, and don't artificially reduce the
       allocation any more after that.
      This is much more stable: we can continue to signal manual skips if
       we want to, but we aren't forced to skip a large number of bands
       because of an isolated hole in he allocation.
      
      This makes low-bitrate 120-sample frames much less rough.
      It also reduces the force skip threshold from
       alloc_floor+(1<<BITRES)+1 to just alloc_floor+(1<<BITRES), because
       the former can now cascade to cause many bands to be skipped.
      The difference here is subtle, and increases signaling overhead by
       0.11% of the total bitrate, but Monty confirmed that removing the
       +1 reduces noise in the bass (i.e., in N=1 bands where such a skip
       could cascade).
      
      Finally the 64*C<<BITRES<<LM ceiling is moved into the bisection
       search, instead of just being imposed afterwards, again because I
       wouldn't want to try to explain in a spec why they're different.
      405e6a99
  2. Dec 15, 2010
    • Timothy B. Terriberry's avatar
      More compute_allocation() fixes. · 7627b9f6
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      1) Continue to update left and percoeff if we skip all the way to the
          first band.
         This doesn't actually matter for correctness, but I don't want to
          try to explain in a spec why we aren't doing this.
      2) Force all the bits in skipped bands to go to fine energy.
         Before some of them could continue to be given to pulses, even though no
          pulses would actually be allocate for them.
      7627b9f6
    • Timothy B. Terriberry's avatar
      Store the total budget of compute_allocation in BITRES units. · 4777f069
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      The margin of safety was supposed to be 1/8th bit, not 1 bit, and the
       bit we reserved to terminate skip signalling before was actually 8
       bits.
      This patch updates the margin of safety to the correct value and
       accounts for the one bit (not 8) needed for skip signalling.
      It also fixes the remainder calculation in the skip loop to work
       correctly when start>0.
      4777f069
    • Timothy B. Terriberry's avatar
      Don't stop force-skipping on the first manually skipped band. · 283a9b60
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      Now that manual skipping is in the same loop as forced skipping, there
       is no reason to do all of one, then all of the other.
      This ensures we won't propagate bits to bands that have almost nothing
       later in quant_all_bands() because we didn't have enough bits to
       signal them skipped.
      283a9b60
    • Timothy B. Terriberry's avatar
      Move skip coding into interp_bits2pulses(). · b2f59009
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      This allows us to a) not pay a coding cost to avoid skipping bands that are
       stupid to skip (e.g., the first band, or bands that have so few bits that we
       wouldn't redistribute anything) and b) not reserve bits to pay that cost.
      b2f59009
    • Timothy B. Terriberry's avatar
      More allocation function updates. · 7cbf168c
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      This moves more of the decisions about when to stop skipping bands into the
       encoder-specific branch, so they are not forced in the decoder (because there
       is currently no bit-savings from forcing them).
      It also no longer requires an extra bit to code the fine energy in a skipped
       band: that was meant to account for the skip flag, but we already subtracted
       that.
      7cbf168c
    • Jean-Marc Valin's avatar
      Tim just rewrote half of the bit allocator -- hope it works now · ffe10574
      Jean-Marc Valin authored
      Making sure we never waste bits due to band skip and also making
      sure we don't skip bands "in the middle".
      ffe10574
  3. Dec 14, 2010
  4. Dec 13, 2010
  5. Dec 10, 2010
  6. Dec 09, 2010
  7. Dec 08, 2010
  8. Dec 07, 2010
  9. Dec 05, 2010
  10. Dec 04, 2010
  11. Dec 03, 2010
  12. Dec 02, 2010
  13. Dec 01, 2010
  14. Nov 30, 2010
  15. Nov 26, 2010
  16. Nov 25, 2010
  17. Nov 24, 2010
  18. Nov 19, 2010
  19. Nov 16, 2010
  20. Nov 09, 2010
    • Timothy B. Terriberry's avatar
      Add coarse energy entropy model tuning. · ef2e6505
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      This tunes the entropy model for coarse energy introduced in commit
       c1c40a76.
      It uses a constant set of parameters, tuned from about an hour and a
       half of randomly selected test data encoded for each frame size,
       prediction type (inter/intra), and band number.
      These will be slightly sub-optimal for different frame sizes, but
       should be better than what we were using.
      
      For inter, this saves an average of 2.8, 5.2, 7.1, and 6.7 bits/frame
       for frame sizes of 120, 240, 480, and 960, respectively.
      For intra, this saves an average of 1.5, 3.0, 4.5, and 5.3 bits/frame
       (for the same frame sizes, respectively).
      ef2e6505
  21. Nov 08, 2010
Loading