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
c5bde10b
Commit
c5bde10b
authored
Feb 04, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag/Rva2: rename struct rva2_data to CamelCase
parent
e582e893
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
TagRva2.cxx
src/tag/TagRva2.cxx
+6
-6
No files found.
src/tag/TagRva2.cxx
View file @
c5bde10b
...
...
@@ -38,20 +38,20 @@ enum class Rva2Channel : uint8_t {
SUBWOOFER
=
0x08
};
struct
rva2_d
ata
{
struct
Rva2D
ata
{
Rva2Channel
type
;
uint8_t
volume_adjustment
[
2
];
uint8_t
peak_bits
;
};
static
inline
id3_length_t
rva2_peak_bytes
(
const
struct
rva2_d
ata
*
data
)
rva2_peak_bytes
(
const
Rva2D
ata
*
data
)
{
return
(
data
->
peak_bits
+
7
)
/
8
;
}
static
inline
int
rva2_fixed_volume_adjustment
(
const
struct
rva2_d
ata
*
data
)
rva2_fixed_volume_adjustment
(
const
Rva2D
ata
*
data
)
{
signed
int
voladj_fixed
;
voladj_fixed
=
(
data
->
volume_adjustment
[
0
]
<<
8
)
|
...
...
@@ -61,7 +61,7 @@ rva2_fixed_volume_adjustment(const struct rva2_data *data)
}
static
inline
float
rva2_float_volume_adjustment
(
const
struct
rva2_d
ata
*
data
)
rva2_float_volume_adjustment
(
const
Rva2D
ata
*
data
)
{
/*
* "The volume adjustment is encoded as a fixed point decibel
...
...
@@ -74,7 +74,7 @@ rva2_float_volume_adjustment(const struct rva2_data *data)
static
inline
bool
rva2_apply_data
(
ReplayGainInfo
&
rgi
,
const
struct
rva2_d
ata
*
data
,
const
id3_latin1_t
*
id
)
const
Rva2D
ata
*
data
,
const
id3_latin1_t
*
id
)
{
if
(
data
->
type
!=
Rva2Channel
::
MASTER_VOLUME
)
return
false
;
...
...
@@ -117,7 +117,7 @@ rva2_apply_frame(ReplayGainInfo &replay_gain_info,
*/
while
(
length
>=
4
)
{
const
struct
rva2_data
*
d
=
(
const
struct
rva2_d
ata
*
)
data
;
const
Rva2Data
*
d
=
(
const
Rva2D
ata
*
)
data
;
unsigned
int
peak_bytes
=
rva2_peak_bytes
(
d
);
if
(
4
+
peak_bytes
>
length
)
break
;
...
...
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