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
4fabfdab
Commit
4fabfdab
authored
Aug 26, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
filter/Filter: allow throwing any exception
parent
2e9b5e4e
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
Filter.hxx
src/filter/Filter.hxx
+1
-1
LoadChain.hxx
src/filter/LoadChain.hxx
+1
-1
LoadOne.hxx
src/filter/LoadOne.hxx
+1
-1
Prepared.hxx
src/filter/Prepared.hxx
+1
-1
ConvertFilterPlugin.hxx
src/filter/plugins/ConvertFilterPlugin.hxx
+1
-1
No files found.
src/filter/Filter.hxx
View file @
4fabfdab
...
@@ -54,7 +54,7 @@ public:
...
@@ -54,7 +54,7 @@ public:
/**
/**
* Filters a block of PCM data.
* Filters a block of PCM data.
*
*
* Throws
std::runtime_error
on error.
* Throws on error.
*
*
* @param src the input buffer
* @param src the input buffer
* @return the destination buffer on success (will be
* @return the destination buffer on success (will be
...
...
src/filter/LoadChain.hxx
View file @
4fabfdab
...
@@ -28,7 +28,7 @@ class PreparedFilter;
...
@@ -28,7 +28,7 @@ class PreparedFilter;
* "name1, name2, name3, ..." by looking up each name among the
* "name1, name2, name3, ..." by looking up each name among the
* configured filter sections.
* configured filter sections.
*
*
* Throws
std::runtime_error
on error.
* Throws on error.
*
*
* @param chain the chain to append filters on
* @param chain the chain to append filters on
* @param config the global configuration to load filter definitions from
* @param config the global configuration to load filter definitions from
...
...
src/filter/LoadOne.hxx
View file @
4fabfdab
...
@@ -29,7 +29,7 @@ class PreparedFilter;
...
@@ -29,7 +29,7 @@ class PreparedFilter;
* Creates a new filter, loads configuration and the plugin name from
* Creates a new filter, loads configuration and the plugin name from
* the specified configuration section.
* the specified configuration section.
*
*
* Throws
std::runtime_error
on error.
* Throws on error.
*
*
* @param block the configuration section
* @param block the configuration section
*/
*/
...
...
src/filter/Prepared.hxx
View file @
4fabfdab
...
@@ -32,7 +32,7 @@ public:
...
@@ -32,7 +32,7 @@ public:
/**
/**
* Opens the filter, preparing it for FilterPCM().
* Opens the filter, preparing it for FilterPCM().
*
*
* Throws
std::runtime_error
on error.
* Throws on error.
*
*
* @param af the audio format of incoming data; the
* @param af the audio format of incoming data; the
* plugin may modify the object to enforce another input
* plugin may modify the object to enforce another input
...
...
src/filter/plugins/ConvertFilterPlugin.hxx
View file @
4fabfdab
...
@@ -39,7 +39,7 @@ convert_filter_new(AudioFormat in_audio_format,
...
@@ -39,7 +39,7 @@ convert_filter_new(AudioFormat in_audio_format,
* format switch is a violation of the filter API, this filter must be
* format switch is a violation of the filter API, this filter must be
* the last in a chain.
* the last in a chain.
*
*
* Throws
std::runtime_error
on error.
* Throws on error.
*/
*/
void
void
convert_filter_set
(
Filter
*
filter
,
AudioFormat
out_audio_format
);
convert_filter_set
(
Filter
*
filter
,
AudioFormat
out_audio_format
);
...
...
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