2002-05-26 21:54:27 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wim.taymans@chello.be>
|
|
|
|
*
|
2002-07-28 01:54:42 +00:00
|
|
|
* gstformat.h: Header for GstFormat types used in queries and
|
|
|
|
* seeking.
|
2002-05-26 21:54:27 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_FORMAT_H__
|
|
|
|
#define __GST_FORMAT_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
#include <gst/gstiterator.h>
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2005-08-30 17:23:19 +00:00
|
|
|
/**
|
|
|
|
* GstFormat:
|
|
|
|
* @GST_FORMAT_UNDEFINED: undefined format
|
2005-11-19 18:57:00 +00:00
|
|
|
* @GST_FORMAT_DEFAULT: the default format of the pad/element. This can be
|
2009-05-18 00:00:36 +00:00
|
|
|
* 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)
|
2005-08-30 17:23:19 +00:00
|
|
|
* @GST_FORMAT_BYTES: bytes
|
|
|
|
* @GST_FORMAT_TIME: time in nanoseconds
|
2009-05-18 00:00:36 +00:00
|
|
|
* @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)
|
2005-08-30 17:23:19 +00:00
|
|
|
*
|
|
|
|
* Standard predefined formats
|
|
|
|
*/
|
2005-11-19 18:57:00 +00:00
|
|
|
/* NOTE: don't forget to update the table in gstformat.c when changing
|
|
|
|
* this enum */
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef enum {
|
|
|
|
GST_FORMAT_UNDEFINED = 0, /* must be first in list */
|
2005-11-19 18:57:00 +00:00
|
|
|
GST_FORMAT_DEFAULT = 1,
|
2004-03-15 14:43:35 +00:00
|
|
|
GST_FORMAT_BYTES = 2,
|
|
|
|
GST_FORMAT_TIME = 3,
|
|
|
|
GST_FORMAT_BUFFERS = 4,
|
|
|
|
GST_FORMAT_PERCENT = 5
|
|
|
|
} GstFormat;
|
2002-05-26 21:54:27 +00:00
|
|
|
|
2002-12-22 14:03:09 +00:00
|
|
|
/* a percentage is always relative to 1000000 */
|
2005-08-30 17:23:19 +00:00
|
|
|
/**
|
|
|
|
* GST_FORMAT_PERCENT_MAX:
|
|
|
|
*
|
|
|
|
* The PERCENT format is between 0 and this value
|
|
|
|
*/
|
2003-02-10 20:16:38 +00:00
|
|
|
#define GST_FORMAT_PERCENT_MAX G_GINT64_CONSTANT (1000000)
|
2005-08-30 17:23:19 +00:00
|
|
|
/**
|
|
|
|
* GST_FORMAT_PERCENT_SCALE:
|
|
|
|
*
|
|
|
|
* The value used to scale down the reported PERCENT format value to
|
|
|
|
* its real value.
|
|
|
|
*/
|
2003-02-10 20:16:38 +00:00
|
|
|
#define GST_FORMAT_PERCENT_SCALE G_GINT64_CONSTANT (10000)
|
2002-12-22 14:03:09 +00:00
|
|
|
|
2002-09-29 17:17:28 +00:00
|
|
|
typedef struct _GstFormatDefinition GstFormatDefinition;
|
2002-12-19 21:31:03 +00:00
|
|
|
|
2005-08-30 17:23:19 +00:00
|
|
|
/**
|
|
|
|
* GstFormatDefinition:
|
|
|
|
* @value: The unique id of this format
|
|
|
|
* @nick: A short nick of the format
|
|
|
|
* @description: A longer description of the format
|
2005-11-20 14:50:43 +00:00
|
|
|
* @quark: A quark for the nick
|
2005-08-30 17:23:19 +00:00
|
|
|
*
|
|
|
|
* A format definition
|
|
|
|
*/
|
2005-10-15 15:30:24 +00:00
|
|
|
struct _GstFormatDefinition
|
2002-09-29 17:17:28 +00:00
|
|
|
{
|
2004-03-15 14:43:35 +00:00
|
|
|
GstFormat value;
|
|
|
|
gchar *nick;
|
|
|
|
gchar *description;
|
2005-11-19 18:57:00 +00:00
|
|
|
GQuark quark;
|
2002-09-29 17:17:28 +00:00
|
|
|
};
|
|
|
|
|
2005-11-19 18:57:00 +00:00
|
|
|
const gchar* gst_format_get_name (GstFormat format);
|
|
|
|
GQuark gst_format_to_quark (GstFormat format);
|
|
|
|
|
2002-07-28 01:54:42 +00:00
|
|
|
/* register a new format */
|
2005-10-15 15:30:24 +00:00
|
|
|
GstFormat gst_format_register (const gchar *nick,
|
2004-03-15 14:43:35 +00:00
|
|
|
const gchar *description);
|
|
|
|
GstFormat gst_format_get_by_nick (const gchar *nick);
|
2002-07-28 01:54:42 +00:00
|
|
|
|
2002-12-23 00:30:08 +00:00
|
|
|
/* check if a format is in an array of formats */
|
2004-03-15 14:43:35 +00:00
|
|
|
gboolean gst_formats_contains (const GstFormat *formats, GstFormat format);
|
2002-12-23 00:30:08 +00:00
|
|
|
|
2002-07-28 01:54:42 +00:00
|
|
|
/* query for format details */
|
2005-10-15 15:30:24 +00:00
|
|
|
G_CONST_RETURN GstFormatDefinition*
|
2004-03-15 14:43:35 +00:00
|
|
|
gst_format_get_details (GstFormat format);
|
2005-03-07 18:27:42 +00:00
|
|
|
GstIterator* gst_format_iterate_definitions (void);
|
2002-07-25 18:12:12 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
#endif /* __GST_FORMAT_H__ */
|