diff options
author | Denis Krjuchkov <denis@crazydev.net> | 2013-05-05 18:19:04 +0600 |
---|---|---|
committer | Denis Krjuchkov <denis@crazydev.net> | 2013-05-06 23:36:47 +0600 |
commit | 21dac6c05ddff1ce130843a82127618f9ed766a7 (patch) | |
tree | 30ec0cf3001135bae7009b2331ca9c651bf16a87 /src/decoder/FLACIOHandle.cxx | |
parent | 1d9b84a5afe44f2ea25bab836ed245e8de3ed901 (diff) | |
download | mpd-21dac6c05ddff1ce130843a82127618f9ed766a7.tar.gz mpd-21dac6c05ddff1ce130843a82127618f9ed766a7.tar.xz mpd-21dac6c05ddff1ce130843a82127618f9ed766a7.zip |
decoder/FLAC*: rename files and symbols to Flac*
Diffstat (limited to '')
-rw-r--r-- | src/decoder/FlacIOHandle.cxx (renamed from src/decoder/FLACIOHandle.cxx) | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/decoder/FLACIOHandle.cxx b/src/decoder/FlacIOHandle.cxx index 08ec36e48..16a07a9d1 100644 --- a/src/decoder/FLACIOHandle.cxx +++ b/src/decoder/FlacIOHandle.cxx @@ -18,14 +18,14 @@ */ #include "config.h" -#include "FLACIOHandle.hxx" +#include "FlacIOHandle.hxx" #include "io_error.h" #include "gcc.h" #include <errno.h> static size_t -FLACIORead(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle) +FlacIORead(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle) { input_stream *is = (input_stream *)handle; @@ -63,7 +63,7 @@ FLACIORead(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle) } static int -FLACIOSeek(FLAC__IOHandle handle, FLAC__int64 offset, int whence) +FlacIOSeek(FLAC__IOHandle handle, FLAC__int64 offset, int whence) { input_stream *is = (input_stream *)handle; @@ -71,7 +71,7 @@ FLACIOSeek(FLAC__IOHandle handle, FLAC__int64 offset, int whence) } static FLAC__int64 -FLACIOTell(FLAC__IOHandle handle) +FlacIOTell(FLAC__IOHandle handle) { input_stream *is = (input_stream *)handle; @@ -79,7 +79,7 @@ FLACIOTell(FLAC__IOHandle handle) } static int -FLACIOEof(FLAC__IOHandle handle) +FlacIOEof(FLAC__IOHandle handle) { input_stream *is = (input_stream *)handle; @@ -87,7 +87,7 @@ FLACIOEof(FLAC__IOHandle handle) } static int -FLACIOClose(gcc_unused FLAC__IOHandle handle) +FlacIOClose(gcc_unused FLAC__IOHandle handle) { /* no-op because the libFLAC caller is repsonsible for closing the #input_stream */ @@ -96,19 +96,19 @@ FLACIOClose(gcc_unused FLAC__IOHandle handle) } const FLAC__IOCallbacks flac_io_callbacks = { - FLACIORead, + FlacIORead, nullptr, nullptr, nullptr, - FLACIOEof, - FLACIOClose, + FlacIOEof, + FlacIOClose, }; const FLAC__IOCallbacks flac_io_callbacks_seekable = { - FLACIORead, + FlacIORead, nullptr, - FLACIOSeek, - FLACIOTell, - FLACIOEof, - FLACIOClose, + FlacIOSeek, + FlacIOTell, + FlacIOEof, + FlacIOClose, }; |