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
7088a679
Commit
7088a679
authored
Sep 25, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/wavpack: support all APEv2 tags
WavPack tags are always APEv2, by definition. Reuse the tag_table from tag_ape.c, instead of rolling our own.
parent
04c02a1e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
17 deletions
+18
-17
NEWS
NEWS
+1
-0
wavpack_decoder_plugin.c
src/decoder/wavpack_decoder_plugin.c
+12
-16
tag_ape.c
src/tag_ape.c
+1
-1
tag_ape.h
src/tag_ape.h
+4
-0
No files found.
NEWS
View file @
7088a679
...
...
@@ -6,6 +6,7 @@ ver 0.17.2 (2012/??/??)
- fluidsynth: stop playback at end of file
- fluidsynth: check MIDI file format while scanning
- fluidsynth: add sample rate setting
- wavpack: support all APEv2 tags
* output:
- httpd: use monotonic clock, avoid hiccups after system clock adjustment
- httpd: fix throttling bug after resuming playback
...
...
src/decoder/wavpack_decoder_plugin.c
View file @
7088a679
...
...
@@ -24,6 +24,7 @@
#include "utils.h"
#include "tag_table.h"
#include "tag_handler.h"
#include "tag_ape.h"
#include <wavpack/wavpack.h>
#include <glib.h>
...
...
@@ -38,21 +39,6 @@
#define ERRORLEN 80
static
const
struct
tag_table
wavpack_tags
[]
=
{
{
"artist"
,
TAG_ARTIST
},
{
"album"
,
TAG_ALBUM
},
{
"title"
,
TAG_TITLE
},
{
"track"
,
TAG_TRACK
},
{
"name"
,
TAG_NAME
},
{
"genre"
,
TAG_GENRE
},
{
"date"
,
TAG_DATE
},
{
"composer"
,
TAG_COMPOSER
},
{
"performer"
,
TAG_PERFORMER
},
{
"comment"
,
TAG_COMMENT
},
{
"disc"
,
TAG_DISC
},
{
NULL
,
TAG_NUM_OF_ITEM_TYPES
}
};
/** A pointer type for format converter function. */
typedef
void
(
*
format_samples_t
)(
int
bytes_per_sample
,
...
...
@@ -321,7 +307,17 @@ wavpack_scan_file(const char *fname,
WavpackGetNumSamples
(
wpc
)
/
WavpackGetSampleRate
(
wpc
));
for
(
const
struct
tag_table
*
i
=
wavpack_tags
;
i
->
name
!=
NULL
;
++
i
)
/* the WavPack format implies APEv2 tags, which means we can
reuse the mapping from tag_ape.c */
for
(
unsigned
i
=
0
;
i
<
TAG_NUM_OF_ITEM_TYPES
;
++
i
)
{
const
char
*
name
=
tag_item_names
[
i
];
if
(
name
!=
NULL
)
wavpack_scan_tag_item
(
wpc
,
name
,
(
enum
tag_type
)
i
,
handler
,
handler_ctx
);
}
for
(
const
struct
tag_table
*
i
=
ape_tags
;
i
->
name
!=
NULL
;
++
i
)
wavpack_scan_tag_item
(
wpc
,
i
->
name
,
i
->
type
,
handler
,
handler_ctx
);
...
...
src/tag_ape.c
View file @
7088a679
...
...
@@ -24,7 +24,7 @@
#include "tag_handler.h"
#include "ape.h"
static
const
struct
tag_table
ape_tags
[]
=
{
const
struct
tag_table
ape_tags
[]
=
{
{
"album artist"
,
TAG_ALBUM_ARTIST
},
{
"year"
,
TAG_DATE
},
{
NULL
,
TAG_NUM_OF_ITEM_TYPES
}
...
...
src/tag_ape.h
View file @
7088a679
...
...
@@ -20,10 +20,14 @@
#ifndef MPD_TAG_APE_H
#define MPD_TAG_APE_H
#include "tag_table.h"
#include <stdbool.h>
struct
tag_handler
;
extern
const
struct
tag_table
ape_tags
[];
/**
* Scan the APE tags of a file.
*
...
...
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