0

我正在尝试读取 ID3V2 标签的大小。我的代码应该存储第一个标头,其中包含此结构中的标识、版本、标志和大小。代码从第 0 位读取到第 9 位并将其存储在这里

typedef struct
{
   uint32_t id:24; //"ID3"
   uint16_t version; // $04 00
   uint8_t flags; // %abcd0000
   uint32_t size; //4 * %0xxxxxxx
}__attribute__((__packed__))
ID3TAG;

阅读:

fread(tag, sizeof(ID3TAG), 1, media);

然后将 tag.size 的值传递给这个不同步大小位的函数:

int unsynchsafe(uint32_t in)
{
    int out = 0, mask = 0x7F000000;

    while (mask) {
        out >>= 1;
        out |= in & mask;
        mask >>= 8;
    }

    return out;
}

然而,synchsafe 的返回值永远不可能是正确的标头大小。我得到了 248627840。我使用 exif 工具进行了仔细检查,结果不正确。我真的很感激任何帮助

4

1 回答 1

1

您遇到的问题与字节顺序有关。我假设您正在使用 x86 系统或另一个小端系统。ID3 文档指出:

多字节数字中的字节顺序是最高有效字节在前(例如,$12345678 将编码为 $12 34 56 78)。

因此,size在文件中存储为大端数字。在您将文件的字节读入您structsize. 这也是为什么您必须比较tag->id0x334449不是0x494433- 存储的字节tag->id作为多字节值访问,并以 little-endian 顺序进行解释。

这是我为完成这项工作所做的更改。我改变了你struct的一点,使用数组uint8_t来获得正确的字节数。我也用来memcmp()验证tag->id。我自由地使用unsignedunsigned 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);
于 2016-12-12T01:23:45.247 回答