/* -*- linux-c -*- Copyright (C) 2007 Tom Szilagyi 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 the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. $Id: metadata_flac.h 868 2007-11-03 17:00:08Z tszilagyi $ */ #ifndef _METADATA_FLAC_H #define _METADATA_FLAC_H #include #ifdef HAVE_FLAC #include #endif /* HAVE_FLAC */ #include #include "common.h" #include "metadata.h" #ifdef HAVE_FLAC void metadata_from_flac_streammeta_vc(metadata_t * meta, FLAC__StreamMetadata_VorbisComment * vc); FLAC__StreamMetadata * metadata_to_flac_streammeta(metadata_t * meta); #ifdef HAVE_FLAC_8 void metadata_from_flac_streammeta_pic(metadata_t * meta, FLAC__StreamMetadata_Picture * pic); FLAC__StreamMetadata * metadata_apic_frame_to_smeta(meta_frame_t * frame); #endif /* HAVE_FLAC_8 */ #endif /* HAVE_FLAC */ #endif /* _METADATA_FLAC_H */