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
2c2efaa9
Commit
2c2efaa9
authored
Aug 14, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib/xiph/VorbisComments: pass struct vorbis_comment instead of char**
Use the "comments" attribute instead of relying on the nullptr terminator.
parent
9ae9b2c1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
23 deletions
+43
-23
VorbisDecoderPlugin.cxx
src/decoder/plugins/VorbisDecoderPlugin.cxx
+6
-6
VorbisComments.cxx
src/lib/xiph/VorbisComments.cxx
+32
-14
VorbisComments.hxx
src/lib/xiph/VorbisComments.hxx
+5
-3
No files found.
src/decoder/plugins/VorbisDecoderPlugin.cxx
View file @
2c2efaa9
...
...
@@ -157,10 +157,10 @@ VorbisDecoder::OnOggBeginning(const ogg_packet &_packet)
}
static
void
vorbis_send_comments
(
DecoderClient
&
client
,
InputStream
&
is
,
char
**
comments
)
SubmitVorbisComment
(
DecoderClient
&
client
,
InputStream
&
is
,
const
vorbis_comment
&
vc
)
{
auto
tag
=
vorbis_comments_to_tag
(
comments
);
auto
tag
=
VorbisCommentToTag
(
vc
);
if
(
!
tag
)
return
;
...
...
@@ -269,10 +269,10 @@ VorbisDecoder::OnOggPacket(const ogg_packet &_packet)
}
else
SubmitInit
();
vorbis_send_comments
(
client
,
input_stream
,
vc
.
user_comments
);
SubmitVorbisComment
(
client
,
input_stream
,
vc
);
ReplayGainInfo
rgi
;
if
(
vorbis_comments_to_replay_gain
(
rgi
,
vc
.
user_comments
))
if
(
VorbisCommentToReplayGain
(
rgi
,
vc
))
client
.
SubmitReplayGain
(
&
rgi
);
}
else
{
if
(
!
dsp_initialized
)
{
...
...
@@ -404,7 +404,7 @@ vorbis_scan_stream(InputStream &is, TagHandler &handler) noexcept
/* visit the Vorbis comments we just read */
vorbis_comments_scan
(
vc
.
user_comments
,
handler
);
VorbisCommentScan
(
vc
,
handler
);
/* check the song duration by locating the e_o_s packet */
...
...
src/lib/xiph/VorbisComments.cxx
View file @
2c2efaa9
...
...
@@ -27,20 +27,38 @@
#include "tag/ReplayGain.hxx"
#include "ReplayGainInfo.hxx"
#include "util/StringView.hxx"
#include "config.h"
#ifndef HAVE_TREMOR
#include <vorbis/codec.h>
#else
#include <tremor/ivorbiscodec.h>
#endif
/* HAVE_TREMOR */
template
<
typename
F
>
static
void
ForEachUserComment
(
const
vorbis_comment
&
vc
,
F
&&
f
)
{
const
char
*
const
*
const
user_comments
=
vc
.
user_comments
;
const
int
*
const
comment_lengths
=
vc
.
comment_lengths
;
const
size_t
n
=
vc
.
comments
;
for
(
size_t
i
=
0
;
i
<
n
;
++
i
)
f
(
StringView
{
user_comments
[
i
],
size_t
(
comment_lengths
[
i
])});
}
bool
vorbis_comments_to_replay_gain
(
ReplayGainInfo
&
rgi
,
char
**
comments
)
noexcept
VorbisCommentToReplayGain
(
ReplayGainInfo
&
rgi
,
const
vorbis_comment
&
vc
)
noexcept
{
rgi
.
Clear
();
bool
found
=
false
;
while
(
*
comments
)
{
if
(
ParseReplayGainVorbis
(
rgi
,
*
comments
))
ForEachUserComment
(
vc
,
[
&
](
StringView
s
)
{
if
(
ParseReplayGainVorbis
(
rgi
,
s
.
data
))
found
=
true
;
comments
++
;
}
});
return
found
;
}
...
...
@@ -64,10 +82,10 @@ vorbis_copy_comment(StringView comment,
}
static
void
vorbis_scan_comment
(
const
char
*
comment
,
TagHandler
&
handler
)
noexcept
vorbis_scan_comment
(
StringView
comment
,
TagHandler
&
handler
)
noexcept
{
if
(
handler
.
WantPair
())
{
const
auto
split
=
StringView
(
comment
)
.
Split
(
'='
);
const
auto
split
=
comment
.
Split
(
'='
);
if
(
!
split
.
first
.
empty
()
&&
!
split
.
second
.
IsNull
())
handler
.
OnPair
(
split
.
first
,
split
.
second
);
}
...
...
@@ -85,19 +103,19 @@ vorbis_scan_comment(const char *comment, TagHandler &handler) noexcept
}
void
vorbis_comments_scan
(
char
**
comments
,
TagHandler
&
handler
)
noexcept
VorbisCommentScan
(
const
vorbis_comment
&
vc
,
TagHandler
&
handler
)
noexcept
{
while
(
*
comments
)
vorbis_scan_comment
(
*
comments
++
,
handler
);
ForEachUserComment
(
vc
,
[
&
](
StringView
s
){
vorbis_scan_comment
(
s
,
handler
);
});
}
std
::
unique_ptr
<
Tag
>
vorbis_comments_to_tag
(
char
**
comments
)
noexcept
VorbisCommentToTag
(
const
vorbis_comment
&
vc
)
noexcept
{
TagBuilder
tag_builder
;
AddTagHandler
h
(
tag_builder
);
vorbis_comments_scan
(
comments
,
h
);
VorbisCommentScan
(
vc
,
h
);
return
tag_builder
.
empty
()
?
nullptr
:
tag_builder
.
CommitNew
();
...
...
src/lib/xiph/VorbisComments.hxx
View file @
2c2efaa9
...
...
@@ -22,17 +22,19 @@
#include <memory>
struct
vorbis_comment
;
struct
ReplayGainInfo
;
class
TagHandler
;
struct
Tag
;
bool
vorbis_comments_to_replay_gain
(
ReplayGainInfo
&
rgi
,
char
**
comments
)
noexcept
;
VorbisCommentToReplayGain
(
ReplayGainInfo
&
rgi
,
const
vorbis_comment
&
vc
)
noexcept
;
void
vorbis_comments_scan
(
char
**
comments
,
TagHandler
&
handler
)
noexcept
;
VorbisCommentScan
(
const
vorbis_comment
&
vc
,
TagHandler
&
handler
)
noexcept
;
std
::
unique_ptr
<
Tag
>
vorbis_comments_to_tag
(
char
**
comments
)
noexcept
;
VorbisCommentToTag
(
const
vorbis_comment
&
vc
)
noexcept
;
#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