Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
64819631
Commit
64819631
authored
Jul 30, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output_api: convert to C++
parent
c75cb67c
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
27 additions
and
27 deletions
+27
-27
Makefile.am
Makefile.am
+1
-1
OutputAPI.hxx
src/OutputAPI.hxx
+3
-3
OutputInit.cxx
src/OutputInit.cxx
+1
-1
OutputList.cxx
src/OutputList.cxx
+1
-1
OutputThread.cxx
src/OutputThread.cxx
+1
-1
AlsaMixerPlugin.cxx
src/mixer/AlsaMixerPlugin.cxx
+1
-1
OssMixerPlugin.cxx
src/mixer/OssMixerPlugin.cxx
+1
-1
RoarMixerPlugin.cxx
src/mixer/RoarMixerPlugin.cxx
+1
-1
WinmmMixerPlugin.cxx
src/mixer/WinmmMixerPlugin.cxx
+1
-1
AlsaOutputPlugin.cxx
src/output/AlsaOutputPlugin.cxx
+1
-1
AoOutputPlugin.cxx
src/output/AoOutputPlugin.cxx
+1
-1
FifoOutputPlugin.cxx
src/output/FifoOutputPlugin.cxx
+1
-1
HttpdOutputPlugin.cxx
src/output/HttpdOutputPlugin.cxx
+1
-1
JackOutputPlugin.cxx
src/output/JackOutputPlugin.cxx
+1
-1
NullOutputPlugin.cxx
src/output/NullOutputPlugin.cxx
+1
-1
OSXOutputPlugin.cxx
src/output/OSXOutputPlugin.cxx
+1
-1
OpenALOutputPlugin.cxx
src/output/OpenALOutputPlugin.cxx
+1
-1
OssOutputPlugin.cxx
src/output/OssOutputPlugin.cxx
+1
-1
PipeOutputPlugin.cxx
src/output/PipeOutputPlugin.cxx
+1
-1
PulseOutputPlugin.cxx
src/output/PulseOutputPlugin.cxx
+1
-1
RecorderOutputPlugin.cxx
src/output/RecorderOutputPlugin.cxx
+1
-1
RoarOutputPlugin.cxx
src/output/RoarOutputPlugin.cxx
+1
-1
ShoutOutputPlugin.cxx
src/output/ShoutOutputPlugin.cxx
+1
-1
SolarisOutputPlugin.cxx
src/output/SolarisOutputPlugin.cxx
+1
-1
WinmmOutputPlugin.cxx
src/output/WinmmOutputPlugin.cxx
+1
-1
No files found.
Makefile.am
View file @
64819631
...
...
@@ -52,7 +52,6 @@ mpd_headers = \
src/check.h
\
src/ack.h
\
src/audio_format.h
\
src/output_api.h
\
src/filter_internal.h
\
src/command.h
\
src/conf.h
\
...
...
@@ -770,6 +769,7 @@ OUTPUT_LIBS = \
$(SHOUT_LIBS)
OUTPUT_API_SRC
=
\
src/OutputAPI.hxx
\
src/OutputInternal.hxx
\
src/OutputList.cxx src/OutputList.hxx
\
src/OutputAll.cxx src/OutputAll.hxx
\
...
...
src/
output_api.h
→
src/
OutputAPI.hxx
View file @
64819631
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_OUTPUT_API_H
#define MPD_OUTPUT_API_H
#ifndef MPD_OUTPUT_API_H
XX
#define MPD_OUTPUT_API_H
xX
#include "OutputPlugin.hxx"
#include "OutputInternal.hxx"
...
...
src/OutputInit.cxx
View file @
64819631
...
...
@@ -22,8 +22,8 @@
#include "OutputControl.hxx"
#include "OutputList.hxx"
#include "OutputError.hxx"
#include "OutputAPI.hxx"
#include "FilterConfig.hxx"
#include "output_api.h"
#include "AudioParser.hxx"
#include "MixerList.hxx"
#include "MixerType.hxx"
...
...
src/OutputList.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "OutputList.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "output/AlsaOutputPlugin.hxx"
#include "output/AoOutputPlugin.hxx"
#include "output/FifoOutputPlugin.hxx"
...
...
src/OutputThread.cxx
View file @
64819631
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "OutputThread.hxx"
#include "OutputInternal.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "pcm/PcmMix.hxx"
#include "notify.hxx"
#include "FilterInternal.hxx"
...
...
src/mixer/AlsaMixerPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "MixerInternal.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "GlobalEvents.hxx"
#include "Main.hxx"
#include "event/MultiSocketMonitor.hxx"
...
...
src/mixer/OssMixerPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "MixerInternal.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "fd_util.h"
#include <glib.h>
...
...
src/mixer/RoarMixerPlugin.cxx
View file @
64819631
...
...
@@ -21,7 +21,7 @@
#include "config.h"
#include "MixerInternal.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "output/RoarOutputPlugin.hxx"
struct
RoarMixer
final
:
public
Mixer
{
...
...
src/mixer/WinmmMixerPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "MixerInternal.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "output/WinmmOutputPlugin.hxx"
#include <mmsystem.h>
...
...
src/output/AlsaOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "AlsaOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "MixerList.hxx"
#include "pcm/PcmExport.hxx"
#include "util/Manual.hxx"
...
...
src/output/AoOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "AoOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include <ao/ao.h>
#include <glib.h>
...
...
src/output/FifoOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "FifoOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "Timer.hxx"
#include "fd_util.h"
#include "open.h"
...
...
src/output/HttpdOutputPlugin.cxx
View file @
64819631
...
...
@@ -21,7 +21,7 @@
#include "HttpdOutputPlugin.hxx"
#include "HttpdInternal.hxx"
#include "HttpdClient.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "encoder_plugin.h"
#include "EncoderList.hxx"
#include "resolver.h"
...
...
src/output/JackOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "JackOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include <assert.h>
...
...
src/output/NullOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "NullOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "Timer.hxx"
#include <assert.h>
...
...
src/output/OSXOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "OSXOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "util/fifo_buffer.h"
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
...
...
src/output/OpenALOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "OpenALOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include <glib.h>
...
...
src/output/OssOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "OssOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "MixerList.hxx"
#include "fd_util.h"
...
...
src/output/PipeOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "PipeOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include <stdio.h>
#include <errno.h>
...
...
src/output/PulseOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "PulseOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "MixerList.hxx"
#include "mixer/PulseMixerPlugin.hxx"
...
...
src/output/RecorderOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "RecorderOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "encoder_plugin.h"
#include "EncoderList.hxx"
#include "fd_util.h"
...
...
src/output/RoarOutputPlugin.cxx
View file @
64819631
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "RoarOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "MixerList.hxx"
#include "thread/Mutex.hxx"
...
...
src/output/ShoutOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "ShoutOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "encoder_plugin.h"
#include "EncoderList.hxx"
#include "mpd_error.h"
...
...
src/output/SolarisOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "SolarisOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "fd_util.h"
#include <glib.h>
...
...
src/output/WinmmOutputPlugin.cxx
View file @
64819631
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "WinmmOutputPlugin.hxx"
#include "
output_api.h
"
#include "
OutputAPI.hxx
"
#include "pcm/pcm_buffer.h"
#include "MixerList.hxx"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment