aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/_ogg_common.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* decoder: rewind input stream after try_decode()Max Kellermann2008-11-021-6/+0
| | | | | | | | | The try_decode() method may have read some data from the stream, which is now lost. To make this data available to other methods, get it back by rewinding the input stream after each try_decode() invocation. The ogg and wavpack plugins did this manually and inconsistently; this code can now be removed.
* ogg: don't include _flac_common.hMax Kellermann2008-10-311-1/+0
| | | | | | The source _ogg_common.c does not need any symbols from _flac_common.h, but including it leads to compiler errors when libflac isn't available.
* input_stream: no CamelCaseMax Kellermann2008-10-261-2/+2
| | | | Renamed all functions and variables.
* input_stream: removed the InputStream typedefMax Kellermann2008-10-261-1/+1
| | | | Everybody should use struct input_stream.
* renamed src/inputPlugins/ to src/decoder/Max Kellermann2008-10-261-0/+49
These plugins are not input plugins, they are decoder plugins. No CamelCase in the directory name.