1 /* GStreamer AIFF muxer
2 * Copyright (C) 2009 Robert Swain <robert.swain@gmail.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
22 * Alternatively, the contents of this file may be used under the
23 * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
24 * which case the following provisions apply instead of the ones
27 * This library is free software; you can redistribute it and/or
28 * modify it under the terms of the GNU Library General Public
29 * License as published by the Free Software Foundation; either
30 * version 2 of the License, or (at your option) any later version.
32 * This library is distributed in the hope that it will be useful,
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
35 * Library General Public License for more details.
37 * You should have received a copy of the GNU Library General Public
38 * License along with this library; if not, write to the
39 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
40 * Boston, MA 02110-1301, USA.
43 #ifndef __GST_AIFFMUX_H__
44 #define __GST_AIFFMUX_H__
47 #include <gst/audio/audio.h>
51 #define GST_TYPE_AIFF_MUX \
52 (gst_aiff_mux_get_type())
53 #define GST_AIFF_MUX(obj) \
54 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AIFF_MUX,GstAiffMux))
55 #define GST_AIFF_MUX_CLASS(klass) \
56 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AIFF_MUX,GstAiffMuxClass))
57 #define GST_IS_AIFF_MUX(obj) \
58 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AIFF_MUX))
59 #define GST_IS_AIFF_MUX_CLASS(klass) \
60 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AIFF_MUX))
62 typedef struct _GstAiffMux GstAiffMux;
63 typedef struct _GstAiffMuxClass GstAiffMuxClass;
68 * Opaque data structure.
85 struct _GstAiffMuxClass
87 GstElementClass parent_class;
90 GType gst_aiff_mux_get_type (void);
93 #endif /* __GST_AIFFMUX_H__ */