summaryrefslogtreecommitdiff
path: root/plugins.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-31 18:52:10 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-31 20:38:44 +0200
commit7eeefed0d5e4ec515dbaf980b58b9866b7d7dd5c (patch)
tree2ea9a5583ded247850c32b7fad3223c582416594 /plugins.c
parentd4f7499e49b40a449d04d771e1a360ac6b263648 (diff)
apev2 editing;
apev2->id3v2.4 converter; apev2 writer
Diffstat (limited to 'plugins.c')
-rw-r--r--plugins.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins.c b/plugins.c
index 86faf747..f28bb135 100644
--- a/plugins.c
+++ b/plugins.c
@@ -179,18 +179,18 @@ static DB_functions_t deadbeef_api = {
.volume_get_amp = volume_get_amp,
.volume_get_min_db = volume_get_min_db,
// junk reading
- .junk_read_id3v1 = (int (*)(DB_playItem_t *it, DB_FILE *fp))junk_read_id3v1,
- .junk_read_id3v2 = (int (*)(DB_playItem_t *it, DB_FILE *fp))junk_read_id3v2,
- .junk_read_id3v2_full = (int (*)(DB_playItem_t *, DB_id3v2_tag_t *tag, DB_FILE *fp))junk_read_id3v2_full,
+ .junk_id3v1_read = (int (*)(DB_playItem_t *it, DB_FILE *fp))junk_id3v1_read,
+ .junk_id3v2_read = (int (*)(DB_playItem_t *it, DB_FILE *fp))junk_id3v2_read,
+ .junk_id3v2_read_full = (int (*)(DB_playItem_t *, DB_id3v2_tag_t *tag, DB_FILE *fp))junk_id3v2_read_full,
.junk_id3v2_convert_24_to_23 = junk_id3v2_convert_24_to_23,
.junk_id3v2_convert_23_to_24 = junk_id3v2_convert_23_to_24,
.junk_id3v2_convert_22_to_24 = junk_id3v2_convert_22_to_24,
- .junk_free_id3v2 = junk_free_id3v2,
- .junk_write_id3v2 = junk_write_id3v2,
+ .junk_id3v2_free = junk_id3v2_free,
+ .junk_id3v2_write = junk_id3v2_write,
.junk_id3v2_remove_frames = junk_id3v2_remove_frames,
.junk_id3v2_add_text_frame_23 = junk_id3v2_add_text_frame_23,
.junk_id3v2_add_text_frame_24 = junk_id3v2_add_text_frame_24,
- .junk_read_ape = (int (*)(DB_playItem_t *it, DB_FILE *fp))junk_read_ape,
+ .junk_apev2_read = (int (*)(DB_playItem_t *it, DB_FILE *fp))junk_apev2_read,
.junk_get_leading_size = junk_get_leading_size,
.junk_get_leading_size_stdio = junk_get_leading_size_stdio,
.junk_detect_charset = junk_detect_charset,