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

« back to all changes in this revision

Viewing changes to metadata/monkey-media/stream-info-impl/mp4-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 MP4 metadata loading
4
 
 *
5
 
 *  Copyright (C) 2003 Bastien Nocera <hadess@hadess.net>
6
 
 *
7
 
 *  This program is free software; you can redistribute it and/or modify
8
 
 *  it under the terms of the GNU General Public License as published by
9
 
 *  the Free Software Foundation; either version 2 of the License, or
10
 
 *  (at your option) any later version.
11
 
 *
12
 
 *  This program is distributed in the hope that it will be useful,
13
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 *  GNU General Public License for more details.
16
 
 *
17
 
 *  You should have received a copy of the GNU General Public License
18
 
 *  along with this program; if not, write to the Free Software
19
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
 
 *
21
 
 */
22
 
 
23
 
#ifndef __MP4_STREAM_INFO_IMPL_H
24
 
#define __MP4_STREAM_INFO_IMPL_H
25
 
 
26
 
#include <glib-object.h>
27
 
 
28
 
#include "monkey-media-stream-info.h"
29
 
 
30
 
G_BEGIN_DECLS
31
 
 
32
 
#define TYPE_MP4_STREAM_INFO_IMPL         (MP4_stream_info_impl_get_type ())
33
 
#define MP4_STREAM_INFO_IMPL(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_MP4_STREAM_INFO_IMPL, MP4StreamInfoImpl))
34
 
#define MP4_STREAM_INFO_IMPL_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), TYPE_MP4_STREAM_INFO_IMPL, MP4StreamInfoImplClass))
35
 
#define IS_MP4_STREAM_INFO_IMPL(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_MP4_STREAM_INFO_IMPL))
36
 
#define IS_MP4_STREAM_INFO_IMPL_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_MP4_STREAM_INFO_IMPL))
37
 
#define MP4_STREAM_INFO_IMPL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_MP4_STREAM_INFO_IMPL, MP4StreamInfoImplClass))
38
 
 
39
 
typedef struct MP4StreamInfoImplPrivate MP4StreamInfoImplPrivate;
40
 
 
41
 
typedef struct
42
 
{
43
 
        MonkeyMediaStreamInfo parent;
44
 
 
45
 
        MP4StreamInfoImplPrivate *priv;
46
 
} MP4StreamInfoImpl;
47
 
 
48
 
typedef struct
49
 
{
50
 
        MonkeyMediaStreamInfoClass parent_class;
51
 
} MP4StreamInfoImplClass;
52
 
 
53
 
GType MP4_stream_info_impl_get_type (void);
54
 
 
55
 
G_END_DECLS
56
 
 
57
 
#endif /* __MP4_STREAM_INFO_IMPL_H */