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
f1034eb6
Commit
f1034eb6
authored
Apr 16, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/recorder: convert to C++
parent
ac9ebe14
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
88 additions
and
64 deletions
+88
-64
Makefile.am
Makefile.am
+1
-1
OutputList.cxx
src/OutputList.cxx
+1
-1
RecorderOutputPlugin.cxx
src/output/RecorderOutputPlugin.cxx
+83
-59
RecorderOutputPlugin.hxx
src/output/RecorderOutputPlugin.hxx
+3
-3
No files found.
Makefile.am
View file @
f1034eb6
...
...
@@ -879,7 +879,7 @@ endif
if
ENABLE_RECORDER_OUTPUT
liboutput_plugins_a_SOURCES
+=
\
src/output/
recorder_output_plugin.c src/output/recorder_output_plugin.h
src/output/
RecorderOutputPlugin.cxx src/output/RecorderOutputPlugin.hxx
endif
if
ENABLE_HTTPD_OUTPUT
...
...
src/OutputList.cxx
View file @
f1034eb6
...
...
@@ -33,7 +33,7 @@
#include "output/OSXOutputPlugin.hxx"
#include "output/pipe_output_plugin.h"
#include "output/PulseOutputPlugin.hxx"
#include "output/
recorder_output_plugin.h
"
#include "output/
RecorderOutputPlugin.hxx
"
#include "output/RoarOutputPlugin.hxx"
#include "output/shout_output_plugin.h"
#include "output/solaris_output_plugin.h"
...
...
src/output/
recorder_output_plugin.c
→
src/output/
RecorderOutputPlugin.cxx
View file @
f1034eb6
/*
* 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
...
...
@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "
recorder_output_plugin.h
"
#include "
RecorderOutputPlugin.hxx
"
#include "output_api.h"
#include "encoder_plugin.h"
#include "encoder_list.h"
...
...
@@ -34,7 +34,7 @@
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "recorder"
struct
recorder_o
utput
{
struct
RecorderO
utput
{
struct
audio_output
base
;
/**
...
...
@@ -56,6 +56,24 @@ struct recorder_output {
* The buffer for encoder_read().
*/
char
buffer
[
32768
];
bool
Initialize
(
const
config_param
*
param
,
GError
**
error_r
)
{
return
ao_base_init
(
&
base
,
&
recorder_output_plugin
,
param
,
error_r
);
}
void
Deinitialize
()
{
ao_base_finish
(
&
base
);
}
bool
Configure
(
const
config_param
*
param
,
GError
**
error_r
);
bool
WriteToFile
(
const
void
*
data
,
size_t
length
,
GError
**
error_r
);
/**
* Writes pending data from the encoder to the output file.
*/
bool
EncoderToFile
(
GError
**
error_r
);
};
/**
...
...
@@ -67,68 +85,71 @@ recorder_output_quark(void)
return
g_quark_from_static_string
(
"recorder_output"
);
}
static
struct
audio_output
*
recorder_output_init
(
const
struc
t
config_param
*
param
,
GError
**
error_r
)
inline
bool
RecorderOutput
::
Configure
(
cons
t
config_param
*
param
,
GError
**
error_r
)
{
struct
recorder_output
*
recorder
=
g_new
(
struct
recorder_output
,
1
);
if
(
!
ao_base_init
(
&
recorder
->
base
,
&
recorder_output_plugin
,
param
,
error_r
))
{
g_free
(
recorder
);
return
NULL
;
}
/* read configuration */
const
char
*
encoder_name
=
config_get_block_string
(
param
,
"encoder"
,
"vorbis"
);
const
struct
encoder_plugin
*
encoder_plugin
=
encoder_plugin_get
(
encoder_name
);
if
(
encoder_plugin
==
NULL
)
{
if
(
encoder_plugin
==
nullptr
)
{
g_set_error
(
error_r
,
recorder_output_quark
(),
0
,
"No such encoder: %s"
,
encoder_name
);
goto
failur
e
;
return
fals
e
;
}
recorder
->
path
=
config_get_block_string
(
param
,
"path"
,
NULL
);
if
(
recorder
->
path
==
NULL
)
{
path
=
config_get_block_string
(
param
,
"path"
,
nullptr
);
if
(
path
==
nullptr
)
{
g_set_error
(
error_r
,
recorder_output_quark
(),
0
,
"'path' not configured"
);
goto
failur
e
;
return
fals
e
;
}
/* initialize encoder */
recorder
->
encoder
=
encoder_init
(
encoder_plugin
,
param
,
error_r
);
if
(
recorder
->
encoder
==
NULL
)
goto
failur
e
;
encoder
=
encoder_init
(
encoder_plugin
,
param
,
error_r
);
if
(
encoder
==
nullptr
)
return
fals
e
;
return
&
recorder
->
base
;
return
true
;
}
static
audio_output
*
recorder_output_init
(
const
config_param
*
param
,
GError
**
error_r
)
{
RecorderOutput
*
recorder
=
new
RecorderOutput
();
if
(
!
recorder
->
Initialize
(
param
,
error_r
))
{
delete
recorder
;
return
nullptr
;
}
if
(
!
recorder
->
Configure
(
param
,
error_r
))
{
recorder
->
Deinitialize
();
delete
recorder
;
return
nullptr
;
}
failure:
ao_base_finish
(
&
recorder
->
base
);
g_free
(
recorder
);
return
NULL
;
return
&
recorder
->
base
;
}
static
void
recorder_output_finish
(
struct
audio_output
*
ao
)
{
struct
recorder_output
*
recorder
=
(
struct
recorder_o
utput
*
)
ao
;
RecorderOutput
*
recorder
=
(
RecorderO
utput
*
)
ao
;
encoder_finish
(
recorder
->
encoder
);
ao_base_finish
(
&
recorder
->
base
);
g_free
(
recorder
)
;
recorder
->
Deinitialize
(
);
delete
recorder
;
}
static
bool
recorder_write_to_file
(
struct
recorder_output
*
recorder
,
const
void
*
_data
,
size_t
length
,
GError
**
error_r
)
inline
bool
RecorderOutput
::
WriteToFile
(
const
void
*
_data
,
size_t
length
,
GError
**
error_r
)
{
assert
(
length
>
0
);
const
int
fd
=
recorder
->
fd
;
const
uint8_t
*
data
=
(
const
uint8_t
*
)
_data
,
*
end
=
data
+
length
;
while
(
true
)
{
...
...
@@ -145,33 +166,27 @@ recorder_write_to_file(struct recorder_output *recorder,
}
else
if
(
errno
!=
EINTR
)
{
g_set_error
(
error_r
,
recorder_output_quark
(),
0
,
"Failed to write to '%s': %s"
,
recorder
->
path
,
g_strerror
(
errno
));
path
,
g_strerror
(
errno
));
return
false
;
}
}
}
/**
* Writes pending data from the encoder to the output file.
*/
static
bool
recorder_output_encoder_to_file
(
struct
recorder_output
*
recorder
,
GError
**
error_r
)
inline
bool
RecorderOutput
::
EncoderToFile
(
GError
**
error_r
)
{
assert
(
recorder
->
fd
>=
0
);
assert
(
fd
>=
0
);
while
(
true
)
{
/* read from the encoder */
size_t
size
=
encoder_read
(
recorder
->
encoder
,
recorder
->
buffer
,
sizeof
(
recorder
->
buffer
));
size_t
size
=
encoder_read
(
encoder
,
buffer
,
sizeof
(
buffer
));
if
(
size
==
0
)
return
true
;
/* write everything into the file */
if
(
!
recorder_write_to_file
(
recorder
,
recorder
->
buffer
,
size
,
error_r
))
if
(
!
WriteToFile
(
buffer
,
size
,
error_r
))
return
false
;
}
}
...
...
@@ -181,7 +196,7 @@ recorder_output_open(struct audio_output *ao,
struct
audio_format
*
audio_format
,
GError
**
error_r
)
{
struct
recorder_output
*
recorder
=
(
struct
recorder_o
utput
*
)
ao
;
RecorderOutput
*
recorder
=
(
RecorderO
utput
*
)
ao
;
/* create the output file */
...
...
@@ -203,7 +218,7 @@ recorder_output_open(struct audio_output *ao,
return
false
;
}
if
(
!
recorder
_output_encoder_to_file
(
recorder
,
error_r
))
{
if
(
!
recorder
->
EncoderToFile
(
error_r
))
{
encoder_close
(
recorder
->
encoder
);
close
(
recorder
->
fd
);
unlink
(
recorder
->
path
);
...
...
@@ -216,12 +231,12 @@ recorder_output_open(struct audio_output *ao,
static
void
recorder_output_close
(
struct
audio_output
*
ao
)
{
struct
recorder_output
*
recorder
=
(
struct
recorder_o
utput
*
)
ao
;
RecorderOutput
*
recorder
=
(
RecorderO
utput
*
)
ao
;
/* flush the encoder and write the rest to the file */
if
(
encoder_end
(
recorder
->
encoder
,
NULL
))
recorder
_output_encoder_to_file
(
recorder
,
NULL
);
if
(
encoder_end
(
recorder
->
encoder
,
nullptr
))
recorder
->
EncoderToFile
(
nullptr
);
/* now really close everything */
...
...
@@ -234,18 +249,27 @@ static size_t
recorder_output_play
(
struct
audio_output
*
ao
,
const
void
*
chunk
,
size_t
size
,
GError
**
error_r
)
{
struct
recorder_output
*
recorder
=
(
struct
recorder_o
utput
*
)
ao
;
RecorderOutput
*
recorder
=
(
RecorderO
utput
*
)
ao
;
return
encoder_write
(
recorder
->
encoder
,
chunk
,
size
,
error_r
)
&&
recorder
_output_encoder_to_file
(
recorder
,
error_r
)
recorder
->
EncoderToFile
(
error_r
)
?
size
:
0
;
}
const
struct
audio_output_plugin
recorder_output_plugin
=
{
.
name
=
"recorder"
,
.
init
=
recorder_output_init
,
.
finish
=
recorder_output_finish
,
.
open
=
recorder_output_open
,
.
close
=
recorder_output_close
,
.
play
=
recorder_output_play
,
"recorder"
,
nullptr
,
recorder_output_init
,
recorder_output_finish
,
nullptr
,
nullptr
,
recorder_output_open
,
recorder_output_close
,
nullptr
,
nullptr
,
recorder_output_play
,
nullptr
,
nullptr
,
nullptr
,
nullptr
,
};
src/output/
recorder_output_plugin.h
→
src/output/
RecorderOutputPlugin.hxx
View file @
f1034eb6
/*
* 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_RECORDER_OUTPUT_PLUGIN_H
#define MPD_RECORDER_OUTPUT_PLUGIN_H
#ifndef MPD_RECORDER_OUTPUT_PLUGIN_H
XX
#define MPD_RECORDER_OUTPUT_PLUGIN_H
XX
extern
const
struct
audio_output_plugin
recorder_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