Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support for waveformatex files | Martin Storsjo | 2014-06-23 | 1 | -1/+11 |
| | | | | This is used for multichannel wave files. | ||||
* | Support reading sox style piped wav files | Martin Storsjo | 2014-06-23 | 1 | -1/+1 |
| | | | | | Sox writes the RIFF header size as a very large number, instead of as 0 as in libavformat. | ||||
* | Use skip instead of fseek | Martin Storsjo | 2014-06-23 | 1 | -2/+8 |
| | | | | | | | | fseek(SEEK_CUR) doesn't work for nonseekable streams (such as pipes). Only do this for skipping past small chunks; don't use it for skipping past the actual data for non-streamed input. | ||||
* | Allow reading wav files with a 0 bytes RIFF chunk | Martin Storsjo | 2014-06-23 | 1 | -1/+5 |
| | | | | | This is required in order to read streamed wav files produced by the libavformat wav muxer. | ||||
* | Allow opening stdin when "-" is specified | Martin Storsjo | 2014-06-23 | 1 | -2/+6 |
| | |||||
* | Support streamed wav files with a 0 bytes data chunk | Martin Storsjo | 2014-06-23 | 1 | -1/+7 |
| | |||||
* | Add an encoder example | Martin Storsjo | 2012-09-13 | 1 | -0/+163 |