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
d6e28c42
Commit
d6e28c42
authored
Oct 25, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ReplayGainInfo: refactor to a class
parent
6d475c40
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
63 additions
and
66 deletions
+63
-66
DecoderAPI.cxx
src/DecoderAPI.cxx
+6
-5
ReplayGainInfo.cxx
src/ReplayGainInfo.cxx
+9
-9
ReplayGainInfo.hxx
src/ReplayGainInfo.hxx
+24
-28
FlacMetadata.cxx
src/decoder/FlacMetadata.cxx
+2
-3
MadDecoderPlugin.cxx
src/decoder/MadDecoderPlugin.cxx
+2
-2
MpcdecDecoderPlugin.cxx
src/decoder/MpcdecDecoderPlugin.cxx
+1
-1
OpusDecoderPlugin.cxx
src/decoder/OpusDecoderPlugin.cxx
+1
-1
VorbisComments.cxx
src/decoder/VorbisComments.cxx
+2
-2
WavpackDecoderPlugin.cxx
src/decoder/WavpackDecoderPlugin.cxx
+2
-3
ReplayGainFilterPlugin.cxx
src/filter/ReplayGainFilterPlugin.cxx
+7
-5
dump_playlist.cxx
test/dump_playlist.cxx
+2
-2
dump_rva2.cxx
test/dump_rva2.cxx
+3
-3
run_decoder.cxx
test/run_decoder.cxx
+2
-2
No files found.
src/DecoderAPI.cxx
View file @
d6e28c42
...
...
@@ -518,11 +518,12 @@ decoder_replay_gain(Decoder &decoder,
if
(
rgm
!=
REPLAY_GAIN_ALBUM
)
rgm
=
REPLAY_GAIN_TRACK
;
decoder
.
dc
.
replay_gain_db
=
20.0
*
log10f
(
replay_gain_tuple_scale
(
&
replay_gain_info
->
tuples
[
rgm
],
replay_gain_preamp
,
replay_gain_missing_preamp
,
replay_gain_limit
));
const
auto
&
tuple
=
replay_gain_info
->
tuples
[
rgm
];
const
auto
scale
=
tuple
.
CalculateScale
(
replay_gain_preamp
,
replay_gain_missing_preamp
,
replay_gain_limit
);
decoder
.
dc
.
replay_gain_db
=
20.0
*
log10f
(
scale
);
}
decoder
.
replay_gain_info
=
*
replay_gain_info
;
...
...
src/ReplayGainInfo.cxx
View file @
d6e28c42
...
...
@@ -21,18 +21,19 @@
#include "ReplayGainInfo.hxx"
float
replay_gain_tuple_scale
(
const
ReplayGainTuple
*
tuple
,
float
preamp
,
float
missing_preamp
,
bool
peak_limit
)
ReplayGainTuple
::
CalculateScale
(
float
preamp
,
float
missing_preamp
,
bool
peak_limit
)
const
{
float
scale
;
if
(
replay_gain_tuple_defined
(
tuple
))
{
scale
=
pow
(
10.0
,
tuple
->
gain
/
20.0
);
if
(
IsDefined
(
))
{
scale
=
pow
(
10.0
,
gain
/
20.0
);
scale
*=
preamp
;
if
(
scale
>
15.0
)
scale
=
15.0
;
if
(
peak_limit
&&
scale
*
tuple
->
peak
>
1.0
)
scale
=
1.0
/
tuple
->
peak
;
if
(
peak_limit
&&
scale
*
peak
>
1.0
)
scale
=
1.0
/
peak
;
}
else
scale
=
missing_preamp
;
...
...
@@ -40,9 +41,8 @@ replay_gain_tuple_scale(const ReplayGainTuple *tuple, float preamp, float missin
}
void
replay_gain_info_complete
(
ReplayGainInfo
&
info
)
ReplayGainInfo
::
Complete
(
)
{
if
(
!
replay_gain_tuple_defined
(
&
info
.
tuples
[
REPLAY_GAIN_ALBUM
]))
info
.
tuples
[
REPLAY_GAIN_ALBUM
]
=
info
.
tuples
[
REPLAY_GAIN_TRACK
];
if
(
!
tuples
[
REPLAY_GAIN_ALBUM
].
IsDefined
())
tuples
[
REPLAY_GAIN_ALBUM
]
=
tuples
[
REPLAY_GAIN_TRACK
];
}
src/ReplayGainInfo.hxx
View file @
d6e28c42
...
...
@@ -21,6 +21,7 @@
#define MPD_REPLAY_GAIN_INFO_HXX
#include "check.h"
#include "Compiler.h"
#include <cmath>
...
...
@@ -34,40 +35,35 @@ enum ReplayGainMode {
struct
ReplayGainTuple
{
float
gain
;
float
peak
;
};
struct
ReplayGainInfo
{
ReplayGainTuple
tuples
[
2
];
};
void
Clear
()
{
gain
=
INFINITY
;
peak
=
0.0
;
}
static
inline
void
replay_gain_tuple_init
(
ReplayGainTuple
*
tuple
)
{
tuple
->
gain
=
INFINITY
;
tuple
->
peak
=
0.0
;
}
gcc_pure
bool
IsDefined
()
const
{
return
!
std
::
isinf
(
gain
);
}
static
inline
void
replay_gain_info_init
(
struct
ReplayGainInfo
*
info
)
{
replay_gain_tuple_init
(
&
info
->
tuples
[
REPLAY_GAIN_ALBUM
]);
replay_gain_tuple_init
(
&
info
->
tuples
[
REPLAY_GAIN_TRACK
]);
}
gcc_pure
float
CalculateScale
(
float
preamp
,
float
missing_preamp
,
bool
peak_limit
)
const
;
};
static
inline
bool
replay_gain_tuple_defined
(
const
ReplayGainTuple
*
tuple
)
{
return
!
std
::
isinf
(
tuple
->
gain
);
}
struct
ReplayGainInfo
{
ReplayGainTuple
tuples
[
2
];
float
replay_gain_tuple_scale
(
const
ReplayGainTuple
*
tuple
,
float
preamp
,
float
missing_preamp
,
bool
peak_limit
);
void
Clear
()
{
tuples
[
REPLAY_GAIN_ALBUM
].
Clear
();
tuples
[
REPLAY_GAIN_TRACK
].
Clear
();
}
/**
* Attempt to auto-complete missing data. In particular, if album
*
information is missing, track gain is used.
/**
* Attempt to auto-complete missing data. In particular, if
* album
information is missing, track gain is used.
*/
void
replay_gain_info_complete
(
ReplayGainInfo
&
info
)
;
void
Complete
();
}
;
#endif
src/decoder/FlacMetadata.cxx
View file @
d6e28c42
...
...
@@ -64,10 +64,9 @@ bool
flac_parse_replay_gain
(
ReplayGainInfo
&
rgi
,
const
FLAC__StreamMetadata
*
block
)
{
bool
found
=
false
;
replay_gain_info_init
(
&
rgi
);
rgi
.
Clear
();
bool
found
=
false
;
if
(
flac_find_float_comment
(
block
,
"replaygain_album_gain"
,
&
rgi
.
tuples
[
REPLAY_GAIN_ALBUM
].
gain
))
found
=
true
;
...
...
src/decoder/MadDecoderPlugin.cxx
View file @
d6e28c42
...
...
@@ -260,7 +260,7 @@ parse_id3_replay_gain_info(ReplayGainInfo &rgi,
struct
id3_frame
*
frame
;
bool
found
=
false
;
r
eplay_gain_info_init
(
&
rgi
);
r
gi
.
Clear
(
);
for
(
i
=
0
;
(
frame
=
id3_tag_findframe
(
tag
,
"TXXX"
,
i
));
i
++
)
{
if
(
frame
->
nfields
<
3
)
...
...
@@ -872,7 +872,7 @@ MadDecoder::DecodeFirstFrame(Tag **tag)
if
(
decoder
!=
nullptr
&&
!
found_replay_gain
&&
lame
.
track_gain
)
{
ReplayGainInfo
rgi
;
r
eplay_gain_info_init
(
&
rgi
);
r
gi
.
Clear
(
);
rgi
.
tuples
[
REPLAY_GAIN_TRACK
].
gain
=
lame
.
track_gain
;
rgi
.
tuples
[
REPLAY_GAIN_TRACK
].
peak
=
lame
.
peak
;
decoder_replay_gain
(
*
decoder
,
&
rgi
);
...
...
src/decoder/MpcdecDecoderPlugin.cxx
View file @
d6e28c42
...
...
@@ -169,7 +169,7 @@ mpcdec_decode(Decoder &mpd_decoder, InputStream &is)
}
ReplayGainInfo
rgi
;
r
eplay_gain_info_init
(
&
rgi
);
r
gi
.
Clear
(
);
rgi
.
tuples
[
REPLAY_GAIN_ALBUM
].
gain
=
MPC_OLD_GAIN_REF
-
(
info
.
gain_album
/
256.
);
rgi
.
tuples
[
REPLAY_GAIN_ALBUM
].
peak
=
pow
(
10
,
info
.
peak_album
/
256.
/
20
)
/
32767
;
rgi
.
tuples
[
REPLAY_GAIN_TRACK
].
gain
=
MPC_OLD_GAIN_REF
-
(
info
.
gain_title
/
256.
);
...
...
src/decoder/OpusDecoderPlugin.cxx
View file @
d6e28c42
...
...
@@ -283,7 +283,7 @@ inline DecoderCommand
MPDOpusDecoder
::
HandleTags
(
const
ogg_packet
&
packet
)
{
ReplayGainInfo
rgi
;
r
eplay_gain_info_init
(
&
rgi
);
r
gi
.
Clear
(
);
TagBuilder
tag_builder
;
...
...
src/decoder/VorbisComments.cxx
View file @
d6e28c42
...
...
@@ -49,11 +49,11 @@ vorbis_comment_value(const char *comment, const char *needle)
bool
vorbis_comments_to_replay_gain
(
ReplayGainInfo
&
rgi
,
char
**
comments
)
{
rgi
.
Clear
();
const
char
*
temp
;
bool
found
=
false
;
replay_gain_info_init
(
&
rgi
);
while
(
*
comments
)
{
if
((
temp
=
vorbis_comment_value
(
*
comments
,
"replaygain_track_gain"
)))
{
...
...
src/decoder/WavpackDecoderPlugin.cxx
View file @
d6e28c42
...
...
@@ -224,10 +224,9 @@ static bool
wavpack_replaygain
(
ReplayGainInfo
&
rgi
,
WavpackContext
*
wpc
)
{
bool
found
=
false
;
replay_gain_info_init
(
&
rgi
);
rgi
.
Clear
();
bool
found
=
false
;
found
|=
wavpack_tag_float
(
wpc
,
"replaygain_track_gain"
,
&
rgi
.
tuples
[
REPLAY_GAIN_TRACK
].
gain
);
found
|=
wavpack_tag_float
(
wpc
,
"replaygain_track_peak"
,
...
...
src/filter/ReplayGainFilterPlugin.cxx
View file @
d6e28c42
...
...
@@ -76,7 +76,7 @@ public:
ReplayGainFilter
()
:
mixer
(
nullptr
),
mode
(
REPLAY_GAIN_OFF
),
volume
(
PCM_VOLUME_1
)
{
replay_gain_info_init
(
&
info
);
info
.
Clear
(
);
}
void
SetMixer
(
Mixer
*
_mixer
,
unsigned
_base
)
{
...
...
@@ -91,9 +91,9 @@ public:
void
SetInfo
(
const
ReplayGainInfo
*
_info
)
{
if
(
_info
!=
NULL
)
{
info
=
*
_info
;
replay_gain_info_complete
(
info
);
info
.
Complete
(
);
}
else
replay_gain_info_init
(
&
info
);
info
.
Clear
(
);
Update
();
}
...
...
@@ -126,8 +126,10 @@ void
ReplayGainFilter
::
Update
()
{
if
(
mode
!=
REPLAY_GAIN_OFF
)
{
float
scale
=
replay_gain_tuple_scale
(
&
info
.
tuples
[
mode
],
replay_gain_preamp
,
replay_gain_missing_preamp
,
replay_gain_limit
);
const
auto
&
tuple
=
info
.
tuples
[
mode
];
float
scale
=
tuple
.
CalculateScale
(
replay_gain_preamp
,
replay_gain_missing_preamp
,
replay_gain_limit
);
FormatDebug
(
replay_gain_domain
,
"scale=%f
\n
"
,
(
double
)
scale
);
...
...
test/dump_playlist.cxx
View file @
d6e28c42
...
...
@@ -120,12 +120,12 @@ decoder_replay_gain(gcc_unused Decoder &decoder,
const
ReplayGainInfo
*
rgi
)
{
const
ReplayGainTuple
*
tuple
=
&
rgi
->
tuples
[
REPLAY_GAIN_ALBUM
];
if
(
replay_gain_tuple_defined
(
tuple
))
if
(
tuple
->
IsDefined
(
))
g_printerr
(
"replay_gain[album]: gain=%f peak=%f
\n
"
,
tuple
->
gain
,
tuple
->
peak
);
tuple
=
&
rgi
->
tuples
[
REPLAY_GAIN_TRACK
];
if
(
replay_gain_tuple_defined
(
tuple
))
if
(
tuple
->
IsDefined
(
))
g_printerr
(
"replay_gain[track]: gain=%f peak=%f
\n
"
,
tuple
->
gain
,
tuple
->
peak
);
}
...
...
test/dump_rva2.cxx
View file @
d6e28c42
...
...
@@ -67,7 +67,7 @@ int main(int argc, char **argv)
}
ReplayGainInfo
replay_gain
;
replay_gain
_info_init
(
&
replay_gain
);
replay_gain
.
Clear
(
);
bool
success
=
tag_rva2_parse
(
tag
,
replay_gain
);
id3_tag_delete
(
tag
);
...
...
@@ -78,12 +78,12 @@ int main(int argc, char **argv)
}
const
ReplayGainTuple
*
tuple
=
&
replay_gain
.
tuples
[
REPLAY_GAIN_ALBUM
];
if
(
replay_gain_tuple_defined
(
tuple
))
if
(
tuple
->
IsDefined
(
))
g_printerr
(
"replay_gain[album]: gain=%f peak=%f
\n
"
,
tuple
->
gain
,
tuple
->
peak
);
tuple
=
&
replay_gain
.
tuples
[
REPLAY_GAIN_TRACK
];
if
(
replay_gain_tuple_defined
(
tuple
))
if
(
tuple
->
IsDefined
(
))
g_printerr
(
"replay_gain[track]: gain=%f peak=%f
\n
"
,
tuple
->
gain
,
tuple
->
peak
);
...
...
test/run_decoder.cxx
View file @
d6e28c42
...
...
@@ -130,12 +130,12 @@ decoder_replay_gain(gcc_unused Decoder &decoder,
const
ReplayGainInfo
*
rgi
)
{
const
ReplayGainTuple
*
tuple
=
&
rgi
->
tuples
[
REPLAY_GAIN_ALBUM
];
if
(
replay_gain_tuple_defined
(
tuple
))
if
(
tuple
->
IsDefined
(
))
g_printerr
(
"replay_gain[album]: gain=%f peak=%f
\n
"
,
tuple
->
gain
,
tuple
->
peak
);
tuple
=
&
rgi
->
tuples
[
REPLAY_GAIN_TRACK
];
if
(
replay_gain_tuple_defined
(
tuple
))
if
(
tuple
->
IsDefined
(
))
g_printerr
(
"replay_gain[track]: gain=%f peak=%f
\n
"
,
tuple
->
gain
,
tuple
->
peak
);
}
...
...
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