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
bdd31674
Commit
bdd31674
authored
Jan 18, 2020
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag/ApeLoader: remove exception handler, let caller catch
parent
526c7781
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
ApeLoader.hxx
src/tag/ApeLoader.hxx
+2
-0
ApeReplayGain.hxx
src/tag/ApeReplayGain.hxx
+3
-0
ApeTag.cxx
src/tag/ApeTag.cxx
+1
-1
ApeTag.hxx
src/tag/ApeTag.hxx
+3
-1
No files found.
src/tag/ApeLoader.hxx
View file @
bdd31674
...
...
@@ -31,6 +31,8 @@ typedef std::function<bool(unsigned long flags, const char *key,
/**
* Scans the APE tag values from a file.
*
* Throws on I/O error.
*
* @return false if the file could not be opened or if no APE tag is
* present
*/
...
...
src/tag/ApeReplayGain.hxx
View file @
bdd31674
...
...
@@ -23,6 +23,9 @@
class
InputStream
;
struct
ReplayGainInfo
;
/**
* Throws on I/O error.
*/
bool
replay_gain_ape_read
(
InputStream
&
is
,
ReplayGainInfo
&
info
);
...
...
src/tag/ApeTag.cxx
View file @
bdd31674
...
...
@@ -68,7 +68,7 @@ tag_ape_import_item(unsigned long flags,
}
bool
tag_ape_scan2
(
InputStream
&
is
,
TagHandler
&
handler
)
noexcept
tag_ape_scan2
(
InputStream
&
is
,
TagHandler
&
handler
)
{
bool
recognized
=
false
;
...
...
src/tag/ApeTag.hxx
View file @
bdd31674
...
...
@@ -26,9 +26,11 @@ class TagHandler;
/**
* Scan the APE tags of a stream.
*
* Throws on I/O error.
*
* @param path_fs the path of the file in filesystem encoding
*/
bool
tag_ape_scan2
(
InputStream
&
is
,
TagHandler
&
handler
)
noexcept
;
tag_ape_scan2
(
InputStream
&
is
,
TagHandler
&
handler
);
#endif
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