2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wim.taymans@chello.be>
5 * gstformat.c: GstFormat registration
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library 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 GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
25 #include "gstformat.h"
27 static GList *_gst_formats = NULL;
28 static gint _n_values = 1; /* we start from 1 because 0 reserved for UNDEFINED */
30 typedef struct _GstFormatDefinition GstFormatDefinition;
32 struct _GstFormatDefinition
39 static GstFormatDefinition standard_definitions[] = {
40 { GST_FORMAT_DEFAULT, "default", "Default" },
41 { GST_FORMAT_BYTES, "bytes", "Bytes" },
42 { GST_FORMAT_TIME, "time", "Time" },
43 { GST_FORMAT_BUFFERS, "buffers", "Buffers" },
44 { GST_FORMAT_PERCENT, "percent", "Percent" },
45 { GST_FORMAT_UNITS, "units", "Units as defined by the media type" },
50 _gst_format_initialize (void)
52 GstFormatDefinition *standards = standard_definitions;
54 while (standards->nick) {
55 _gst_formats = g_list_prepend (_gst_formats, standards);
61 * gst_format_register:
62 * @nick: The nick of the new format
63 * @description: The description of the new format
65 * Create a new GstFormat based on the nick or return an
66 * allrady registered format with that nick
68 * Returns: A new GstFormat or an already registered format
72 gst_format_register (const gchar *nick, const gchar *description)
74 GstFormatDefinition *format;
77 g_return_val_if_fail (nick != NULL, 0);
78 g_return_val_if_fail (description != NULL, 0);
80 query = gst_format_get_by_nick (nick);
81 if (query != GST_FORMAT_UNDEFINED)
84 format = g_new0 (GstFormatDefinition, 1);
85 format->value = _n_values;
86 format->nick = g_strdup (nick);
87 format->description = g_strdup (description);
89 _gst_formats = g_list_prepend (_gst_formats, format);
97 * gst_format_get_by_nick:
98 * @nick: The nick of the format
100 * Return the format registered with the given nick.
102 * Returns: The format with @nick or GST_FORMAT_UNDEFINED
103 * if the format was not registered.
106 gst_format_get_by_nick (const gchar *nick)
109 GstFormatDefinition *format;
111 g_return_val_if_fail (nick != NULL, 0);
116 format = (GstFormatDefinition *) walk->data;
118 if (!strcmp (format->nick, nick))
119 return format->value;
121 walk = g_list_next (walk);
124 return GST_FORMAT_UNDEFINED;
128 * gst_format_get_details:
129 * @format: The format to get details of
130 * @nick: The nick of the format
131 * @description: The description of the format
133 * Get details about the given format.
135 * Returns: TRUE if the format was registered, FALSE otherwise
138 gst_format_get_details (GstFormat format, const gchar **nick, const gchar **description)
141 GstFormatDefinition *walk_format;
143 g_return_val_if_fail (nick != NULL, FALSE);
144 g_return_val_if_fail (description != NULL, FALSE);
149 walk_format = (GstFormatDefinition *) walk->data;
151 if (walk_format->value == format) {
152 *nick = walk_format->nick;
153 *description = walk_format->description;
158 walk = g_list_next (walk);