2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wim.taymans@chello.be>
5 * gstformat.h: Header for GstFormat types used in queries and
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
25 #ifndef __GST_FORMAT_H__
26 #define __GST_FORMAT_H__
30 #include <gst/gstiterator.h>
36 * @GST_FORMAT_UNDEFINED: undefined format
37 * @GST_FORMAT_DEFAULT: the default format of the pad/element. This can be
38 * samples for raw audio, frames/fields for raw video (some, but not all,
39 * elements support this; use @GST_FORMAT_TIME if you don't have a good
40 * reason to query for samples/frames)
41 * @GST_FORMAT_BYTES: bytes
42 * @GST_FORMAT_TIME: time in nanoseconds
43 * @GST_FORMAT_BUFFERS: buffers (few, if any, elements implement this as of
45 * @GST_FORMAT_PERCENT: percentage of stream (few, if any, elements implement
46 * this as of May 2009)
48 * Standard predefined formats
50 /* NOTE: don't forget to update the table in gstformat.c when changing
53 GST_FORMAT_UNDEFINED = 0, /* must be first in list */
54 GST_FORMAT_DEFAULT = 1,
57 GST_FORMAT_BUFFERS = 4,
58 GST_FORMAT_PERCENT = 5
61 /* a percentage is always relative to 1000000 */
63 * GST_FORMAT_PERCENT_MAX:
65 * The PERCENT format is between 0 and this value
67 #define GST_FORMAT_PERCENT_MAX G_GINT64_CONSTANT (1000000)
69 * GST_FORMAT_PERCENT_SCALE:
71 * The value used to scale down the reported PERCENT format value to
74 #define GST_FORMAT_PERCENT_SCALE G_GINT64_CONSTANT (10000)
76 typedef struct _GstFormatDefinition GstFormatDefinition;
79 * GstFormatDefinition:
80 * @value: The unique id of this format
81 * @nick: A short nick of the format
82 * @description: A longer description of the format
83 * @quark: A quark for the nick
87 struct _GstFormatDefinition
91 const gchar *description;
95 const gchar* gst_format_get_name (GstFormat format);
96 GQuark gst_format_to_quark (GstFormat format);
98 /* register a new format */
99 GstFormat gst_format_register (const gchar *nick,
100 const gchar *description);
101 GstFormat gst_format_get_by_nick (const gchar *nick);
103 /* check if a format is in an array of formats */
104 gboolean gst_formats_contains (const GstFormat *formats, GstFormat format);
106 /* query for format details */
107 G_CONST_RETURN GstFormatDefinition*
108 gst_format_get_details (GstFormat format);
109 GstIterator* gst_format_iterate_definitions (void);
113 #endif /* __GST_FORMAT_H__ */