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

📄 id3.h

📁 FreeAMP(MP3播放)程序源代码-用来研究MP3解码
💻 H
字号:
/* $Id: id3.h,v 1.2 2001/01/16 21:08:01 robert Exp $
 * 
 * id3lib: a software library for creating and manipulating id3v1/v2 tags
 * Copyright 1999, 2000  Scott Thomas Haug
 * 
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Library General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 * 
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
 * License for more details.

 * You should have received a copy of the GNU Library General Public License
 * along with this library; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

 * The id3lib authors encourage improvements and optimisations to be sent to
 * the id3lib coordinator.  Please see the README file for details on where to
 * send such submissions.  See the AUTHORS file for a list of people who have
 * contributed to id3lib.  See the ChangeLog file for a list of changes to
 * id3lib.  These files are distributed with id3lib at
 * http://download.sourceforge.net/id3lib/
 */

#ifndef _ID3LIB_ID3_H_
#define _ID3LIB_ID3_H_

#include "globals.h"

#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */

  typedef struct { char _dummy; } ID3Tag;
  typedef struct { char _dummy; } ID3TagIterator;
  typedef struct { char _dummy; } ID3TagConstIterator;
  typedef struct { char _dummy; } ID3Frame;
  typedef struct { char _dummy; } ID3Field;

  /* tag wrappers */
   ID3Tag     *ID3Tag_New                  (void);
   void        ID3Tag_Delete               (ID3Tag *tag);
   void        ID3Tag_Clear                (ID3Tag *tag);
   bool        ID3Tag_HasChanged           (const ID3Tag *tag);
   void        ID3Tag_SetUnsync            (ID3Tag *tag, bool unsync);
   void        ID3Tag_SetExtendedHeader    (ID3Tag *tag, bool ext);
   void        ID3Tag_SetPadding           (ID3Tag *tag, bool pad);
   void        ID3Tag_AddFrame             (ID3Tag *tag, const ID3Frame *frame);
   void        ID3Tag_AttachFrame          (ID3Tag *tag, ID3Frame *frame);
   void        ID3Tag_AddFrames            (ID3Tag *tag, const ID3Frame *frames, size_t num);
   ID3Frame   *ID3Tag_RemoveFrame          (ID3Tag *tag, const ID3Frame *frame);
   ID3_Err     ID3Tag_Parse                (ID3Tag *tag, const uchar header[ID3_TAGHEADERSIZE], const uchar *buffer);
   size_t      ID3Tag_Link                 (ID3Tag *tag, const char *fileName);
   ID3_Err     ID3Tag_Update               (ID3Tag *tag);
   ID3_Err     ID3Tag_UpdateByTagType      (ID3Tag *tag, flags_t type);
   ID3_Err     ID3Tag_Strip                (ID3Tag *tag, flags_t ulTagFlags);
   ID3Frame   *ID3Tag_FindFrameWithID      (const ID3Tag *tag, ID3_FrameID id);
   ID3Frame   *ID3Tag_FindFrameWithINT     (const ID3Tag *tag, ID3_FrameID id, ID3_FieldID fld, uint32 data);
   ID3Frame   *ID3Tag_FindFrameWithASCII   (const ID3Tag *tag, ID3_FrameID id, ID3_FieldID fld, const char *data);
   ID3Frame   *ID3Tag_FindFrameWithUNICODE (const ID3Tag *tag, ID3_FrameID id, ID3_FieldID fld, const unicode_t *data);
   size_t      ID3Tag_NumFrames            (const ID3Tag *tag);
   bool        ID3Tag_HasTagType           (const ID3Tag *tag, ID3_TagType);
   ID3TagIterator* ID3Tag_CreateIterator   (ID3Tag *tag);
   ID3TagConstIterator* ID3Tag_CreateConstIterator(const ID3Tag *tag);

   void        ID3TagIterator_Delete       (ID3TagIterator*);
   ID3Frame   *ID3TagIterator_GetNext      (ID3TagIterator*);
   void        ID3TagConstIterator_Delete  (ID3TagConstIterator*);
   const ID3Frame *ID3TagConstIterator_GetNext(ID3TagConstIterator*);

  /* frame wrappers */
   ID3Frame   *ID3Frame_New                (void);
   ID3Frame   *ID3Frame_NewID              (ID3_FrameID id);
   void        ID3Frame_Delete             (ID3Frame *frame);
   void        ID3Frame_Clear              (ID3Frame *frame);
   void        ID3Frame_SetID              (ID3Frame *frame, ID3_FrameID id);
   ID3_FrameID ID3Frame_GetID              (const ID3Frame *frame);
   ID3Field   *ID3Frame_GetField           (const ID3Frame *frame, ID3_FieldID name);
   void        ID3Frame_SetCompression     (ID3Frame *frame, bool comp);
   bool        ID3Frame_GetCompression     (const ID3Frame *frame);

  /* field wrappers */
   void        ID3Field_Clear              (ID3Field *field);
   size_t      ID3Field_Size               (const ID3Field *field);
   size_t      ID3Field_GetNumTextItems    (const ID3Field *field);
   void        ID3Field_SetINT             (ID3Field *field, uint32 data);
   uint32      ID3Field_GetINT             (const ID3Field *field);
   void        ID3Field_SetUNICODE         (ID3Field *field, const unicode_t *string);
   size_t      ID3Field_GetUNICODE         (const ID3Field *field, unicode_t *buffer, size_t maxChars);
   size_t      ID3Field_GetUNICODEItem     (const ID3Field *field, unicode_t *buffer, size_t maxChars, index_t itemNum);
   void        ID3Field_AddUNICODE         (ID3Field *field, const unicode_t *string);
   void        ID3Field_SetASCII           (ID3Field *field, const char *string);
   size_t      ID3Field_GetASCII           (const ID3Field *field, char *buffer, size_t maxChars);
   size_t      ID3Field_GetASCIIItem       (const ID3Field *field, char *buffer, size_t maxChars, index_t itemNum);
   void        ID3Field_AddASCII           (ID3Field *field, const char *string);
   void        ID3Field_SetBINARY          (ID3Field *field, const uchar *data, size_t size);
   void        ID3Field_GetBINARY          (const ID3Field *field, uchar *buffer, size_t buffLength);
   void        ID3Field_FromFile           (ID3Field *field, const char *fileName);
   void        ID3Field_ToFile             (const ID3Field *field, const char *fileName);

  /* Deprecated */
   void        ID3Tag_SetCompression       (ID3Tag *tag, bool comp);

#ifdef __cplusplus
}
#endif /*__cplusplus*/

#endif /* _ID3LIB_ID3_H_ */

⌨️ 快捷键说明

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