summaryrefslogtreecommitdiff
path: root/gst-libs/gst/tag/tag.h
blob: 97eaf93618270636182e86d95701acec7a7a711b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* GStreamer
 * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
 *
 * 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.
 */


#ifndef __GST_TAG_TAG_H__
#define __GST_TAG_TAG_H__

#include <gst/gst.h>

G_BEGIN_DECLS


/* functions for vorbis comment manipulation */

G_CONST_RETURN gchar *	gst_tag_from_vorbis_tag			(const gchar *		vorbis_tag);
G_CONST_RETURN gchar *	gst_tag_to_vorbis_tag			(const gchar *		gst_tag);
void                    gst_vorbis_tag_add                      (GstTagList *           list, 
								 const gchar *          tag, 
								 const gchar *          value);

GList *                 gst_tag_to_vorbis_comments              (const GstTagList *     list, 
								 const gchar *          tag);

/* functions to convert GstBuffers with vorbiscomment contents to GstTagLists and back */
GstTagList *		gst_tag_list_from_vorbiscomment_buffer	(const GstBuffer *	buffer,
								 const guint8 *		id_data,
								 const guint		id_data_length,
								 gchar **		vendor_string);
GstBuffer *		gst_tag_list_to_vorbiscomment_buffer	(const GstTagList *	list,
								 const guint8 *		id_data,
								 const guint		id_data_length,
								 const gchar *		vendor_string);

/* functions for ID3 tag manipulation */

guint			gst_tag_id3_genre_count			(void);
G_CONST_RETURN gchar *	gst_tag_id3_genre_get			(const guint	      	id);
GstTagList *		gst_tag_list_new_from_id3v1		(const guint8 *		data);

G_CONST_RETURN gchar *	gst_tag_from_id3_tag			(const gchar *		vorbis_tag);
G_CONST_RETURN gchar *	gst_tag_to_id3_tag			(const gchar *		gst_tag);


G_END_DECLS

#endif /* __GST_TAG_TAG_H__ */