~ubuntu-branches/ubuntu/utopic/rhythmbox/utopic-proposed

« back to all changes in this revision

Viewing changes to metadata/monkey-media/stream-info-impl/flac-stream-info-impl.h

Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  monkey-sound
2
 
 *
3
 
 *  arch-tag: Header for FLAC metadata loading
4
 
 *
5
 
 *  Copyright (C) 2002 Jorn Baayen <jorn@nl.linux.org>
6
 
 *                     Marco Pesenti Gritti <marco@it.gnome.org>
7
 
 *                     Bastien Nocera <hadess@hadess.net>
8
 
 *                     Seth Nickell <snickell@stanford.edu>
9
 
 *
10
 
 *  This program is free software; you can redistribute it and/or modify
11
 
 *  it under the terms of the GNU General Public License as published by
12
 
 *  the Free Software Foundation; either version 2 of the License, or
13
 
 *  (at your option) any later version.
14
 
 *
15
 
 *  This program is distributed in the hope that it will be useful,
16
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
 *  GNU General Public License for more details.
19
 
 *
20
 
 *  You should have received a copy of the GNU General Public License
21
 
 *  along with this program; if not, write to the Free Software
22
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
 
 *
24
 
 */
25
 
 
26
 
#ifndef __FLAC_STREAM_INFO_IMPL_H
27
 
#define __FLAC_STREAM_INFO_IMPL_H
28
 
 
29
 
#include <glib-object.h>
30
 
 
31
 
#include "monkey-media-stream-info.h"
32
 
 
33
 
G_BEGIN_DECLS
34
 
 
35
 
#define TYPE_FLAC_STREAM_INFO_IMPL         (FLAC_stream_info_impl_get_type ())
36
 
#define FLAC_STREAM_INFO_IMPL(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_FLAC_STREAM_INFO_IMPL, FLACStreamInfoImpl))
37
 
#define FLAC_STREAM_INFO_IMPL_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), TYPE_FLAC_STREAM_INFO_IMPL, FLACStreamInfoImplClass))
38
 
#define IS_FLAC_STREAM_INFO_IMPL(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_FLAC_STREAM_INFO_IMPL))
39
 
#define IS_FLAC_STREAM_INFO_IMPL_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_FLAC_STREAM_INFO_IMPL))
40
 
#define FLAC_STREAM_INFO_IMPL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_FLAC_STREAM_INFO_IMPL, MP3StreamInfoImplClass))
41
 
 
42
 
typedef struct FLACStreamInfoImplPrivate FLACStreamInfoImplPrivate;
43
 
 
44
 
typedef struct
45
 
{
46
 
        MonkeyMediaStreamInfo parent;
47
 
 
48
 
        FLACStreamInfoImplPrivate *priv;
49
 
} FLACStreamInfoImpl;
50
 
 
51
 
typedef struct
52
 
{
53
 
        MonkeyMediaStreamInfoClass parent_class;
54
 
} FLACStreamInfoImplClass;
55
 
 
56
 
GType FLAC_stream_info_impl_get_type (void);
57
 
 
58
 
G_END_DECLS
59
 
 
60
 
#endif /* __FLAC_STREAM_INFO_IMPL_H */