您遇到的问题与字节顺序有关。我假设您正在使用 x86 系统或另一个小端系统。ID3 文档指出:
多字节数字中的字节顺序是最高有效字节在前(例如,$12345678 将编码为 $12 34 56 78)。
因此,size
在文件中存储为大端数字。在您将文件的字节读入您struct
的size
. 这也是为什么您必须比较tag->id
而0x334449
不是0x494433
- 存储的字节tag->id
作为多字节值访问,并以 little-endian 顺序进行解释。
这是我为完成这项工作所做的更改。我改变了你struct
的一点,使用数组uint8_t
来获得正确的字节数。我也用来memcmp()
验证tag->id
。我自由地使用unsigned
和unsigned long
类型,以避免移位问题。到 little-endian 的转换是原始的,并且假定为 8 位字节。
这是您在第一篇文章中链接到的整个文件,以及我的更改。我将 mp3 文件更改为可以测试的文件。
#include <stdint.h>
#include <stdio.h>
#include <string.h> // for memcmp()
/**
** TAG is always present at the beggining of a ID3V2 MP3 file
** Constant size 10 bytes
**/
typedef struct
{
uint8_t id[3]; //"ID3"
uint8_t version[2]; // $04 00
uint8_t flags; // %abcd0000
uint32_t size; //4 * %0xxxxxxx
}__attribute__((__packed__))
ID3TAG;
unsigned int unsynchsafe(uint32_t be_in)
{
unsigned int out = 0ul, mask = 0x7F000000ul;
unsigned int in = 0ul;
/* be_in is now big endian */
/* convert to little endian */
in = ((be_in >> 24) | ((be_in >> 8) & 0xFF00ul) |
((be_in << 8) & 0xFF0000ul) | (be_in << 24));
while (mask) {
out >>= 1;
out |= (in & mask);
mask >>= 8;
}
return out;
}
/**
** Makes sure the file is supported and return the correct size
**/
int mp3Header(FILE* media, ID3TAG* tag)
{
unsigned int tag_size;
fread(tag, sizeof(ID3TAG), 1, media);
if(memcmp ((tag->id), "ID3", 3))
{
return -1;
}
tag_size = unsynchsafe(tag->size);
printf("tag_size = %u\n", tag_size);
return 0;
}
// main function
int main(void)
{
// opens the file
FILE* media = fopen("cognicast-049-carin-meier.mp3", "r");
//checks if the file exists
if(media == NULL)
{
printf("Couldn't read file\n");
return -1;
}
ID3TAG mp3_tag;
// check for the format of the file
if(mp3Header(media, &mp3_tag) != 0)
{
printf("Unsupported File Format\n");
fclose(media);
return -2;
}
fclose(media);
return 0;
}
顺便说一句,C 标准库中已经有一个函数可以进行这种转换。ntohl()
在netinet/in.h
头文件中,它将一个uint32_t
数字从网络字节顺序(大端)转换为主机字节顺序。如果您的系统是 big-endian,则该函数返回输入值不变。但是,如果您的系统是 little-endian,则输入将转换为 little-endian 表示。这对于在使用不同字节排序约定的计算机之间传递数据很有用。还有相关的函数htonl()
, htons()
, 和ntohs()
。
可以通过将我的原始转换代码替换为以下代码来更改(为了更好)使用ntohl()
:
#include <netinet/in.h> // for ntohl()
...
/* convert to host-byte-order (little-endian for x86) */
in = ntohl(be_in);