]> git.sesse.net Git - vlc/blob - include/vlc_meta.h
Start of meta engine stuff. src/input/input.c needs to be fixed a bit. I'll finish...
[vlc] / include / vlc_meta.h
1 /*****************************************************************************
2  * vlc_meta.h: Stream meta-data
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_META_H
25 #define _VLC_META_H 1
26
27 /* VLC meta name */
28 #define VLC_META_INFO_CAT           N_("Meta-information")
29 #define VLC_META_TITLE              N_("Title")
30 #define VLC_META_AUTHOR             N_("Author")
31 #define VLC_META_ARTIST             N_("Artist")
32 #define VLC_META_GENRE              N_("Genre")
33 #define VLC_META_COPYRIGHT          N_("Copyright")
34 #define VLC_META_COLLECTION         N_("Album/movie/show title")
35 #define VLC_META_SEQ_NUM            N_("Track number/position in set")
36 #define VLC_META_DESCRIPTION        N_("Description")
37 #define VLC_META_RATING             N_("Rating")
38 #define VLC_META_DATE               N_("Date")
39 #define VLC_META_SETTING            N_("Setting")
40 #define VLC_META_URL                N_("URL")
41 #define VLC_META_LANGUAGE           N_("Language")
42 #define VLC_META_NOW_PLAYING        N_("Now Playing")
43 #define VLC_META_PUBLISHER          N_("Publisher")
44 #define VLC_META_ENCODED_BY         N_("Encoded by")
45
46 #define VLC_META_ART_URL            N_("Art URL")
47
48 #define VLC_META_CODEC_NAME         N_("Codec Name")
49 #define VLC_META_CODEC_DESCRIPTION  N_("Codec Description")
50
51 struct vlc_meta_t
52 {
53     char *psz_title;
54     char *psz_author;
55     char *psz_artist;
56     char *psz_genre;
57     char *psz_copyright;
58     char *psz_album;
59     char *psz_tracknum;
60     char *psz_description;
61     char *psz_rating;
62     char *psz_date;
63     char *psz_setting;
64     char *psz_url;
65     char *psz_language;
66     char *psz_nowplaying;
67     char *psz_publisher;
68     char *psz_encodedby;
69     char *psz_arturl;
70 #if 0
71     /* track meta information */
72     int         i_track;
73     vlc_meta_t  **track;
74 #endif
75 };
76
77 #define vlc_meta_Set( meta,var,val ) { \
78     if( meta->psz_##var ) free( meta->psz_##var ); \
79     meta->psz_##var = strdup( val ); }
80
81 #define vlc_meta_SetTitle( meta, b ) vlc_meta_Set( meta, title, b );
82 #define vlc_meta_SetArtist( meta, b ) vlc_meta_Set( meta, artist, b );
83 #define vlc_meta_SetAuthor( meta, b ) vlc_meta_Set( meta, author, b );
84 #define vlc_meta_SetGenre( meta, b ) vlc_meta_Set( meta, genre, b );
85 #define vlc_meta_SetCopyright( meta, b ) vlc_meta_Set( meta, copyright, b );
86 #define vlc_meta_SetAlbum( meta, b ) vlc_meta_Set( meta, album, b );
87 #define vlc_meta_SetTracknum( meta, b ) vlc_meta_Set( meta, tracknum, b );
88 #define vlc_meta_SetDescription( meta, b ) vlc_meta_Set( meta, description, b );
89 #define vlc_meta_SetRating( meta, b ) vlc_meta_Set( meta, rating, b );
90 #define vlc_meta_SetDate( meta, b ) vlc_meta_Set( meta, date, b );
91 #define vlc_meta_SetSetting( meta, b ) vlc_meta_Set( meta, setting, b );
92 #define vlc_meta_SetURL( meta, b ) vlc_meta_Set( meta, url, b );
93 #define vlc_meta_SetLanguage( meta, b ) vlc_meta_Set( meta, language, b );
94 #define vlc_meta_SetNowPlaying( meta, b ) vlc_meta_Set( meta, nowplaying, b );
95 #define vlc_meta_SetPublisher( meta, b ) vlc_meta_Set( meta, publisher, b );
96 #define vlc_meta_SetEncodedBy( meta, b ) vlc_meta_Set( meta, encodedby, b );
97 #define vlc_meta_SetArtURL( meta, b ) vlc_meta_Set( meta, arturl, b );
98
99 static inline vlc_meta_t *vlc_meta_New( void )
100 {
101     vlc_meta_t *m = (vlc_meta_t*)malloc( sizeof( vlc_meta_t ) );
102     if( !m ) return NULL;
103     m->psz_title = NULL;
104     m->psz_author = NULL;
105     m->psz_artist = NULL;
106     m->psz_genre = NULL;
107     m->psz_copyright = NULL;
108     m->psz_album = NULL;
109     m->psz_tracknum = NULL;
110     m->psz_description = NULL;
111     m->psz_rating = NULL;
112     m->psz_date = NULL;
113     m->psz_setting = NULL;
114     m->psz_url = NULL;
115     m->psz_language = NULL;
116     m->psz_nowplaying = NULL;
117     m->psz_publisher = NULL;
118     m->psz_encodedby = NULL;
119     m->psz_arturl = NULL;
120     return m;
121 }
122
123 static inline void vlc_meta_Delete( vlc_meta_t *m )
124 {
125     free( m->psz_title );
126     free( m->psz_author );
127     free( m->psz_artist );
128     free( m->psz_genre );
129     free( m->psz_copyright );
130     free( m->psz_album );
131     free( m->psz_tracknum );
132     free( m->psz_description );
133     free( m->psz_rating );
134     free( m->psz_date );
135     free( m->psz_setting );
136     free( m->psz_url );
137     free( m->psz_language );
138     free( m->psz_nowplaying );
139     free( m->psz_publisher );
140     free( m->psz_encodedby );
141     free( m->psz_arturl );
142
143     free( m );
144 }
145
146 static inline void vlc_meta_Merge( vlc_meta_t *dst, vlc_meta_t *src )
147 {
148     if( !dst || !src ) return;
149 #define COPY_FIELD( a ) \
150     if( src->psz_ ## a ) { \
151         if( dst->psz_ ## a ) free( dst->psz_## a ); \
152         dst->psz_##a = strdup( src->psz_##a ); \
153     }
154     COPY_FIELD( title );
155     COPY_FIELD( author );
156     COPY_FIELD( artist );
157     COPY_FIELD( genre );
158     COPY_FIELD( copyright );
159     COPY_FIELD( album );
160     COPY_FIELD( tracknum );
161     COPY_FIELD( description );
162     COPY_FIELD( rating );
163     COPY_FIELD( date );
164     COPY_FIELD( setting );
165     COPY_FIELD( url );
166     COPY_FIELD( language );
167     COPY_FIELD( nowplaying );
168     COPY_FIELD( publisher );
169     COPY_FIELD( encodedby );
170     COPY_FIELD( arturl );
171 }
172     /** \todo Track meta */
173
174 #endif