decoder/audiofile: convert to C++

This commit is contained in:
Max Kellermann 2013-07-28 12:37:55 +02:00
parent 352d7f477e
commit b25d5c5d33
4 changed files with 54 additions and 21 deletions

View File

@ -566,7 +566,9 @@ libdecoder_plugins_a_SOURCES += \
endif endif
if HAVE_AUDIOFILE if HAVE_AUDIOFILE
libdecoder_plugins_a_SOURCES += src/decoder/audiofile_decoder_plugin.c libdecoder_plugins_a_SOURCES += \
src/decoder/AudiofileDecoderPlugin.cxx \
src/decoder/AudiofileDecoderPlugin.hxx
endif endif
if ENABLE_MIKMOD_DECODER if ENABLE_MIKMOD_DECODER

View File

@ -22,6 +22,7 @@
#include "decoder_plugin.h" #include "decoder_plugin.h"
#include "conf.h" #include "conf.h"
#include "mpd_error.h" #include "mpd_error.h"
#include "decoder/AudiofileDecoderPlugin.hxx"
#include "decoder/pcm_decoder_plugin.h" #include "decoder/pcm_decoder_plugin.h"
#include "decoder/DsdiffDecoderPlugin.hxx" #include "decoder/DsdiffDecoderPlugin.hxx"
#include "decoder/DsfDecoderPlugin.hxx" #include "decoder/DsfDecoderPlugin.hxx"
@ -41,7 +42,6 @@
extern const struct decoder_plugin mpg123_decoder_plugin; extern const struct decoder_plugin mpg123_decoder_plugin;
extern const struct decoder_plugin sndfile_decoder_plugin; extern const struct decoder_plugin sndfile_decoder_plugin;
extern const struct decoder_plugin audiofile_decoder_plugin;
extern const struct decoder_plugin mpcdec_decoder_plugin; extern const struct decoder_plugin mpcdec_decoder_plugin;
extern const struct decoder_plugin modplug_decoder_plugin; extern const struct decoder_plugin modplug_decoder_plugin;
extern const struct decoder_plugin mikmod_decoder_plugin; extern const struct decoder_plugin mikmod_decoder_plugin;

View File

