aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/SndfileDecoderPlugin.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/decoder/SndfileDecoderPlugin.cxx (renamed from src/decoder/sndfile_decoder_plugin.c)58
1 files changed, 32 insertions, 26 deletions
diff --git a/src/decoder/sndfile_decoder_plugin.c b/src/decoder/SndfileDecoderPlugin.cxx
index e70a2dc2e..d884ca2d1 100644
--- a/src/decoder/sndfile_decoder_plugin.c
+++ b/src/decoder/SndfileDecoderPlugin.cxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -18,6 +18,7 @@
*/
#include "config.h"
+#include "SndfileDecoderPlugin.hxx"
#include "decoder_api.h"
#include "audio_check.h"
#include "tag_handler.h"
@@ -30,7 +31,7 @@
static sf_count_t
sndfile_vio_get_filelen(void *user_data)
{
- const struct input_stream *is = user_data;
+ const struct input_stream *is = (const struct input_stream *)user_data;
return input_stream_get_size(is);
}
@@ -38,10 +39,10 @@ sndfile_vio_get_filelen(void *user_data)
static sf_count_t
sndfile_vio_seek(sf_count_t offset, int whence, void *user_data)
{
- struct input_stream *is = user_data;
+ struct input_stream *is = (struct input_stream *)user_data;
bool success;
- success = input_stream_lock_seek(is, offset, whence, NULL);
+ success = input_stream_lock_seek(is, offset, whence, nullptr);
if (!success)
return -1;
@@ -51,12 +52,12 @@ sndfile_vio_seek(sf_count_t offset, int whence, void *user_data)
static sf_count_t
sndfile_vio_read(void *ptr, sf_count_t count, void *user_data)
{
- struct input_stream *is = user_data;
- GError *error = NULL;
+ struct input_stream *is = (struct input_stream *)user_data;
+ GError *error = nullptr;
size_t nbytes;
nbytes = input_stream_lock_read(is, ptr, count, &error);
- if (nbytes == 0 && error != NULL) {
+ if (nbytes == 0 && error != nullptr) {
g_warning("%s", error->message);
g_error_free(error);
return -1;
@@ -77,7 +78,7 @@ sndfile_vio_write(G_GNUC_UNUSED const void *ptr,
static sf_count_t
sndfile_vio_tell(void *user_data)
{
- const struct input_stream *is = user_data;
+ const struct input_stream *is = (const struct input_stream *)user_data;
return input_stream_get_offset(is);
}
@@ -87,11 +88,11 @@ sndfile_vio_tell(void *user_data)
* libsndfile stream.
*/
static SF_VIRTUAL_IO vio = {
- .get_filelen = sndfile_vio_get_filelen,
- .seek = sndfile_vio_seek,
- .read = sndfile_vio_read,
- .write = sndfile_vio_write,
- .tell = sndfile_vio_tell,
+ sndfile_vio_get_filelen,
+ sndfile_vio_seek,
+ sndfile_vio_read,
+ sndfile_vio_write,
+ sndfile_vio_tell,
};
/**
@@ -115,7 +116,7 @@ time_to_frame(float t, const struct audio_format *audio_format)
static void
sndfile_stream_decode(struct decoder *decoder, struct input_stream *is)
{
- GError *error = NULL;
+ GError *error = nullptr;
SNDFILE *sf;
SF_INFO info;
struct audio_format audio_format;
@@ -127,7 +128,7 @@ sndfile_stream_decode(struct decoder *decoder, struct input_stream *is)
info.format = 0;
sf = sf_open_virtual(&vio, SFM_READ, &info, is);
- if (sf == NULL) {
+ if (sf == nullptr) {
g_warning("sf_open_virtual() failed");
return;
}
@@ -184,7 +185,7 @@ sndfile_scan_file(const char *path_fs,
info.format = 0;
sf = sf_open(path_fs, SFM_READ, &info);
- if (sf == NULL)
+ if (sf == nullptr)
return false;
if (!audio_valid_sample_rate(info.samplerate)) {
@@ -197,17 +198,17 @@ sndfile_scan_file(const char *path_fs,
info.frames / info.samplerate);
p = sf_get_string(sf, SF_STR_TITLE);
- if (p != NULL)
+ if (p != nullptr)
tag_handler_invoke_tag(handler, handler_ctx,
TAG_TITLE, p);
p = sf_get_string(sf, SF_STR_ARTIST);
- if (p != NULL)
+ if (p != nullptr)
tag_handler_invoke_tag(handler, handler_ctx,
TAG_ARTIST, p);
p = sf_get_string(sf, SF_STR_DATE);
- if (p != NULL)
+ if (p != nullptr)
tag_handler_invoke_tag(handler, handler_ctx,
TAG_DATE, p);
@@ -234,7 +235,7 @@ static const char *const sndfile_suffixes[] = {
linking with libFLAC and libvorbis - we can do better, we
have native plugins for these libraries */
- NULL
+ nullptr
};
static const char *const sndfile_mime_types[] = {
@@ -243,13 +244,18 @@ static const char *const sndfile_mime_types[] = {
/* what are the MIME types of the other supported formats? */
- NULL
+ nullptr
};
const struct decoder_plugin sndfile_decoder_plugin = {
- .name = "sndfile",
- .stream_decode = sndfile_stream_decode,
- .scan_file = sndfile_scan_file,
- .suffixes = sndfile_suffixes,
- .mime_types = sndfile_mime_types,
+ "sndfile",
+ nullptr,
+ nullptr,
+ sndfile_stream_decode,
+ nullptr,
+ sndfile_scan_file,
+ nullptr,
+ nullptr,
+ sndfile_suffixes,
+ sndfile_mime_types,
};