aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/FLACInput.hxx
diff options
context:
space:
mode:
authorDenis Krjuchkov <denis@crazydev.net>2013-05-05 18:19:04 +0600
committerDenis Krjuchkov <denis@crazydev.net>2013-05-06 23:36:47 +0600
commit21dac6c05ddff1ce130843a82127618f9ed766a7 (patch)
tree30ec0cf3001135bae7009b2331ca9c651bf16a87 /src/decoder/FLACInput.hxx
parent1d9b84a5afe44f2ea25bab836ed245e8de3ed901 (diff)
downloadmpd-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/FlacInput.hxx (renamed from src/decoder/FLACInput.hxx)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/FLACInput.hxx b/src/decoder/FlacInput.hxx
index 7661567d1..8fc69f960 100644
--- a/src/decoder/FLACInput.hxx
+++ b/src/decoder/FlacInput.hxx
@@ -26,13 +26,13 @@
* This class wraps an #input_stream in libFLAC stream decoder
* callbacks.
*/
-class FLACInput {
+class FlacInput {
struct decoder *decoder;
struct input_stream *input_stream;
public:
- FLACInput(struct input_stream *_input_stream,
+ FlacInput(struct input_stream *_input_stream,
struct decoder *_decoder=nullptr)
:decoder(_decoder), input_stream(_input_stream) {}