update to 0.15.1 of libmad and libid3tag
git-svn-id: https://svn.musicpd.org/mpd/trunk@196 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
+10
-2
@@ -1,11 +1,19 @@
|
||||
|
||||
libid3tag - ID3 tag manipulation library
|
||||
Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
|
||||
$Id: CHANGES,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
$Id: CHANGES,v 1.11 2004/02/17 02:04:10 rob Exp $
|
||||
|
||||
===============================================================================
|
||||
|
||||
Version 0.15.1 (beta)
|
||||
|
||||
* Updated to autoconf 2.59, automake 1.8.2, libtool 1.5.2.
|
||||
|
||||
* Fixed a potential problem in file.c when writing empty ID3v2 tags.
|
||||
|
||||
* Added new id3_field_gettextencoding() API routine.
|
||||
|
||||
Version 0.15.0 (beta)
|
||||
|
||||
* Updated to autoconf 2.57, automake 1.7.5, libtool 1.4.3.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
libid3tag - ID3 tag manipulation library
|
||||
Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
|
||||
libid3tag - ID3 tag manipulation library
|
||||
Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
|
||||
$Id: CREDITS,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
$Id: CREDITS,v 1.2 2004/01/23 09:41:32 rob Exp $
|
||||
|
||||
===============================================================================
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
##
|
||||
## libid3tag - ID3 tag manipulation library
|
||||
## Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
## Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##
|
||||
## $Id: Makefile.am,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
## $Id: Makefile.am,v 1.26 2004/02/17 02:11:28 rob Exp $
|
||||
##
|
||||
|
||||
## Process this file with automake to produce Makefile.in
|
||||
@@ -63,9 +63,9 @@ noinst_HEADERS = id3tag.h
|
||||
## 6. If any interfaces have been removed since the last public release,
|
||||
## then set AGE to 0.
|
||||
|
||||
version_current = 2
|
||||
version_current = 3
|
||||
version_revision = 0
|
||||
version_age = 2
|
||||
version_age = 3
|
||||
|
||||
version_info = $(version_current):$(version_revision):$(version_age)
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
|
||||
libid3tag - ID3 tag manipulation library
|
||||
Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
|
||||
$Id: README,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
$Id: README,v 1.5 2004/01/23 09:41:32 rob Exp $
|
||||
|
||||
===============================================================================
|
||||
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
|
||||
libid3tag - ID3 tag manipulation library
|
||||
Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
|
||||
$Id: TODO,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
$Id: TODO,v 1.2 2004/01/23 09:41:32 rob Exp $
|
||||
|
||||
===============================================================================
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
0.15.0b
|
||||
0.15.1b
|
||||
configure.ac:24
|
||||
id3tag.h:334-337
|
||||
msvc++/config.h:57
|
||||
id3tag.h:338-341
|
||||
msvc++/config.h:59,65,71
|
||||
|
||||
Makefile.am:63-65
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%{
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -17,7 +17,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: compat.gperf,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: compat.gperf,v 1.11 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: compat.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: compat.h,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_COMPAT_H
|
||||
|
||||
@@ -72,8 +72,6 @@
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
#undef const
|
||||
|
||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
||||
#ifndef __cplusplus
|
||||
/* Define as `__inline' if that's what the C compiler calls it, or to nothing
|
||||
if it is not supported. */
|
||||
#undef inline
|
||||
#endif
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
dnl -*- m4 -*-
|
||||
dnl
|
||||
dnl libid3tag - ID3 tag manipulation library
|
||||
dnl Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
dnl Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
dnl
|
||||
dnl This program is free software; you can redistribute it and/or modify
|
||||
dnl it under the terms of the GNU General Public License as published by
|
||||
@@ -17,11 +17,11 @@ dnl You should have received a copy of the GNU General Public License
|
||||
dnl along with this program; if not, write to the Free Software
|
||||
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
dnl
|
||||
AC_REVISION([$Id: configure.ac,v 1.1 2003/08/14 03:57:13 shank Exp $])dnl
|
||||
AC_REVISION([$Id: configure.ac,v 1.12 2004/01/23 23:22:46 rob Exp $])dnl
|
||||
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_INIT([ID3 Tag], [0.15.0b], [support@underbit.com], [libid3tag])
|
||||
AC_INIT([ID3 Tag], [0.15.1b], [support@underbit.com], [libid3tag])
|
||||
AC_PREREQ(2.53)
|
||||
|
||||
AC_CONFIG_SRCDIR([id3tag.h])
|
||||
|
||||
+5
-5
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: crc.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: crc.c,v 1.11 2004/02/17 02:04:10 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
@@ -104,10 +104,10 @@ unsigned long const crc_table[256] = {
|
||||
};
|
||||
|
||||
/*
|
||||
* NAME: crc->calculate()
|
||||
* DESCRIPTION: compute CRC-32 value (ISO 3309)
|
||||
* NAME: crc->compute()
|
||||
* DESCRIPTION: calculate CRC-32 value (ISO 3309)
|
||||
*/
|
||||
unsigned long id3_crc_calculate(id3_byte_t const *data, id3_length_t length)
|
||||
unsigned long id3_crc_compute(id3_byte_t const *data, id3_length_t length)
|
||||
{
|
||||
register unsigned long crc;
|
||||
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: crc.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: crc.h,v 1.8 2004/02/17 02:04:10 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_CRC_H
|
||||
@@ -24,6 +24,6 @@
|
||||
|
||||
# include "id3tag.h"
|
||||
|
||||
unsigned long id3_crc_calculate(id3_byte_t const *, id3_length_t);
|
||||
unsigned long id3_crc_compute(id3_byte_t const *, id3_length_t);
|
||||
|
||||
# endif
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: debug.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: debug.c,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: debug.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: debug.h,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_DEBUG_H
|
||||
@@ -25,8 +25,7 @@
|
||||
# include <stdlib.h>
|
||||
|
||||
void *id3_debug_malloc(size_t, char const *, unsigned int);
|
||||
void *id3_debug_calloc(size_t, size_t,
|
||||
char const *file, unsigned int line);
|
||||
void *id3_debug_calloc(size_t, size_t, char const *, unsigned int);
|
||||
void *id3_debug_realloc(void *, size_t, char const *, unsigned int);
|
||||
void id3_debug_free(void *, char const *, unsigned int);
|
||||
|
||||
|
||||
+17
-2
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: field.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: field.c,v 1.16 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
@@ -749,6 +749,21 @@ signed long id3_field_getint(union id3_field const *field)
|
||||
return field->number.value;
|
||||
}
|
||||
|
||||
/*
|
||||
* NAME: field->gettextencoding()
|
||||
* DESCRIPTION: return the value of a text encoding field
|
||||
*/
|
||||
enum id3_field_textencoding
|
||||
id3_field_gettextencoding(union id3_field const *field)
|
||||
{
|
||||
assert(field);
|
||||
|
||||
if (field->type != ID3_FIELD_TYPE_TEXTENCODING)
|
||||
return -1;
|
||||
|
||||
return field->number.value;
|
||||
}
|
||||
|
||||
/*
|
||||
* NAME: field->getlatin1()
|
||||
* DESCRIPTION: return the value of a latin1 field
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: field.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: field.h,v 1.9 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_FIELD_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: file.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: file.c,v 1.21 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
@@ -522,7 +522,7 @@ int v1_write(struct id3_file *file,
|
||||
if (fseek(file->iofile, (file->flags & ID3_FILE_FLAG_ID3V1) ? -128 : 0,
|
||||
SEEK_END) == -1 ||
|
||||
(location = ftell(file->iofile)) == -1 ||
|
||||
fwrite(data, 128, 1, file->iofile) == 0 ||
|
||||
fwrite(data, 128, 1, file->iofile) != 1 ||
|
||||
fflush(file->iofile) == EOF)
|
||||
return -1;
|
||||
|
||||
@@ -577,13 +577,14 @@ int v2_write(struct id3_file *file,
|
||||
{
|
||||
assert(!data || length > 0);
|
||||
|
||||
if (((file->ntags == 1 && !(file->flags & ID3_FILE_FLAG_ID3V1)) ||
|
||||
if (data &&
|
||||
((file->ntags == 1 && !(file->flags & ID3_FILE_FLAG_ID3V1)) ||
|
||||
(file->ntags == 2 && (file->flags & ID3_FILE_FLAG_ID3V1))) &&
|
||||
file->tags[0].length == length) {
|
||||
/* easy special case: rewrite existing tag in-place */
|
||||
|
||||
if (fseek(file->iofile, file->tags[0].location, SEEK_SET) == -1 ||
|
||||
fwrite(data, length, 1, file->iofile) == 0 ||
|
||||
fwrite(data, length, 1, file->iofile) != 1 ||
|
||||
fflush(file->iofile) == EOF)
|
||||
return -1;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: file.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: file.h,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_FILE_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: frame.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: frame.c,v 1.15 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: frame.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: frame.h,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_FRAME_H
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%{
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -17,7 +17,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: frametype.gperf,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: frametype.gperf,v 1.7 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: frametype.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: frametype.h,v 1.7 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_FRAMETYPE_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: genre.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: genre.c,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: genre.dat.in,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: genre.dat.in,v 1.7 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# libid3tag - ID3 tag manipulation library
|
||||
# Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
# Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
# $Id: genre.dat.sed,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
# $Id: genre.dat.sed,v 1.10 2004/01/23 09:41:32 rob Exp $
|
||||
#
|
||||
|
||||
1i\
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: genre.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: genre.h,v 1.6 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_GENRE_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: global.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: global.h,v 1.9 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_GLOBAL_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -19,7 +19,7 @@
|
||||
* If you would like to negotiate alternate licensing terms, you may do
|
||||
* so by contacting: Underbit Technologies, Inc. <info@underbit.com>
|
||||
*
|
||||
* $Id: id3tag.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: id3tag.h,v 1.17 2004/01/23 23:22:46 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_ID3TAG_H
|
||||
@@ -300,6 +300,7 @@ int id3_field_setbinarydata(union id3_field *,
|
||||
id3_byte_t const *, id3_length_t);
|
||||
|
||||
signed long id3_field_getint(union id3_field const *);
|
||||
enum id3_field_textencoding id3_field_gettextencoding(union id3_field const *);
|
||||
id3_latin1_t const *id3_field_getlatin1(union id3_field const *);
|
||||
id3_latin1_t const *id3_field_getfulllatin1(union id3_field const *);
|
||||
id3_ucs4_t const *id3_field_getstring(union id3_field const *);
|
||||
@@ -336,7 +337,7 @@ id3_ucs4_t *id3_utf8_ucs4duplicate(id3_utf8_t const *);
|
||||
|
||||
# define ID3_VERSION_MAJOR 0
|
||||
# define ID3_VERSION_MINOR 15
|
||||
# define ID3_VERSION_PATCH 0
|
||||
# define ID3_VERSION_PATCH 1
|
||||
# define ID3_VERSION_EXTRA " (beta)"
|
||||
|
||||
# define ID3_VERSION_STRINGIZE(str) #str
|
||||
@@ -347,7 +348,7 @@ id3_ucs4_t *id3_utf8_ucs4duplicate(id3_utf8_t const *);
|
||||
ID3_VERSION_STRING(ID3_VERSION_PATCH) \
|
||||
ID3_VERSION_EXTRA
|
||||
|
||||
# define ID3_PUBLISHYEAR "2000-2003"
|
||||
# define ID3_PUBLISHYEAR "2000-2004"
|
||||
# define ID3_AUTHOR "Underbit Technologies, Inc."
|
||||
# define ID3_EMAIL "info@underbit.com"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: latin1.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: latin1.c,v 1.10 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: latin1.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: latin1.h,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_LATIN1_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: parse.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: parse.c,v 1.9 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: parse.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: parse.h,v 1.6 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_PARSE_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: render.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: render.c,v 1.11 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: render.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: render.h,v 1.7 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_RENDER_H
|
||||
|
||||
+5
-5
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: tag.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: tag.c,v 1.20 2004/02/17 02:04:10 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
@@ -506,7 +506,7 @@ struct id3_tag *v2_parse(id3_byte_t const *ptr)
|
||||
|
||||
crc = id3_parse_uint(&ehptr, 4);
|
||||
|
||||
if (crc != id3_crc_calculate(ptr, end - ptr))
|
||||
if (crc != id3_crc_compute(ptr, end - ptr))
|
||||
goto fail;
|
||||
|
||||
tag->extendedflags |= ID3_TAG_EXTENDEDFLAG_CRCDATAPRESENT;
|
||||
@@ -579,7 +579,7 @@ struct id3_tag *v2_parse(id3_byte_t const *ptr)
|
||||
crc = id3_parse_syncsafe(&ehptr, 5);
|
||||
ehptr += bytes - 5;
|
||||
|
||||
if (crc != id3_crc_calculate(ptr, end - ptr))
|
||||
if (crc != id3_crc_compute(ptr, end - ptr))
|
||||
goto fail;
|
||||
}
|
||||
|
||||
@@ -895,7 +895,7 @@ id3_length_t id3_tag_render(struct id3_tag const *tag, id3_byte_t *buffer)
|
||||
|
||||
if (crc_ptr) {
|
||||
id3_render_syncsafe(&crc_ptr,
|
||||
id3_crc_calculate(frames_ptr, *ptr - frames_ptr), 5);
|
||||
id3_crc_compute(frames_ptr, *ptr - frames_ptr), 5);
|
||||
}
|
||||
|
||||
/* footer */
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: tag.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: tag.h,v 1.10 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_TAG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: ucs4.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: ucs4.c,v 1.13 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: ucs4.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: ucs4.h,v 1.11 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_UCS4_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: utf16.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: utf16.c,v 1.9 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: utf16.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: utf16.h,v 1.8 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_UTF16_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: utf8.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: utf8.c,v 1.9 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: utf8.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: utf8.h,v 1.7 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_UTF8_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: util.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: util.c,v 1.9 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: util.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: util.h,v 1.6 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_UTIL_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: version.c,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: version.c,v 1.7 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifdef HAVE_CONFIG_H
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* libid3tag - ID3 tag manipulation library
|
||||
* Copyright (C) 2000-2003 Underbit Technologies, Inc.
|
||||
* Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Id: version.h,v 1.1 2003/08/14 03:57:13 shank Exp $
|
||||
* $Id: version.h,v 1.7 2004/01/23 09:41:32 rob Exp $
|
||||
*/
|
||||
|
||||
# ifndef LIBID3TAG_VERSION_H
|
||||
|
||||
Reference in New Issue
Block a user