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
362a6e6d
Commit
362a6e6d
authored
Jan 08, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
encoder/Plugin: move struct Encoder to EncoderInterface.hxx
parent
c76c7c68
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
276 additions
and
244 deletions
+276
-244
Makefile.am
Makefile.am
+1
-0
EncoderAPI.hxx
src/encoder/EncoderAPI.hxx
+1
-0
EncoderInterface.hxx
src/encoder/EncoderInterface.hxx
+268
-0
EncoderPlugin.hxx
src/encoder/EncoderPlugin.hxx
+1
-244
RecorderOutputPlugin.cxx
src/output/plugins/RecorderOutputPlugin.cxx
+1
-0
ShoutOutputPlugin.cxx
src/output/plugins/ShoutOutputPlugin.cxx
+1
-0
HttpdOutputPlugin.cxx
src/output/plugins/httpd/HttpdOutputPlugin.cxx
+1
-0
run_encoder.cxx
test/run_encoder.cxx
+1
-0
test_vorbis_encoder.cxx
test/test_vorbis_encoder.cxx
+1
-0
No files found.
Makefile.am
View file @
362a6e6d
...
...
@@ -1047,6 +1047,7 @@ ENCODER_LIBS = \
libencoder_plugins_a_SOURCES
=
\
src/encoder/EncoderAPI.hxx
\
src/encoder/EncoderInterface.hxx
\
src/encoder/EncoderPlugin.hxx
\
src/encoder/plugins/OggStream.hxx
\
src/encoder/plugins/NullEncoderPlugin.cxx
\
...
...
src/encoder/EncoderAPI.hxx
View file @
362a6e6d
...
...
@@ -27,6 +27,7 @@
// IWYU pragma: begin_exports
#include "EncoderInterface.hxx"
#include "EncoderPlugin.hxx"
#include "AudioFormat.hxx"
#include "tag/Tag.hxx"
...
...
src/encoder/EncoderInterface.hxx
0 → 100644
View file @
362a6e6d
/*
* Copyright (C) 2003-2015 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_ENCODER_INTERFACE_HXX
#define MPD_ENCODER_INTERFACE_HXX
#include "EncoderPlugin.hxx"
#include <assert.h>
struct
Encoder
{
const
EncoderPlugin
&
plugin
;
#ifndef NDEBUG
bool
open
,
pre_tag
,
tag
,
end
;
#endif
explicit
Encoder
(
const
EncoderPlugin
&
_plugin
)
:
plugin
(
_plugin
)
#ifndef NDEBUG
,
open
(
false
)
#endif
{}
};
/**
* Frees an encoder object.
*
* @param encoder the encoder
*/
static
inline
void
encoder_finish
(
Encoder
*
encoder
)
{
assert
(
!
encoder
->
open
);
encoder
->
plugin
.
finish
(
encoder
);
}
/**
* Opens an encoder object. You must call this prior to using it.
* Before you free it, you must call encoder_close(). You may open
* and close (reuse) one encoder any number of times.
*
* After this function returns successfully and before the first
* encoder_write() call, you should invoke encoder_read() to obtain
* the file header.
*
* @param encoder the encoder
* @param audio_format the encoder's input audio format; the plugin
* may modify the struct to adapt it to its abilities
* @return true on success
*/
static
inline
bool
encoder_open
(
Encoder
*
encoder
,
AudioFormat
&
audio_format
,
Error
&
error
)
{
assert
(
!
encoder
->
open
);
bool
success
=
encoder
->
plugin
.
open
(
encoder
,
audio_format
,
error
);
#ifndef NDEBUG
encoder
->
open
=
success
;
encoder
->
pre_tag
=
encoder
->
tag
=
encoder
->
end
=
false
;
#endif
return
success
;
}
/**
* Closes an encoder object. This disables the encoder, and readies
* it for reusal by calling encoder_open() again.
*
* @param encoder the encoder
*/
static
inline
void
encoder_close
(
Encoder
*
encoder
)
{
assert
(
encoder
->
open
);
if
(
encoder
->
plugin
.
close
!=
nullptr
)
encoder
->
plugin
.
close
(
encoder
);
#ifndef NDEBUG
encoder
->
open
=
false
;
#endif
}
/**
* Ends the stream: flushes the encoder object, generate an
* end-of-stream marker (if applicable), make everything which might
* currently be buffered available by encoder_read().
*
* After this function has been called, the encoder may not be usable
* for more data, and only encoder_read() and encoder_close() can be
* called.
*
* @param encoder the encoder
* @return true on success
*/
static
inline
bool
encoder_end
(
Encoder
*
encoder
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
end
);
#ifndef NDEBUG
encoder
->
end
=
true
;
#endif
/* this method is optional */
return
encoder
->
plugin
.
end
!=
nullptr
?
encoder
->
plugin
.
end
(
encoder
,
error
)
:
true
;
}
/**
* Flushes an encoder object, make everything which might currently be
* buffered available by encoder_read().
*
* @param encoder the encoder
* @return true on success
*/
static
inline
bool
encoder_flush
(
Encoder
*
encoder
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
!
encoder
->
tag
);
assert
(
!
encoder
->
end
);
/* this method is optional */
return
encoder
->
plugin
.
flush
!=
nullptr
?
encoder
->
plugin
.
flush
(
encoder
,
error
)
:
true
;
}
/**
* Prepare for sending a tag to the encoder. This is used by some
* encoders to flush the previous sub-stream, in preparation to begin
* a new one.
*
* @param encoder the encoder
* @param tag the tag object
* @return true on success
*/
static
inline
bool
encoder_pre_tag
(
Encoder
*
encoder
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
!
encoder
->
tag
);
assert
(
!
encoder
->
end
);
/* this method is optional */
bool
success
=
encoder
->
plugin
.
pre_tag
!=
nullptr
?
encoder
->
plugin
.
pre_tag
(
encoder
,
error
)
:
true
;
#ifndef NDEBUG
encoder
->
pre_tag
=
success
;
#endif
return
success
;
}
/**
* Sends a tag to the encoder.
*
* Instructions: call encoder_pre_tag(); then obtain flushed data with
* encoder_read(); finally call encoder_tag().
*
* @param encoder the encoder
* @param tag the tag object
* @return true on success
*/
static
inline
bool
encoder_tag
(
Encoder
*
encoder
,
const
Tag
&
tag
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
encoder
->
tag
);
assert
(
!
encoder
->
end
);
#ifndef NDEBUG
encoder
->
tag
=
false
;
#endif
/* this method is optional */
return
encoder
->
plugin
.
tag
!=
nullptr
?
encoder
->
plugin
.
tag
(
encoder
,
tag
,
error
)
:
true
;
}
/**
* Writes raw PCM data to the encoder.
*
* @param encoder the encoder
* @param data the buffer containing PCM samples
* @param length the length of the buffer in bytes
* @return true on success
*/
static
inline
bool
encoder_write
(
Encoder
*
encoder
,
const
void
*
data
,
size_t
length
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
!
encoder
->
tag
);
assert
(
!
encoder
->
end
);
return
encoder
->
plugin
.
write
(
encoder
,
data
,
length
,
error
);
}
/**
* Reads encoded data from the encoder.
*
* Call this repeatedly until no more data is returned.
*
* @param encoder the encoder
* @param dest the destination buffer to copy to
* @param length the maximum length of the destination buffer
* @return the number of bytes written to #dest
*/
static
inline
size_t
encoder_read
(
Encoder
*
encoder
,
void
*
dest
,
size_t
length
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
||
!
encoder
->
tag
);
#ifndef NDEBUG
if
(
encoder
->
pre_tag
)
{
encoder
->
pre_tag
=
false
;
encoder
->
tag
=
true
;
}
#endif
return
encoder
->
plugin
.
read
(
encoder
,
dest
,
length
);
}
/**
* Get mime type of encoded content.
*
* @param plugin the encoder plugin
* @return an constant string, nullptr on failure
*/
static
inline
const
char
*
encoder_get_mime_type
(
Encoder
*
encoder
)
{
/* this method is optional */
return
encoder
->
plugin
.
get_mime_type
!=
nullptr
?
encoder
->
plugin
.
get_mime_type
(
encoder
)
:
nullptr
;
}
#endif
src/encoder/EncoderPlugin.hxx
View file @
362a6e6d
...
...
@@ -20,31 +20,14 @@
#ifndef MPD_ENCODER_PLUGIN_HXX
#define MPD_ENCODER_PLUGIN_HXX
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
struct
Encoder
Plugin
;
struct
Encoder
;
struct
AudioFormat
;
struct
config_param
;
struct
Tag
;
class
Error
;
struct
Encoder
{
const
EncoderPlugin
&
plugin
;
#ifndef NDEBUG
bool
open
,
pre_tag
,
tag
,
end
;
#endif
explicit
Encoder
(
const
EncoderPlugin
&
_plugin
)
:
plugin
(
_plugin
)
#ifndef NDEBUG
,
open
(
false
)
#endif
{}
};
struct
EncoderPlugin
{
const
char
*
name
;
...
...
@@ -92,230 +75,4 @@ encoder_init(const EncoderPlugin &plugin, const config_param ¶m,
return
plugin
.
init
(
param
,
error_r
);
}
/**
* Frees an encoder object.
*
* @param encoder the encoder
*/
static
inline
void
encoder_finish
(
Encoder
*
encoder
)
{
assert
(
!
encoder
->
open
);
encoder
->
plugin
.
finish
(
encoder
);
}
/**
* Opens an encoder object. You must call this prior to using it.
* Before you free it, you must call encoder_close(). You may open
* and close (reuse) one encoder any number of times.
*
* After this function returns successfully and before the first
* encoder_write() call, you should invoke encoder_read() to obtain
* the file header.
*
* @param encoder the encoder
* @param audio_format the encoder's input audio format; the plugin
* may modify the struct to adapt it to its abilities
* @return true on success
*/
static
inline
bool
encoder_open
(
Encoder
*
encoder
,
AudioFormat
&
audio_format
,
Error
&
error
)
{
assert
(
!
encoder
->
open
);
bool
success
=
encoder
->
plugin
.
open
(
encoder
,
audio_format
,
error
);
#ifndef NDEBUG
encoder
->
open
=
success
;
encoder
->
pre_tag
=
encoder
->
tag
=
encoder
->
end
=
false
;
#endif
return
success
;
}
/**
* Closes an encoder object. This disables the encoder, and readies
* it for reusal by calling encoder_open() again.
*
* @param encoder the encoder
*/
static
inline
void
encoder_close
(
Encoder
*
encoder
)
{
assert
(
encoder
->
open
);
if
(
encoder
->
plugin
.
close
!=
nullptr
)
encoder
->
plugin
.
close
(
encoder
);
#ifndef NDEBUG
encoder
->
open
=
false
;
#endif
}
/**
* Ends the stream: flushes the encoder object, generate an
* end-of-stream marker (if applicable), make everything which might
* currently be buffered available by encoder_read().
*
* After this function has been called, the encoder may not be usable
* for more data, and only encoder_read() and encoder_close() can be
* called.
*
* @param encoder the encoder
* @return true on success
*/
static
inline
bool
encoder_end
(
Encoder
*
encoder
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
end
);
#ifndef NDEBUG
encoder
->
end
=
true
;
#endif
/* this method is optional */
return
encoder
->
plugin
.
end
!=
nullptr
?
encoder
->
plugin
.
end
(
encoder
,
error
)
:
true
;
}
/**
* Flushes an encoder object, make everything which might currently be
* buffered available by encoder_read().
*
* @param encoder the encoder
* @return true on success
*/
static
inline
bool
encoder_flush
(
Encoder
*
encoder
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
!
encoder
->
tag
);
assert
(
!
encoder
->
end
);
/* this method is optional */
return
encoder
->
plugin
.
flush
!=
nullptr
?
encoder
->
plugin
.
flush
(
encoder
,
error
)
:
true
;
}
/**
* Prepare for sending a tag to the encoder. This is used by some
* encoders to flush the previous sub-stream, in preparation to begin
* a new one.
*
* @param encoder the encoder
* @param tag the tag object
* @return true on success
*/
static
inline
bool
encoder_pre_tag
(
Encoder
*
encoder
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
!
encoder
->
tag
);
assert
(
!
encoder
->
end
);
/* this method is optional */
bool
success
=
encoder
->
plugin
.
pre_tag
!=
nullptr
?
encoder
->
plugin
.
pre_tag
(
encoder
,
error
)
:
true
;
#ifndef NDEBUG
encoder
->
pre_tag
=
success
;
#endif
return
success
;
}
/**
* Sends a tag to the encoder.
*
* Instructions: call encoder_pre_tag(); then obtain flushed data with
* encoder_read(); finally call encoder_tag().
*
* @param encoder the encoder
* @param tag the tag object
* @return true on success
*/
static
inline
bool
encoder_tag
(
Encoder
*
encoder
,
const
Tag
&
tag
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
encoder
->
tag
);
assert
(
!
encoder
->
end
);
#ifndef NDEBUG
encoder
->
tag
=
false
;
#endif
/* this method is optional */
return
encoder
->
plugin
.
tag
!=
nullptr
?
encoder
->
plugin
.
tag
(
encoder
,
tag
,
error
)
:
true
;
}
/**
* Writes raw PCM data to the encoder.
*
* @param encoder the encoder
* @param data the buffer containing PCM samples
* @param length the length of the buffer in bytes
* @return true on success
*/
static
inline
bool
encoder_write
(
Encoder
*
encoder
,
const
void
*
data
,
size_t
length
,
Error
&
error
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
);
assert
(
!
encoder
->
tag
);
assert
(
!
encoder
->
end
);
return
encoder
->
plugin
.
write
(
encoder
,
data
,
length
,
error
);
}
/**
* Reads encoded data from the encoder.
*
* Call this repeatedly until no more data is returned.
*
* @param encoder the encoder
* @param dest the destination buffer to copy to
* @param length the maximum length of the destination buffer
* @return the number of bytes written to #dest
*/
static
inline
size_t
encoder_read
(
Encoder
*
encoder
,
void
*
dest
,
size_t
length
)
{
assert
(
encoder
->
open
);
assert
(
!
encoder
->
pre_tag
||
!
encoder
->
tag
);
#ifndef NDEBUG
if
(
encoder
->
pre_tag
)
{
encoder
->
pre_tag
=
false
;
encoder
->
tag
=
true
;
}
#endif
return
encoder
->
plugin
.
read
(
encoder
,
dest
,
length
);
}
/**
* Get mime type of encoded content.
*
* @param plugin the encoder plugin
* @return an constant string, nullptr on failure
*/
static
inline
const
char
*
encoder_get_mime_type
(
Encoder
*
encoder
)
{
/* this method is optional */
return
encoder
->
plugin
.
get_mime_type
!=
nullptr
?
encoder
->
plugin
.
get_mime_type
(
encoder
)
:
nullptr
;
}
#endif
src/output/plugins/RecorderOutputPlugin.cxx
View file @
362a6e6d
...
...
@@ -21,6 +21,7 @@
#include "RecorderOutputPlugin.hxx"
#include "../OutputAPI.hxx"
#include "../Wrapper.hxx"
#include "encoder/EncoderInterface.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "encoder/EncoderList.hxx"
#include "config/ConfigError.hxx"
...
...
src/output/plugins/ShoutOutputPlugin.cxx
View file @
362a6e6d
...
...
@@ -20,6 +20,7 @@
#include "config.h"
#include "ShoutOutputPlugin.hxx"
#include "../OutputAPI.hxx"
#include "encoder/EncoderInterface.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "encoder/EncoderList.hxx"
#include "config/ConfigError.hxx"
...
...
src/output/plugins/httpd/HttpdOutputPlugin.cxx
View file @
362a6e6d
...
...
@@ -22,6 +22,7 @@
#include "HttpdInternal.hxx"
#include "HttpdClient.hxx"
#include "output/OutputAPI.hxx"
#include "encoder/EncoderInterface.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "encoder/EncoderList.hxx"
#include "system/Resolver.hxx"
...
...
test/run_encoder.cxx
View file @
362a6e6d
...
...
@@ -20,6 +20,7 @@
#include "config.h"
#include "encoder/EncoderList.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "encoder/EncoderInterface.hxx"
#include "AudioFormat.hxx"
#include "AudioParser.hxx"
#include "config/ConfigData.hxx"
...
...
test/test_vorbis_encoder.cxx
View file @
362a6e6d
...
...
@@ -20,6 +20,7 @@
#include "config.h"
#include "encoder/EncoderList.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "encoder/EncoderInterface.hxx"
#include "AudioFormat.hxx"
#include "config/ConfigData.hxx"
#include "stdbin.h"
...
...
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