⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 id3.h

📁 ESS3890+SL原代码(1*16内存)
💻 H
字号:
/* Copyright 1997, ESS Technology, Inc.					*//* SCCSID @(#)id3.h	4.3 03/16/04 *//* * $Log$  */#ifndef __ID3_H__#define __ID3_H__/************************************************************************  Function: Getting ID3 information and skip ID3-V2.x data at beginning	of MP3 files.*************************************************************************/#ifdef MP3_STUD#define MP3_ID3_size		0#endif#define MAX_ID3V1_SEARCH	(2048+128)#define MAX_ID3_STRING	        600	#define MAX_ID3_ITEMS		5#ifdef USE_ID3_INFOtypedef struct{    char TAG[3];    char song_title[MAX_ID3_STRING];    char artist[MAX_ID3_STRING];    char album[MAX_ID3_STRING];    char year[4];    char type[MAX_ID3_STRING];    unsigned int str_len[2];    unsigned int position[2];    int cur_timer;    int cur_track;} ID3_INFO;       /* 127 Bytes */unsigned int id3_str_index;#endif USE_ID3_INFO/* global variables */extern int ID3_ABV_offset;#ifdef USE_ID3_INFOextern ID3_INFO *ID3_info;#endif USE_ID3_INFO/* global functions */extern int ID3_detect(int, int, int);#endif __ID3_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -