1. 18 Jan, 2012 4 commits
  2. 17 Jan, 2012 2 commits
  3. 16 Jan, 2012 10 commits
  4. 15 Jan, 2012 7 commits
  5. 14 Jan, 2012 5 commits
  6. 13 Jan, 2012 11 commits
  7. 12 Jan, 2012 1 commit
    • Diego Biurrun's avatar
      cabac: split cabac.h into declarations and function definitions · 55b9ef18
      Diego Biurrun authored
      This fixes standalone compilation of some decoders with --disable-optimizations.
      cabac.h defines some inline functions that use symbols from cabac.c.  Without
      optimizations these inline functions are not eliminated and linking fails with
      references to non-existing symbols.
      
      Splitting the inline functions off into their own header and only #including
      it in the places where the inline functions are used allows #including cabac.h
      from anywhere without ill effects.
      55b9ef18