gst_plugins_base/gst/playback/gstplay-enum.c
changeset 0 0e761a78d257
child 8 4a7fac7dd34a
equal deleted inserted replaced
-1:000000000000 0:0e761a78d257
       
     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 static void
       
    26 register_gst_autoplug_select_result (GType * id)
       
    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   *id = g_enum_register_static ("GstAutoplugSelectResult", values);
       
    36 }
       
    37 #ifdef __SYMBIAN32__
       
    38 EXPORT_C
       
    39 #endif
       
    40 
       
    41 
       
    42 GType
       
    43 gst_autoplug_select_result_get_type (void)
       
    44 {
       
    45   static GType id;
       
    46   static GOnce once = G_ONCE_INIT;
       
    47 
       
    48   g_once (&once, (GThreadFunc) register_gst_autoplug_select_result, &id);
       
    49   return id;
       
    50 }
       
    51 
       
    52 static void
       
    53 register_gst_play_flags (GType * id)
       
    54 {
       
    55   static const GFlagsValue values[] = {
       
    56     {C_FLAGS (GST_PLAY_FLAG_VIDEO), "Render the video stream", "video"},
       
    57     {C_FLAGS (GST_PLAY_FLAG_AUDIO), "Render the audio stream", "audio"},
       
    58     {C_FLAGS (GST_PLAY_FLAG_TEXT), "Render subtitles", "text"},
       
    59     {C_FLAGS (GST_PLAY_FLAG_VIS),
       
    60           "Render visualisation when no video is present", "vis"},
       
    61     {C_FLAGS (GST_PLAY_FLAG_SOFT_VOLUME), "Use software volume", "soft-volume"},
       
    62     {C_FLAGS (GST_PLAY_FLAG_NATIVE_AUDIO), "Only use native audio formats",
       
    63           "native-audio"},
       
    64     {C_FLAGS (GST_PLAY_FLAG_NATIVE_VIDEO), "Only use native video formats",
       
    65           "native-video"},
       
    66     {0, NULL, NULL}
       
    67   };
       
    68   *id = g_flags_register_static ("GstPlayFlags", values);
       
    69 }
       
    70 #ifdef __SYMBIAN32__
       
    71 EXPORT_C
       
    72 #endif
       
    73 
       
    74 
       
    75 GType
       
    76 gst_play_flags_get_type (void)
       
    77 {
       
    78   static GType id;
       
    79   static GOnce once = G_ONCE_INIT;
       
    80 
       
    81   g_once (&once, (GThreadFunc) register_gst_play_flags, &id);
       
    82   return id;
       
    83 }