aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/FlacDecoderPlugin.cxx
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/FlacDecoderPlugin.cxx
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/FlacDecoderPlugin.cxx (renamed from src/decoder/FLACDecoderPlugin.cxx)38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/decoder/FLACDecoderPlugin.cxx b/src/decoder/FlacDecoderPlugin.cxx
index 43b604097..cd15b4b29 100644
--- a/src/decoder/FLACDecoderPlugin.cxx
+++ b/src/decoder/FlacDecoderPlugin.cxx
@@ -18,9 +18,9 @@
*/
#include "config.h" /* must be first for large file support */
-#include "FLACDecoderPlugin.h"
-#include "FLACCommon.hxx"
-#include "FLACMetaData.hxx"
+#include "FlacDecoderPlugin.h"
+#include "FlacCommon.hxx"
+#include "FlacMetadata.hxx"
#include "OggCodec.hxx"
#include <glib.h>
@@ -87,7 +87,7 @@ static bool
flac_scan_file(const char *file,
const struct tag_handler *handler, void *handler_ctx)
{
- FLACMetadataChain chain;
+ FlacMetadataChain chain;
if (!chain.Read(file)) {
g_debug("Failed to read FLAC tags: %s",
chain.GetStatusString());
@@ -102,7 +102,7 @@ static bool
flac_scan_stream(struct input_stream *is,
const struct tag_handler *handler, void *handler_ctx)
{
- FLACMetadataChain chain;
+ FlacMetadataChain chain;
if (!chain.Read(is)) {
g_debug("Failed to read FLAC tags: %s",
chain.GetStatusString());
@@ -214,14 +214,14 @@ static FLAC__StreamDecoderInitStatus
stream_init_oggflac(FLAC__StreamDecoder *flac_dec, struct flac_data *data)
{
return FLAC__stream_decoder_init_ogg_stream(flac_dec,
- FLACInput::Read,
- FLACInput::Seek,
- FLACInput::Tell,
- FLACInput::Length,
- FLACInput::Eof,
+ FlacInput::Read,
+ FlacInput::Seek,
+ FlacInput::Tell,
+ FlacInput::Length,
+ FlacInput::Eof,
flac_write_cb,
flacMetadata,
- FLACInput::Error,
+ FlacInput::Error,
data);
}
@@ -229,14 +229,14 @@ static FLAC__StreamDecoderInitStatus
stream_init_flac(FLAC__StreamDecoder *flac_dec, struct flac_data *data)
{
return FLAC__stream_decoder_init_stream(flac_dec,
- FLACInput::Read,
- FLACInput::Seek,
- FLACInput::Tell,
- FLACInput::Length,
- FLACInput::Eof,
+ FlacInput::Read,
+ FlacInput::Seek,
+ FlacInput::Tell,
+ FlacInput::Length,
+ FlacInput::Eof,
flac_write_cb,
flacMetadata,
- FLACInput::Error,
+ FlacInput::Error,
data);
}
@@ -298,7 +298,7 @@ static bool
oggflac_scan_file(const char *file,
const struct tag_handler *handler, void *handler_ctx)
{
- FLACMetadataChain chain;
+ FlacMetadataChain chain;
if (!chain.ReadOgg(file)) {
g_debug("Failed to read OggFLAC tags: %s",
chain.GetStatusString());
@@ -313,7 +313,7 @@ static bool
oggflac_scan_stream(struct input_stream *is,
const struct tag_handler *handler, void *handler_ctx)
{
- FLACMetadataChain chain;
+ FlacMetadataChain chain;
if (!chain.ReadOgg(is)) {
g_debug("Failed to read OggFLAC tags: %s",
chain.GetStatusString());