@ -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 * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -18,6 +18,7 @@
*/ */
#include "config.h" #include "config.h"
#include "AudiofileDecoderPlugin.hxx"
#include "decoder_api.h" #include "decoder_api.h"
#include "audio_check.h" #include "audio_check.h"
#include "tag_handler.h" #include "tag_handler.h"
@ -37,7 +38,7 @@
static int audiofile_get_duration(const char *file) static int audiofile_get_duration(const char *file)
{ {
int total_time; int total_time;
AFfilehandle af_fp = afOpenFile(file, "r", NULL); AFfilehandle af_fp = afOpenFile(file, "r", nullptr);
if (af_fp == AF_NULL_FILEHANDLE) { if (af_fp == AF_NULL_FILEHANDLE) {
return -1; return -1;
} }
@ -52,11 +53,11 @@ static ssize_t
audiofile_file_read(AFvirtualfile *vfile, void *data, size_t length) audiofile_file_read(AFvirtualfile *vfile, void *data, size_t length)
{ {
struct input_stream *is = (struct input_stream *) vfile->closure; struct input_stream *is = (struct input_stream *) vfile->closure;
GError *error = NULL; GError *error = nullptr;
size_t nbytes; size_t nbytes;
nbytes = input_stream_lock_read(is, data, length, &error); nbytes = input_stream_lock_read(is, data, length, &error);
if (nbytes == 0 && error != NULL) { if (nbytes == 0 && error != nullptr) {
g_warning("%s", error->message); g_warning("%s", error->message);
g_error_free(error); g_error_free(error);
return -1; return -1;
@ -82,9 +83,9 @@ audiofile_file_tell(AFvirtualfile *vfile)
static void static void
audiofile_file_destroy(AFvirtualfile *vfile) audiofile_file_destroy(AFvirtualfile *vfile)
{ {
assert(vfile->closure != NULL); assert(vfile->closure != nullptr);
vfile->closure = NULL; vfile->closure = nullptr;
} }
static AFfileoffset static AFfileoffset
@ -92,7 +93,7 @@ audiofile_file_seek(AFvirtualfile *vfile, AFfileoffset offset, int is_relative)
{ {
struct input_stream *is = (struct input_stream *) vfile->closure; struct input_stream *is = (struct input_stream *) vfile->closure;
int whence = (is_relative ? SEEK_CUR : SEEK_SET); int whence = (is_relative ? SEEK_CUR : SEEK_SET);
if (input_stream_lock_seek(is, offset, whence, NULL)) { if (input_stream_lock_seek(is, offset, whence, nullptr)) {
return input_stream_get_offset(is); return input_stream_get_offset(is);
} else { } else {
return -1; return -1;
@ -102,9 +103,9 @@ audiofile_file_seek(AFvirtualfile *vfile, AFfileoffset offset, int is_relative)
static AFvirtualfile * static AFvirtualfile *
setup_virtual_fops(struct input_stream *stream) setup_virtual_fops(struct input_stream *stream)
{ {
AFvirtualfile *vf = g_malloc(sizeof(AFvirtualfile)); AFvirtualfile *vf = new AFvirtualfile();
vf->closure = stream; vf->closure = stream;
vf->write = NULL; vf->write = nullptr;
vf->read = audiofile_file_read; vf->read = audiofile_file_read;
vf->length = audiofile_file_length; vf->length = audiofile_file_length;
vf->destroy = audiofile_file_destroy; vf->destroy = audiofile_file_destroy;
@ -155,7 +156,7 @@ audiofile_setup_sample_format(AFfilehandle af_fp)
static void static void
audiofile_stream_decode(struct decoder *decoder, struct input_stream *is) audiofile_stream_decode(struct decoder *decoder, struct input_stream *is)
{ {
GError *error = NULL; GError *error = nullptr;
AFvirtualfile *vf; AFvirtualfile *vf;
int fs, frame_count; int fs, frame_count;
AFfilehandle af_fp; AFfilehandle af_fp;
@ -173,7 +174,7 @@ audiofile_stream_decode(struct decoder *decoder, struct input_stream *is)
vf = setup_virtual_fops(is); vf = setup_virtual_fops(is);
af_fp = afOpenVirtualFile(vf, "r", NULL); af_fp = afOpenVirtualFile(vf, "r", nullptr);
if (af_fp == AF_NULL_FILEHANDLE) { if (af_fp == AF_NULL_FILEHANDLE) {
g_warning("failed to input stream\n"); g_warning("failed to input stream\n");
return; return;
@ -206,7 +207,7 @@ audiofile_stream_decode(struct decoder *decoder, struct input_stream *is)
if (ret <= 0) if (ret <= 0)
break; break;
cmd = decoder_data(decoder, NULL, cmd = decoder_data(decoder, nullptr,
chunk, ret * fs, chunk, ret * fs,
bit_rate); bit_rate);
@ -240,19 +241,24 @@ audiofile_scan_file(const char *file,
} }
static const char *const audiofile_suffixes[] = { static const char *const audiofile_suffixes[] = {
"wav", "au", "aiff", "aif", NULL "wav", "au", "aiff", "aif", nullptr
}; };
static const char *const audiofile_mime_types[] = { static const char *const audiofile_mime_types[] = {
"audio/x-wav", "audio/x-wav",
"audio/x-aiff", "audio/x-aiff",
NULL nullptr
}; };
const struct decoder_plugin audiofile_decoder_plugin = { const struct decoder_plugin audiofile_decoder_plugin = {
.name = "audiofile", "audiofile",
.stream_decode = audiofile_stream_decode, nullptr,
.scan_file = audiofile_scan_file, nullptr,
.suffixes = audiofile_suffixes, audiofile_stream_decode,
.mime_types = audiofile_mime_types, nullptr,
audiofile_scan_file,
nullptr,
nullptr,
audiofile_suffixes,
audiofile_mime_types,
}; };

View File

@ -0,0 +1,25 @@
/*
* 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
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_DECODER_AUDIOFILE_HXX
#define MPD_DECODER_AUDIOFILE_HXX
extern const struct decoder_plugin audiofile_decoder_plugin;
#endif