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
f6e7dffa
Commit
f6e7dffa
authored
Nov 11, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/flac: moved code to flac_metadata.c
parent
43549db7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
244 additions
and
176 deletions
+244
-176
Makefile.am
Makefile.am
+4
-1
_flac_common.c
src/decoder/_flac_common.c
+1
-164
_flac_common.h
src/decoder/_flac_common.h
+0
-11
flac_metadata.c
src/decoder/flac_metadata.c
+192
-0
flac_metadata.h
src/decoder/flac_metadata.h
+45
-0
flac_plugin.c
src/decoder/flac_plugin.c
+1
-0
oggflac_plugin.c
src/decoder/oggflac_plugin.c
+1
-0
No files found.
Makefile.am
View file @
f6e7dffa
...
...
@@ -83,6 +83,7 @@ mpd_headers = \
src/gcc.h
\
src/decoder_list.h
\
src/decoder_print.h
\
src/decoder/flac_metadata.h
\
src/decoder/_flac_common.h
\
src/decoder/_ogg_common.h
\
src/input_plugin.h
\
...
...
@@ -439,7 +440,9 @@ DECODER_SRC += src/decoder/_ogg_common.c
endif
if
HAVE_FLAC_COMMON
DECODER_SRC
+=
src/decoder/_flac_common.c
DECODER_SRC
+=
\
src/decoder/flac_metadata.c
\
src/decoder/_flac_common.c
endif
if
ENABLE_VORBIS_DECODER
...
...
src/decoder/_flac_common.c
View file @
f6e7dffa
...
...
@@ -22,6 +22,7 @@
*/
#include "_flac_common.h"
#include "flac_metadata.h"
#include <glib.h>
...
...
@@ -54,170 +55,6 @@ flac_data_deinit(struct flac_data *data)
tag_free
(
data
->
tag
);
}
static
bool
flac_find_float_comment
(
const
FLAC__StreamMetadata
*
block
,
const
char
*
cmnt
,
float
*
fl
)
{
int
offset
;
size_t
pos
;
int
len
;
unsigned
char
tmp
,
*
p
;
offset
=
FLAC__metadata_object_vorbiscomment_find_entry_from
(
block
,
0
,
cmnt
);
if
(
offset
<
0
)
return
false
;
pos
=
strlen
(
cmnt
)
+
1
;
/* 1 is for '=' */
len
=
block
->
data
.
vorbis_comment
.
comments
[
offset
].
length
-
pos
;
if
(
len
<=
0
)
return
false
;
p
=
&
block
->
data
.
vorbis_comment
.
comments
[
offset
].
entry
[
pos
];
tmp
=
p
[
len
];
p
[
len
]
=
'\0'
;
*
fl
=
(
float
)
atof
((
char
*
)
p
);
p
[
len
]
=
tmp
;
return
true
;
}
static
struct
replay_gain_info
*
flac_parse_replay_gain
(
const
FLAC__StreamMetadata
*
block
)
{
struct
replay_gain_info
*
rgi
;
bool
found
=
false
;
rgi
=
replay_gain_info_new
();
found
=
flac_find_float_comment
(
block
,
"replaygain_album_gain"
,
&
rgi
->
tuples
[
REPLAY_GAIN_ALBUM
].
gain
)
||
flac_find_float_comment
(
block
,
"replaygain_album_peak"
,
&
rgi
->
tuples
[
REPLAY_GAIN_ALBUM
].
peak
)
||
flac_find_float_comment
(
block
,
"replaygain_track_gain"
,
&
rgi
->
tuples
[
REPLAY_GAIN_TRACK
].
gain
)
||
flac_find_float_comment
(
block
,
"replaygain_track_peak"
,
&
rgi
->
tuples
[
REPLAY_GAIN_TRACK
].
peak
);
if
(
!
found
)
{
replay_gain_info_free
(
rgi
);
rgi
=
NULL
;
}
return
rgi
;
}
/**
* Checks if the specified name matches the entry's name, and if yes,
* returns the comment value (not null-temrinated).
*/
static
const
char
*
flac_comment_value
(
const
FLAC__StreamMetadata_VorbisComment_Entry
*
entry
,
const
char
*
name
,
const
char
*
char_tnum
,
size_t
*
length_r
)
{
size_t
name_length
=
strlen
(
name
);
size_t
char_tnum_length
=
0
;
const
char
*
comment
=
(
const
char
*
)
entry
->
entry
;
if
(
entry
->
length
<=
name_length
||
g_ascii_strncasecmp
(
comment
,
name
,
name_length
)
!=
0
)
return
NULL
;
if
(
char_tnum
!=
NULL
)
{
char_tnum_length
=
strlen
(
char_tnum
);
if
(
entry
->
length
>
name_length
+
char_tnum_length
+
2
&&
comment
[
name_length
]
==
'['
&&
g_ascii_strncasecmp
(
comment
+
name_length
+
1
,
char_tnum
,
char_tnum_length
)
==
0
&&
comment
[
name_length
+
char_tnum_length
+
1
]
==
']'
)
name_length
=
name_length
+
char_tnum_length
+
2
;
else
if
(
entry
->
length
>
name_length
+
char_tnum_length
&&
g_ascii_strncasecmp
(
comment
+
name_length
,
char_tnum
,
char_tnum_length
)
==
0
)
name_length
=
name_length
+
char_tnum_length
;
}
if
(
comment
[
name_length
]
==
'='
)
{
*
length_r
=
entry
->
length
-
name_length
-
1
;
return
comment
+
name_length
+
1
;
}
return
NULL
;
}
/**
* Check if the comment's name equals the passed name, and if so, copy
* the comment value into the tag.
*/
static
bool
flac_copy_comment
(
struct
tag
*
tag
,
const
FLAC__StreamMetadata_VorbisComment_Entry
*
entry
,
const
char
*
name
,
enum
tag_type
tag_type
,
const
char
*
char_tnum
)
{
const
char
*
value
;
size_t
value_length
;
value
=
flac_comment_value
(
entry
,
name
,
char_tnum
,
&
value_length
);
if
(
value
!=
NULL
)
{
tag_add_item_n
(
tag
,
tag_type
,
value
,
value_length
);
return
true
;
}
return
false
;
}
/* tracknumber is used in VCs, MPD uses "track" ..., all the other
* tag names match */
static
const
char
*
VORBIS_COMMENT_TRACK_KEY
=
"tracknumber"
;
static
const
char
*
VORBIS_COMMENT_DISC_KEY
=
"discnumber"
;
static
void
flac_parse_comment
(
struct
tag
*
tag
,
const
char
*
char_tnum
,
const
FLAC__StreamMetadata_VorbisComment_Entry
*
entry
)
{
assert
(
tag
!=
NULL
);
if
(
flac_copy_comment
(
tag
,
entry
,
VORBIS_COMMENT_TRACK_KEY
,
TAG_TRACK
,
char_tnum
)
||
flac_copy_comment
(
tag
,
entry
,
VORBIS_COMMENT_DISC_KEY
,
TAG_DISC
,
char_tnum
)
||
flac_copy_comment
(
tag
,
entry
,
"album artist"
,
TAG_ALBUM_ARTIST
,
char_tnum
))
return
;
for
(
unsigned
i
=
0
;
i
<
TAG_NUM_OF_ITEM_TYPES
;
++
i
)
if
(
flac_copy_comment
(
tag
,
entry
,
tag_item_names
[
i
],
i
,
char_tnum
))
return
;
}
static
void
flac_vorbis_comments_to_tag
(
struct
tag
*
tag
,
const
char
*
char_tnum
,
const
FLAC__StreamMetadata_VorbisComment
*
comment
)
{
for
(
unsigned
i
=
0
;
i
<
comment
->
num_comments
;
++
i
)
flac_parse_comment
(
tag
,
char_tnum
,
&
comment
->
comments
[
i
]);
}
void
flac_tag_apply_metadata
(
struct
tag
*
tag
,
const
char
*
track
,
const
FLAC__StreamMetadata
*
block
)
{
switch
(
block
->
type
)
{
case
FLAC__METADATA_TYPE_VORBIS_COMMENT
:
flac_vorbis_comments_to_tag
(
tag
,
track
,
&
block
->
data
.
vorbis_comment
);
break
;
case
FLAC__METADATA_TYPE_STREAMINFO
:
tag
->
time
=
flac_duration
(
&
block
->
data
.
stream_info
);
break
;
default:
break
;
}
}
void
flac_metadata_common_cb
(
const
FLAC__StreamMetadata
*
block
,
struct
flac_data
*
data
)
{
...
...
src/decoder/_flac_common.h
View file @
f6e7dffa
...
...
@@ -159,13 +159,6 @@ struct flac_data {
struct
tag
*
tag
;
};
static
inline
unsigned
flac_duration
(
const
FLAC__StreamMetadata_StreamInfo
*
stream_info
)
{
return
(
stream_info
->
total_samples
+
stream_info
->
sample_rate
-
1
)
/
stream_info
->
sample_rate
;
}
/* initializes a given FlacData struct */
void
flac_data_init
(
struct
flac_data
*
data
,
struct
decoder
*
decoder
,
...
...
@@ -181,10 +174,6 @@ void flac_error_common_cb(const char *plugin,
FLAC__StreamDecoderErrorStatus
status
,
struct
flac_data
*
data
);
void
flac_tag_apply_metadata
(
struct
tag
*
tag
,
const
char
*
track
,
const
FLAC__StreamMetadata
*
block
);
FLAC__StreamDecoderWriteStatus
flac_common_write
(
struct
flac_data
*
data
,
const
FLAC__Frame
*
frame
,
const
FLAC__int32
*
const
buf
[]);
...
...
src/decoder/flac_metadata.c
0 → 100644
View file @
f6e7dffa
/*
* Copyright (C) 2003-2009 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "flac_metadata.h"
#include "replay_gain.h"
#include "tag.h"
#include <glib.h>
#include <assert.h>
#include <stdbool.h>
#include <stdlib.h>
static
bool
flac_find_float_comment
(
const
FLAC__StreamMetadata
*
block
,
const
char
*
cmnt
,
float
*
fl
)
{
int
offset
;
size_t
pos
;
int
len
;
unsigned
char
tmp
,
*
p
;
offset
=
FLAC__metadata_object_vorbiscomment_find_entry_from
(
block
,
0
,
cmnt
);
if
(
offset
<
0
)
return
false
;
pos
=
strlen
(
cmnt
)
+
1
;
/* 1 is for '=' */
len
=
block
->
data
.
vorbis_comment
.
comments
[
offset
].
length
-
pos
;
if
(
len
<=
0
)
return
false
;
p
=
&
block
->
data
.
vorbis_comment
.
comments
[
offset
].
entry
[
pos
];
tmp
=
p
[
len
];
p
[
len
]
=
'\0'
;
*
fl
=
(
float
)
atof
((
char
*
)
p
);
p
[
len
]
=
tmp
;
return
true
;
}
struct
replay_gain_info
*
flac_parse_replay_gain
(
const
FLAC__StreamMetadata
*
block
)
{
struct
replay_gain_info
*
rgi
;
bool
found
=
false
;
rgi
=
replay_gain_info_new
();
found
=
flac_find_float_comment
(
block
,
"replaygain_album_gain"
,
&
rgi
->
tuples
[
REPLAY_GAIN_ALBUM
].
gain
)
||
flac_find_float_comment
(
block
,
"replaygain_album_peak"
,
&
rgi
->
tuples
[
REPLAY_GAIN_ALBUM
].
peak
)
||
flac_find_float_comment
(
block
,
"replaygain_track_gain"
,
&
rgi
->
tuples
[
REPLAY_GAIN_TRACK
].
gain
)
||
flac_find_float_comment
(
block
,
"replaygain_track_peak"
,
&
rgi
->
tuples
[
REPLAY_GAIN_TRACK
].
peak
);
if
(
!
found
)
{
replay_gain_info_free
(
rgi
);
rgi
=
NULL
;
}
return
rgi
;
}
/**
* Checks if the specified name matches the entry's name, and if yes,
* returns the comment value (not null-temrinated).
*/
static
const
char
*
flac_comment_value
(
const
FLAC__StreamMetadata_VorbisComment_Entry
*
entry
,
const
char
*
name
,
const
char
*
char_tnum
,
size_t
*
length_r
)
{
size_t
name_length
=
strlen
(
name
);
size_t
char_tnum_length
=
0
;
const
char
*
comment
=
(
const
char
*
)
entry
->
entry
;
if
(
entry
->
length
<=
name_length
||
g_ascii_strncasecmp
(
comment
,
name
,
name_length
)
!=
0
)
return
NULL
;
if
(
char_tnum
!=
NULL
)
{
char_tnum_length
=
strlen
(
char_tnum
);
if
(
entry
->
length
>
name_length
+
char_tnum_length
+
2
&&
comment
[
name_length
]
==
'['
&&
g_ascii_strncasecmp
(
comment
+
name_length
+
1
,
char_tnum
,
char_tnum_length
)
==
0
&&
comment
[
name_length
+
char_tnum_length
+
1
]
==
']'
)
name_length
=
name_length
+
char_tnum_length
+
2
;
else
if
(
entry
->
length
>
name_length
+
char_tnum_length
&&
g_ascii_strncasecmp
(
comment
+
name_length
,
char_tnum
,
char_tnum_length
)
==
0
)
name_length
=
name_length
+
char_tnum_length
;
}
if
(
comment
[
name_length
]
==
'='
)
{
*
length_r
=
entry
->
length
-
name_length
-
1
;
return
comment
+
name_length
+
1
;
}
return
NULL
;
}
/**
* Check if the comment's name equals the passed name, and if so, copy
* the comment value into the tag.
*/
static
bool
flac_copy_comment
(
struct
tag
*
tag
,
const
FLAC__StreamMetadata_VorbisComment_Entry
*
entry
,
const
char
*
name
,
enum
tag_type
tag_type
,
const
char
*
char_tnum
)
{
const
char
*
value
;
size_t
value_length
;
value
=
flac_comment_value
(
entry
,
name
,
char_tnum
,
&
value_length
);
if
(
value
!=
NULL
)
{
tag_add_item_n
(
tag
,
tag_type
,
value
,
value_length
);
return
true
;
}
return
false
;
}
/* tracknumber is used in VCs, MPD uses "track" ..., all the other
* tag names match */
static
const
char
*
VORBIS_COMMENT_TRACK_KEY
=
"tracknumber"
;
static
const
char
*
VORBIS_COMMENT_DISC_KEY
=
"discnumber"
;
static
void
flac_parse_comment
(
struct
tag
*
tag
,
const
char
*
char_tnum
,
const
FLAC__StreamMetadata_VorbisComment_Entry
*
entry
)
{
assert
(
tag
!=
NULL
);
if
(
flac_copy_comment
(
tag
,
entry
,
VORBIS_COMMENT_TRACK_KEY
,
TAG_TRACK
,
char_tnum
)
||
flac_copy_comment
(
tag
,
entry
,
VORBIS_COMMENT_DISC_KEY
,
TAG_DISC
,
char_tnum
)
||
flac_copy_comment
(
tag
,
entry
,
"album artist"
,
TAG_ALBUM_ARTIST
,
char_tnum
))
return
;
for
(
unsigned
i
=
0
;
i
<
TAG_NUM_OF_ITEM_TYPES
;
++
i
)
if
(
flac_copy_comment
(
tag
,
entry
,
tag_item_names
[
i
],
i
,
char_tnum
))
return
;
}
void
flac_vorbis_comments_to_tag
(
struct
tag
*
tag
,
const
char
*
char_tnum
,
const
FLAC__StreamMetadata_VorbisComment
*
comment
)
{
for
(
unsigned
i
=
0
;
i
<
comment
->
num_comments
;
++
i
)
flac_parse_comment
(
tag
,
char_tnum
,
&
comment
->
comments
[
i
]);
}
void
flac_tag_apply_metadata
(
struct
tag
*
tag
,
const
char
*
track
,
const
FLAC__StreamMetadata
*
block
)
{
switch
(
block
->
type
)
{
case
FLAC__METADATA_TYPE_VORBIS_COMMENT
:
flac_vorbis_comments_to_tag
(
tag
,
track
,
&
block
->
data
.
vorbis_comment
);
break
;
case
FLAC__METADATA_TYPE_STREAMINFO
:
tag
->
time
=
flac_duration
(
&
block
->
data
.
stream_info
);
break
;
default:
break
;
}
}
src/decoder/flac_metadata.h
0 → 100644
View file @
f6e7dffa
/*
* Copyright (C) 2003-2009 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_FLAC_METADATA_H
#define MPD_FLAC_METADATA_H
#include <FLAC/metadata.h>
struct
tag
;
static
inline
unsigned
flac_duration
(
const
FLAC__StreamMetadata_StreamInfo
*
stream_info
)
{
return
(
stream_info
->
total_samples
+
stream_info
->
sample_rate
-
1
)
/
stream_info
->
sample_rate
;
}
struct
replay_gain_info
*
flac_parse_replay_gain
(
const
FLAC__StreamMetadata
*
block
);
void
flac_vorbis_comments_to_tag
(
struct
tag
*
tag
,
const
char
*
char_tnum
,
const
FLAC__StreamMetadata_VorbisComment
*
comment
);
void
flac_tag_apply_metadata
(
struct
tag
*
tag
,
const
char
*
track
,
const
FLAC__StreamMetadata
*
block
);
#endif
src/decoder/flac_plugin.c
View file @
f6e7dffa
...
...
@@ -18,6 +18,7 @@
*/
#include "_flac_common.h"
#include "flac_metadata.h"
#include <glib.h>
...
...
src/decoder/oggflac_plugin.c
View file @
f6e7dffa
...
...
@@ -23,6 +23,7 @@
#include "_flac_common.h"
#include "_ogg_common.h"
#include "flac_metadata.h"
#include <glib.h>
#include <OggFLAC/seekable_stream_decoder.h>
...
...
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