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
2f16f8e9
Commit
2f16f8e9
authored
Jul 20, 2010
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag_rva2: name the CHANNEL_* enum
parent
4364b30c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
tag_rva2.c
src/tag_rva2.c
+11
-11
No files found.
src/tag_rva2.c
View file @
2f16f8e9
...
...
@@ -24,16 +24,7 @@
#include <glib.h>
#include <id3tag.h>
bool
tag_rva2_parse
(
struct
id3_tag
*
tag
,
struct
replay_gain_info
*
replay_gain_info
)
{
struct
id3_frame
const
*
frame
;
id3_latin1_t
const
*
id
;
id3_byte_t
const
*
data
;
id3_length_t
length
;
enum
{
enum
rva2_channel
{
CHANNEL_OTHER
=
0x00
,
CHANNEL_MASTER_VOLUME
=
0x01
,
CHANNEL_FRONT_RIGHT
=
0x02
,
...
...
@@ -43,7 +34,16 @@ tag_rva2_parse(struct id3_tag *tag, struct replay_gain_info *replay_gain_info)
CHANNEL_FRONT_CENTRE
=
0x06
,
CHANNEL_BACK_CENTRE
=
0x07
,
CHANNEL_SUBWOOFER
=
0x08
};
};
bool
tag_rva2_parse
(
struct
id3_tag
*
tag
,
struct
replay_gain_info
*
replay_gain_info
)
{
struct
id3_frame
const
*
frame
;
id3_latin1_t
const
*
id
;
id3_byte_t
const
*
data
;
id3_length_t
length
;
/* relative volume adjustment information */
...
...
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