CodeWriter: Write [Diagnostics] attribute
[vala-lang.git] / vapi / packages / gstreamer-interfaces-0.10 / gstreamer-interfaces-0.10-custom.vala
blob08945e8887aed4bc646d273bddad836628425f2f
1 /* gstreamer-interfaces-0.10-custom.vala
3 * Copyright (C) 2009 Matias De la Puente
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Matias De la Puente <mfpuente.ar@gmail.com>
23 namespace Gst {
24 [CCode (cheader_filename = "gst/interfaces/mixer.h")]
25 public class MixerOptions {
26 public unowned GLib.List<string> get_values ();
29 [CCode (cheader_filename = "gst/interfaces/colorbalance.h")]
30 public interface ColorBalance : Gst.ImplementsInterface, Gst.Element {
31 public abstract unowned GLib.List<Gst.ColorBalanceChannel> list_channels ();
34 [CCode (cheader_filename = "gst/interfaces/mixer.h")]
35 public interface Mixer : Gst.ImplementsInterface, Gst.Element {
36 public abstract unowned GLib.List<Gst.MixerTrack> list_tracks ();
39 [CCode (cheader_filename = "gst/interfaces/propertyprobe.h")]
40 public interface PropertyProbe {
41 public abstract unowned GLib.List<string> get_properties ();
44 [CCode (cheader_filename = "gst/interfaces/tuner.h")]
45 public interface Tuner : Gst.ImplementsInterface, Gst.Element {
46 public abstract unowned GLib.List<Gst.TunerChannel> list_channels ();
47 public abstract unowned GLib.List<Gst.TunerNorm> list_norms ();
50 [CCode (cheader_filename = "gst/interfaces/navigation.h")]
51 public interface Navigation : Gst.Element {