Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/id3.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ typedef struct id3info {
uint8_t tag_data_safe;
uint32_t size;
uint32_t size_remain;
uint32_t offset; // For non-MP3, offset into file where tag begins
off_t offset; // For non-MP3, offset into file where tag begins
} id3info;

typedef struct id3_compat {
Expand All @@ -117,7 +117,7 @@ extern struct id3_frametype const id3_frametype_experimental;
extern struct id3_frametype const id3_frametype_unknown;
extern struct id3_frametype const id3_frametype_obsolete;

int parse_id3(PerlIO *infile, char *file, HV *info, HV *tags, uint32_t seek, off_t file_size);
int parse_id3(PerlIO *infile, char *file, HV *info, HV *tags, off_t seek, off_t file_size);
int _id3_parse_v1(id3info *id3);
int _id3_parse_v2(id3info *id3);
int _id3_parse_v2_frame(id3info *id3);
Expand Down
2 changes: 1 addition & 1 deletion src/id3.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ _varint(unsigned char *buf, int length)
}

int
parse_id3(PerlIO *infile, char *file, HV *info, HV *tags, uint32_t seek, off_t file_size)
parse_id3(PerlIO *infile, char *file, HV *info, HV *tags, off_t seek, off_t file_size)
{
int err = 0;
unsigned char *bptr;
Expand Down