ref: 68bf95fb72197840b719074dd365b4a2a0c383c4
dir: /plugins/winamp/AACINFO.H/
/* * FAAC - Freeware Advanced Audio Decoder * Copyright (C) 2001 Menno Bakker * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 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 * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser 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 * * $Id: AACINFO.H,v 1.2 2001/10/16 13:24:28 menno Exp $ */ typedef struct { int version; int channels; int sampling_rate; int bitrate; int length; int object_type; int headertype; } FAACAACInfo; int get_AAC_format(char *filename, FAACAACInfo *info, int *seek_table); static int f_id3v2_tag(HANDLE file); static int read_ADIF_header(HANDLE file, FAACAACInfo *info); static int read_ADTS_header(HANDLE file, FAACAACInfo *info, int *seek_table, int tagsize); int StringComp(char const *str1, char const *str2, unsigned long len);