1. 23 Feb, 2012 1 commit
  2. 22 Feb, 2012 16 commits
  3. 21 Feb, 2012 21 commits
  4. 20 Feb, 2012 2 commits
    • Ronald S. Bultje's avatar
      rv34: change most "int stride" into "ptrdiff_t stride". · 3ab9a2a5
      Ronald S. Bultje authored
      This prevents having to sign-extend on 64-bit systems with 32-bit ints,
      such as x86-64. Also fixes crashes on systems where we don't do it and
      arguments are not in registers, such as Win64 for all weight functions.
      3ab9a2a5
    • Justin Ruggles's avatar
      adpcmenc: Use correct frame_size for Yamaha ADPCM. · 770a5c6d
      Justin Ruggles authored
      Output packet size should match avctx->block_align. The target output packet
      size is 1024 bytes.
      Before:
      mono   - 1024 samples -> 512 bytes
      stereo - 2048 samples -> 2048 bytes
      After:
      mono   - 2048 samples -> 1024 bytes
      stereo - 1024 samples -> 1024 bytes
      770a5c6d