]> git.sesse.net Git - vlc/blob - include/vlc_meta.h
* vlc_meta.h: added a vlc_meta_t struct and some functions (for now,
[vlc] / include / vlc_meta.h
1 /*****************************************************************************
2  * vlc_meta.h
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: vlc_meta.h,v 1.1 2004/01/31 05:24:55 fenrir Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_META_H
25 #define _VLC_META_H 1
26
27 /* VLC meta name */
28 #define VLC_META_TITLE              N_("Title")
29 #define VLC_META_AUTHOR             N_("Author")
30 #define VLC_META_ARTIST             N_("Artist")
31 #define VLC_META_GENRE              N_("Genre")
32 #define VLC_META_COPYRIGHT          N_("Copyright")
33 #define VLC_META_DESCRIPTION        N_("Description")
34 #define VLC_META_RATING             N_("Rating")
35 #define VLC_META_DATE               N_("Date")
36 #define VLC_META_SETTING            N_("Setting")
37 #define VLC_META_URL                N_("Url")
38 #define VLC_META_LANGUAGE           N_("Language")
39 #define VLC_META_CODEC_NAME         N_("Codec Name")
40 #define VLC_META_CODEC_DESCRIPTION  N_("Codec Description")
41
42 typedef struct vlc_meta_t vlc_meta_t;
43 struct vlc_meta_t
44 {
45     /* meta name/value pairs */
46     int     i_meta;
47     char    **name;
48     char    **value;
49
50     /* track meta informations */
51     int         i_track;
52     vlc_meta_t  **track;
53 };
54
55 static inline vlc_meta_t *vlc_meta_New( void )
56 {
57     vlc_meta_t *m = malloc( sizeof( vlc_meta_t ) );
58
59     m->i_meta = 0;
60     m->name   = NULL;
61     m->value  = NULL;
62
63     m->i_track= 0;
64     m->track  = NULL;
65
66     return m;
67 }
68 static inline void vlc_meta_Delete( vlc_meta_t *m )
69 {
70     int i;
71     for( i = 0; i < m->i_meta; i++ )
72     {
73         free( m->name[i] );
74         free( m->value[i] );
75     }
76     if( m->name ) free( m->name );
77     if( m->value ) free( m->value );
78
79     for( i = 0; i < m->i_track; i++ )
80     {
81         vlc_meta_Delete( m->track[i] );
82     }
83     if( m->track ) free( m->track );
84     free( m );
85 }
86 static inline void vlc_meta_Add( vlc_meta_t *m, char *name, char *value )
87 {
88     int i_meta = m->i_meta;
89
90     name = strdup( name );
91     value = strdup( value );
92
93     TAB_APPEND( m->i_meta, m->name, name );
94     TAB_APPEND( i_meta,    m->value,value );
95 }
96
97 static inline vlc_meta_t *vlc_meta_Duplicate( vlc_meta_t *src )
98 {
99     vlc_meta_t *dst = vlc_meta_New();
100     int i;
101     for( i = 0; i < src->i_meta; i++ )
102     {
103         vlc_meta_Add( dst, src->name[i], src->value[i] );
104     }
105     for( i = 0; i < src->i_track; i++ )
106     {
107         vlc_meta_t *tk = vlc_meta_Duplicate( src->track[i] );
108         TAB_APPEND( dst->i_track, dst->track, tk );
109     }
110     return dst;
111 }
112
113 #endif
114