summaryrefslogtreecommitdiff
path: root/deadbeef.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-29 20:24:40 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-29 20:24:40 +0200
commit101275a75598cbcfff93f7ec138e9f858e418f66 (patch)
tree57ff48ff6f5f961a758751fcc28822afbf625d18 /deadbeef.h
parentc74205d7374733f9d200471a41144448c992acff (diff)
id3v2.4 -> 2.3 converter WIP
Diffstat (limited to 'deadbeef.h')
-rw-r--r--deadbeef.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deadbeef.h b/deadbeef.h
index 35e0d09e..e531aa3c 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -115,7 +115,6 @@ typedef struct DB_id3v2_frame_s {
typedef struct DB_id3v2_tag_s {
uint8_t version[2];
uint8_t flags;
- uint32_t size;
DB_id3v2_frame_t *frames;
} DB_id3v2_tag_t;
@@ -410,9 +409,10 @@ typedef struct {
int (*junk_read_id3v1) (DB_playItem_t *it, DB_FILE *fp);
int (*junk_read_id3v2) (DB_playItem_t *it, DB_FILE *fp);
int (*junk_read_id3v2_full) (DB_playItem_t *it, DB_id3v2_tag_t *tag, DB_FILE *fp);
+ int (*junk_id3v2_convert_24_to_23) (DB_id3v2_tag_t *tag24, DB_id3v2_tag_t *tag23);
void (*junk_free_id3v2) (DB_id3v2_tag_t *tag);
int (*junk_write_id3v2) (const char *fname, DB_id3v2_tag_t *tag);
- int (*junk_id3v2_add_text_frame_23) (DB_id3v2_tag_t *tag, const char *frame_id, const char *value);
+ DB_id3v2_frame_t *(*junk_id3v2_add_text_frame_23) (DB_id3v2_tag_t *tag, const char *frame_id, const char *value);
int (*junk_id3v2_remove_frames) (DB_id3v2_tag_t *tag, const char *frame_id);
int (*junk_read_ape) (DB_playItem_t *it, DB_FILE *fp);
int (*junk_get_leading_size) (DB_FILE *fp);