tizen 2.3 release
[framework/multimedia/gst-plugins-base0.10.git] / gst / playback / gstplay-enum.c
1 /* GStreamer
2  * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "gstplay-enum.h"
21
22 #define C_ENUM(v) ((gint) v)
23 #define C_FLAGS(v) ((guint) v)
24
25 GType
26 gst_autoplug_select_result_get_type (void)
27 {
28   static const GEnumValue values[] = {
29     {C_ENUM (GST_AUTOPLUG_SELECT_TRY), "GST_AUTOPLUG_SELECT_TRY", "try"},
30     {C_ENUM (GST_AUTOPLUG_SELECT_EXPOSE), "GST_AUTOPLUG_SELECT_EXPOSE",
31         "expose"},
32     {C_ENUM (GST_AUTOPLUG_SELECT_SKIP), "GST_AUTOPLUG_SELECT_SKIP", "skip"},
33     {0, NULL, NULL}
34   };
35   static volatile GType id = 0;
36
37   if (g_once_init_enter ((gsize *) & id)) {
38     GType _id;
39
40     _id = g_enum_register_static ("GstAutoplugSelectResult", values);
41
42     g_once_init_leave ((gsize *) & id, _id);
43   }
44
45   return id;
46 }
47
48 GType
49 gst_play_flags_get_type (void)
50 {
51   static const GFlagsValue values[] = {
52     {C_FLAGS (GST_PLAY_FLAG_VIDEO), "Render the video stream", "video"},
53     {C_FLAGS (GST_PLAY_FLAG_AUDIO), "Render the audio stream", "audio"},
54     {C_FLAGS (GST_PLAY_FLAG_TEXT), "Render subtitles", "text"},
55     {C_FLAGS (GST_PLAY_FLAG_VIS),
56         "Render visualisation when no video is present", "vis"},
57     {C_FLAGS (GST_PLAY_FLAG_SOFT_VOLUME), "Use software volume", "soft-volume"},
58     {C_FLAGS (GST_PLAY_FLAG_NATIVE_AUDIO), "Only use native audio formats",
59         "native-audio"},
60     {C_FLAGS (GST_PLAY_FLAG_NATIVE_VIDEO), "Only use native video formats",
61         "native-video"},
62     {C_FLAGS (GST_PLAY_FLAG_DOWNLOAD), "Attempt progressive download buffering",
63         "download"},
64     {C_FLAGS (GST_PLAY_FLAG_BUFFERING), "Buffer demuxed/parsed data",
65         "buffering"},
66     {C_FLAGS (GST_PLAY_FLAG_DEINTERLACE), "Deinterlace video if necessary",
67         "deinterlace"},
68     {0, NULL, NULL}
69   };
70   static volatile GType id = 0;
71
72   if (g_once_init_enter ((gsize *) & id)) {
73     GType _id;
74
75     _id = g_flags_register_static ("GstPlayFlags", values);
76
77     g_once_init_leave ((gsize *) & id, _id);
78   }
79
80   return id;
81 }