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
86c276f5
Commit
86c276f5
authored
Apr 17, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/ao: convert to C++
parent
16656920
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
88 additions
and
63 deletions
+88
-63
Makefile.am
Makefile.am
+1
-1
OutputList.cxx
src/OutputList.cxx
+1
-1
AoOutputPlugin.cxx
src/output/AoOutputPlugin.cxx
+83
-58
AoOutputPlugin.hxx
src/output/AoOutputPlugin.hxx
+3
-3
No files found.
Makefile.am
View file @
86c276f5
...
@@ -817,7 +817,7 @@ endif
...
@@ -817,7 +817,7 @@ endif
if
HAVE_AO
if
HAVE_AO
liboutput_plugins_a_SOURCES
+=
\
liboutput_plugins_a_SOURCES
+=
\
src/output/
ao_output_plugin.c src/output/ao_output_plugin.h
src/output/
AoOutputPlugin.cxx src/output/AoOutputPlugin.hxx
endif
endif
if
HAVE_FIFO
if
HAVE_FIFO
...
...
src/OutputList.cxx
View file @
86c276f5
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
#include "OutputList.hxx"
#include "OutputList.hxx"
#include "output_api.h"
#include "output_api.h"
#include "output/AlsaOutputPlugin.hxx"
#include "output/AlsaOutputPlugin.hxx"
#include "output/
ao_output_plugin.h
"
#include "output/
AoOutputPlugin.hxx
"
#include "output/FifoOutputPlugin.hxx"
#include "output/FifoOutputPlugin.hxx"
#include "output/HttpdOutputPlugin.hxx"
#include "output/HttpdOutputPlugin.hxx"
#include "output/JackOutputPlugin.hxx"
#include "output/JackOutputPlugin.hxx"
...
...
src/output/
ao_output_plugin.c
→
src/output/
AoOutputPlugin.cxx
View file @
86c276f5
/*
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
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,7 +18,7 @@
...
@@ -18,7 +18,7 @@
*/
*/
#include "config.h"
#include "config.h"
#include "
ao_output_plugin.h
"
#include "
AoOutputPlugin.hxx
"
#include "output_api.h"
#include "output_api.h"
#include <ao/ao.h>
#include <ao/ao.h>
...
@@ -28,18 +28,29 @@
...
@@ -28,18 +28,29 @@
#define G_LOG_DOMAIN "ao"
#define G_LOG_DOMAIN "ao"
/* An ao_sample_format, with all fields set to zero: */
/* An ao_sample_format, with all fields set to zero: */
static
const
ao_sample_format
OUR_AO_FORMAT_INITIALIZER
;
static
ao_sample_format
OUR_AO_FORMAT_INITIALIZER
;
static
unsigned
ao_output_ref
;
static
unsigned
ao_output_ref
;
struct
ao_data
{
struct
AoOutput
{
struct
audio_output
base
;
struct
audio_output
base
;
size_t
write_size
;
size_t
write_size
;
int
driver
;
int
driver
;
ao_option
*
options
;
ao_option
*
options
;
ao_device
*
device
;
ao_device
*
device
;
}
AoData
;
bool
Initialize
(
const
config_param
*
param
,
GError
**
error_r
)
{
return
ao_base_init
(
&
base
,
&
ao_output_plugin
,
param
,
error_r
);
}
void
Deinitialize
()
{
ao_base_finish
(
&
base
);
}
bool
Configure
(
const
config_param
*
param
,
GError
**
error_r
);
};
static
inline
GQuark
static
inline
GQuark
ao_output_quark
(
void
)
ao_output_quark
(
void
)
...
@@ -81,23 +92,14 @@ ao_output_error(GError **error_r)
...
@@ -81,23 +92,14 @@ ao_output_error(GError **error_r)
"%s"
,
error
);
"%s"
,
error
);
}
}
static
struct
audio_output
*
inline
bool
ao_output_init
(
const
struct
config_param
*
param
,
AoOutput
::
Configure
(
const
config_param
*
param
,
GError
**
error_r
)
GError
**
error
)
{
{
struct
ao_data
*
ad
=
g_new
(
struct
ao_data
,
1
);
if
(
!
ao_base_init
(
&
ad
->
base
,
&
ao_output_plugin
,
param
,
error
))
{
g_free
(
ad
);
return
NULL
;
}
ao_info
*
ai
;
const
char
*
value
;
const
char
*
value
;
ad
->
options
=
NULL
;
options
=
nullptr
;
ad
->
write_size
=
config_get_block_unsigned
(
param
,
"write_size"
,
1024
);
write_size
=
config_get_block_unsigned
(
param
,
"write_size"
,
1024
);
if
(
ao_output_ref
==
0
)
{
if
(
ao_output_ref
==
0
)
{
ao_initialize
();
ao_initialize
();
...
@@ -106,53 +108,67 @@ ao_output_init(const struct config_param *param,
...
@@ -106,53 +108,67 @@ ao_output_init(const struct config_param *param,
value
=
config_get_block_string
(
param
,
"driver"
,
"default"
);
value
=
config_get_block_string
(
param
,
"driver"
,
"default"
);
if
(
0
==
strcmp
(
value
,
"default"
))
if
(
0
==
strcmp
(
value
,
"default"
))
ad
->
driver
=
ao_default_driver_id
();
driver
=
ao_default_driver_id
();
else
else
ad
->
driver
=
ao_driver_id
(
value
);
driver
=
ao_driver_id
(
value
);
if
(
ad
->
driver
<
0
)
{
if
(
driver
<
0
)
{
g_set_error
(
error
,
ao_output_quark
(),
0
,
g_set_error
(
error
_r
,
ao_output_quark
(),
0
,
"
\"
%s
\"
is not a valid ao driver"
,
"
\"
%s
\"
is not a valid ao driver"
,
value
);
value
);
ao_base_finish
(
&
ad
->
base
);
return
false
;
g_free
(
ad
);
return
NULL
;
}
}
if
((
ai
=
ao_driver_info
(
ad
->
driver
))
==
NULL
)
{
ao_info
*
ai
=
ao_driver_info
(
driver
);
g_set_error
(
error
,
ao_output_quark
(),
0
,
if
(
ai
==
nullptr
)
{
g_set_error
(
error_r
,
ao_output_quark
(),
0
,
"problems getting driver info"
);
"problems getting driver info"
);
ao_base_finish
(
&
ad
->
base
);
return
false
;
g_free
(
ad
);
return
NULL
;
}
}
g_debug
(
"using ao driver
\"
%s
\"
for
\"
%s
\"\n
"
,
ai
->
short_name
,
g_debug
(
"using ao driver
\"
%s
\"
for
\"
%s
\"\n
"
,
ai
->
short_name
,
config_get_block_string
(
param
,
"name"
,
NULL
));
config_get_block_string
(
param
,
"name"
,
nullptr
));
value
=
config_get_block_string
(
param
,
"options"
,
NULL
);
value
=
config_get_block_string
(
param
,
"options"
,
nullptr
);
if
(
value
!=
NULL
)
{
if
(
value
!=
nullptr
)
{
gchar
**
options
=
g_strsplit
(
value
,
";"
,
0
);
gchar
**
_
options
=
g_strsplit
(
value
,
";"
,
0
);
for
(
unsigned
i
=
0
;
options
[
i
]
!=
NULL
;
++
i
)
{
for
(
unsigned
i
=
0
;
_options
[
i
]
!=
nullptr
;
++
i
)
{
gchar
**
key_value
=
g_strsplit
(
options
[
i
],
"="
,
2
);
gchar
**
key_value
=
g_strsplit
(
_
options
[
i
],
"="
,
2
);
if
(
key_value
[
0
]
==
NULL
||
key_value
[
1
]
==
NULL
)
{
if
(
key_value
[
0
]
==
nullptr
||
key_value
[
1
]
==
nullptr
)
{
g_set_error
(
error
,
ao_output_quark
(),
0
,
g_set_error
(
error
_r
,
ao_output_quark
(),
0
,
"problems parsing options
\"
%s
\"
"
,
"problems parsing options
\"
%s
\"
"
,
options
[
i
]);
_options
[
i
]);
ao_base_finish
(
&
ad
->
base
);
return
false
;
g_free
(
ad
);
return
NULL
;
}
}
ao_append_option
(
&
ad
->
options
,
key_value
[
0
],
ao_append_option
(
&
options
,
key_value
[
0
],
key_value
[
1
]);
key_value
[
1
]);
g_strfreev
(
key_value
);
g_strfreev
(
key_value
);
}
}
g_strfreev
(
options
);
g_strfreev
(
_options
);
}
return
true
;
}
static
struct
audio_output
*
ao_output_init
(
const
config_param
*
param
,
GError
**
error_r
)
{
AoOutput
*
ad
=
new
AoOutput
();
if
(
!
ad
->
Initialize
(
param
,
error_r
))
{
delete
ad
;
return
nullptr
;
}
if
(
!
ad
->
Configure
(
param
,
error_r
))
{
ad
->
Deinitialize
();
delete
ad
;
return
nullptr
;
}
}
return
&
ad
->
base
;
return
&
ad
->
base
;
...
@@ -161,11 +177,11 @@ ao_output_init(const struct config_param *param,
...
@@ -161,11 +177,11 @@ ao_output_init(const struct config_param *param,
static
void
static
void
ao_output_finish
(
struct
audio_output
*
ao
)
ao_output_finish
(
struct
audio_output
*
ao
)
{
{
struct
ao_data
*
ad
=
(
struct
ao_data
*
)
ao
;
AoOutput
*
ad
=
(
AoOutput
*
)
ao
;
ao_free_options
(
ad
->
options
);
ao_free_options
(
ad
->
options
);
a
o_base_finish
(
&
ad
->
base
);
a
d
->
Deinitialize
(
);
g_free
(
ad
)
;
delete
ad
;
ao_output_ref
--
;
ao_output_ref
--
;
...
@@ -176,7 +192,7 @@ ao_output_finish(struct audio_output *ao)
...
@@ -176,7 +192,7 @@ ao_output_finish(struct audio_output *ao)
static
void
static
void
ao_output_close
(
struct
audio_output
*
ao
)
ao_output_close
(
struct
audio_output
*
ao
)
{
{
struct
ao_data
*
ad
=
(
struct
ao_data
*
)
ao
;
AoOutput
*
ad
=
(
AoOutput
*
)
ao
;
ao_close
(
ad
->
device
);
ao_close
(
ad
->
device
);
}
}
...
@@ -186,7 +202,7 @@ ao_output_open(struct audio_output *ao, struct audio_format *audio_format,
...
@@ -186,7 +202,7 @@ ao_output_open(struct audio_output *ao, struct audio_format *audio_format,
GError
**
error
)
GError
**
error
)
{
{
ao_sample_format
format
=
OUR_AO_FORMAT_INITIALIZER
;
ao_sample_format
format
=
OUR_AO_FORMAT_INITIALIZER
;
struct
ao_data
*
ad
=
(
struct
ao_data
*
)
ao
;
AoOutput
*
ad
=
(
AoOutput
*
)
ao
;
switch
(
audio_format
->
format
)
{
switch
(
audio_format
->
format
)
{
case
SAMPLE_FORMAT_S8
:
case
SAMPLE_FORMAT_S8
:
...
@@ -212,7 +228,7 @@ ao_output_open(struct audio_output *ao, struct audio_format *audio_format,
...
@@ -212,7 +228,7 @@ ao_output_open(struct audio_output *ao, struct audio_format *audio_format,
ad
->
device
=
ao_open_live
(
ad
->
driver
,
&
format
,
ad
->
options
);
ad
->
device
=
ao_open_live
(
ad
->
driver
,
&
format
,
ad
->
options
);
if
(
ad
->
device
==
NULL
)
{
if
(
ad
->
device
==
nullptr
)
{
ao_output_error
(
error
);
ao_output_error
(
error
);
return
false
;
return
false
;
}
}
...
@@ -230,7 +246,7 @@ static int ao_play_deconst(ao_device *device, const void *output_samples,
...
@@ -230,7 +246,7 @@ static int ao_play_deconst(ao_device *device, const void *output_samples,
{
{
union
{
union
{
const
void
*
in
;
const
void
*
in
;
void
*
out
;
char
*
out
;
}
u
;
}
u
;
u
.
in
=
output_samples
;
u
.
in
=
output_samples
;
...
@@ -241,7 +257,7 @@ static size_t
...
@@ -241,7 +257,7 @@ static size_t
ao_output_play
(
struct
audio_output
*
ao
,
const
void
*
chunk
,
size_t
size
,
ao_output_play
(
struct
audio_output
*
ao
,
const
void
*
chunk
,
size_t
size
,
GError
**
error
)
GError
**
error
)
{
{
struct
ao_data
*
ad
=
(
struct
ao_data
*
)
ao
;
AoOutput
*
ad
=
(
AoOutput
*
)
ao
;
if
(
size
>
ad
->
write_size
)
if
(
size
>
ad
->
write_size
)
size
=
ad
->
write_size
;
size
=
ad
->
write_size
;
...
@@ -255,10 +271,19 @@ ao_output_play(struct audio_output *ao, const void *chunk, size_t size,
...
@@ -255,10 +271,19 @@ ao_output_play(struct audio_output *ao, const void *chunk, size_t size,
}
}
const
struct
audio_output_plugin
ao_output_plugin
=
{
const
struct
audio_output_plugin
ao_output_plugin
=
{
.
name
=
"ao"
,
"ao"
,
.
init
=
ao_output_init
,
nullptr
,
.
finish
=
ao_output_finish
,
ao_output_init
,
.
open
=
ao_output_open
,
ao_output_finish
,
.
close
=
ao_output_close
,
nullptr
,
.
play
=
ao_output_play
,
nullptr
,
ao_output_open
,
ao_output_close
,
nullptr
,
nullptr
,
ao_output_play
,
nullptr
,
nullptr
,
nullptr
,
nullptr
,
};
};
src/output/
ao_output_plugin.h
→
src/output/
AoOutputPlugin.hxx
View file @
86c276f5
/*
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
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
...
@@ -17,8 +17,8 @@
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
*/
#ifndef MPD_AO_OUTPUT_PLUGIN_H
#ifndef MPD_AO_OUTPUT_PLUGIN_H
XX
#define MPD_AO_OUTPUT_PLUGIN_H
#define MPD_AO_OUTPUT_PLUGIN_H
XX
extern
const
struct
audio_output_plugin
ao_output_plugin
;
extern
const
struct
audio_output_plugin
ao_output_plugin
;
...
...
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