1. 11 Sep, 2016 4 commits
  2. 09 Sep, 2016 1 commit
  3. 08 Sep, 2016 4 commits
  4. 07 Sep, 2016 2 commits
  5. 06 Sep, 2016 1 commit
  6. 05 Sep, 2016 4 commits
  7. 04 Sep, 2016 4 commits
  8. 03 Sep, 2016 1 commit
  9. 31 Aug, 2016 3 commits
  10. 30 Aug, 2016 8 commits
  11. 29 Aug, 2016 5 commits
  12. 26 Aug, 2016 3 commits
    • Diego Biurrun's avatar
      libvpx: Cast a pointer to const to squelch a warning · 4ab49626
      Diego Biurrun authored
      libavcodec/libvpxdec.c:100:57: warning: passing argument 3 of 'av_image_copy' from incompatible pointer type
               av_image_copy(picture->data, picture->linesize, img->planes,
      libavutil/imgutils.h:116:6: note: expected 'const uint8_t **' but argument is of type 'unsigned char **'
       void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4],
      4ab49626
    • Diego Biurrun's avatar
      vp56: Separate VP5 and VP6 dsp initialization · 721d57e6
      Diego Biurrun authored
      VP5 has no arch-specific optimizations (nor will it get some in the
      future), so it makes no sense to try to share dsp init code with VP6.
      721d57e6
    • Diego Biurrun's avatar
      prores: Change type of stride parameters to ptrdiff_t · 3fd22538
      Diego Biurrun authored
      This avoids SIMD-optimized functions having to sign-extend their
      line size argument manually to be able to do pointer arithmetic.
      
      Also adjust parameter names to be "linesize" everywhere.
      3fd22538