X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstformat.h;h=111ca9b82751642aeb0aed0d7fe9add0ac32f0c0;hb=5688773b91c3ea1094996a573f119230727a0978;hp=b7c0944c622ac9febf6de9c9edf877a6e12a461f;hpb=4514d28486de78ca1ab67c5415b4a09e5b9fe50e;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstformat.h b/gst/gstformat.h index b7c0944..111ca9b 100644 --- a/gst/gstformat.h +++ b/gst/gstformat.h @@ -17,8 +17,8 @@ * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301, USA. */ @@ -27,49 +27,99 @@ #include +#include + G_BEGIN_DECLS +/** + * GstFormat: + * @GST_FORMAT_UNDEFINED: undefined format + * @GST_FORMAT_DEFAULT: the default format of the pad/element. This can be + * samples for raw audio, frames/fields for raw video (some, but not all, + * elements support this; use @GST_FORMAT_TIME if you don't have a good + * reason to query for samples/frames) + * @GST_FORMAT_BYTES: bytes + * @GST_FORMAT_TIME: time in nanoseconds + * @GST_FORMAT_BUFFERS: buffers (few, if any, elements implement this as of + * May 2009) + * @GST_FORMAT_PERCENT: percentage of stream (few, if any, elements implement + * this as of May 2009) + * + * Standard predefined formats + */ +/* NOTE: don't forget to update the table in gstformat.c when changing + * this enum */ typedef enum { - GST_FORMAT_UNDEFINED = 0, - GST_FORMAT_DEFAULT = 1, - GST_FORMAT_BYTES = 2, - GST_FORMAT_TIME = 3, - GST_FORMAT_BUFFERS = 4, - GST_FORMAT_PERCENT = 5, - /* samples for audio, frames/fields for video */ - GST_FORMAT_UNITS = 6 + GST_FORMAT_UNDEFINED = 0, /* must be first in list */ + GST_FORMAT_DEFAULT = 1, + GST_FORMAT_BYTES = 2, + GST_FORMAT_TIME = 3, + GST_FORMAT_BUFFERS = 4, + GST_FORMAT_PERCENT = 5 } GstFormat; +/* a percentage is always relative to 1000000 */ +/** + * GST_FORMAT_PERCENT_MAX: + * + * The PERCENT format is between 0 and this value + */ +#define GST_FORMAT_PERCENT_MAX G_GINT64_CONSTANT (1000000) +/** + * GST_FORMAT_PERCENT_SCALE: + * + * The value used to scale down the reported PERCENT format value to + * its real value. + */ +#define GST_FORMAT_PERCENT_SCALE G_GINT64_CONSTANT (10000) + typedef struct _GstFormatDefinition GstFormatDefinition; -struct _GstFormatDefinition + +/** + * GstFormatDefinition: + * @value: The unique id of this format + * @nick: A short nick of the format + * @description: A longer description of the format + * @quark: A quark for the nick + * + * A format definition + */ +struct _GstFormatDefinition { - GstFormat value; - gchar *nick; - gchar *description; + GstFormat value; + const gchar *nick; + const gchar *description; + GQuark quark; }; -#define GST_FORMATS_FUNCTION(functionname, a...) \ -static const GstFormat* \ -functionname (GstPad *pad) \ -{ \ - static const GstFormat formats[] = { \ - a, \ - 0 \ - }; \ - return formats; \ -} +GST_API +const gchar* gst_format_get_name (GstFormat format); -void _gst_format_initialize (void); +GST_API +GQuark gst_format_to_quark (GstFormat format); /* register a new format */ -GstFormat gst_format_register (const gchar *nick, - const gchar *description); -GstFormat gst_format_get_by_nick (const gchar *nick); + +GST_API +GstFormat gst_format_register (const gchar *nick, + const gchar *description); + +GST_API +GstFormat gst_format_get_by_nick (const gchar *nick); + +/* check if a format is in an array of formats */ + +GST_API +gboolean gst_formats_contains (const GstFormat *formats, GstFormat format); /* query for format details */ -const GstFormatDefinition* - gst_format_get_details (GstFormat format); -const GList* gst_format_get_definitions (void); + +GST_API +const GstFormatDefinition* + gst_format_get_details (GstFormat format); + +GST_API +GstIterator* gst_format_iterate_definitions (void); G_END_DECLS