mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
3f62c7db23
Original commit message from CVS: * docs/manual/advanced-autoplugging.xml: * docs/manual/basics-helloworld.xml: * docs/manual/basics-pads.xml: * docs/random/ds/0.9-suggested-changes: * gst/gstelement.c: (gst_element_class_init), (gst_element_seek): * gst/gstelement.h: * gst/gstevent.h: * gst/gstformat.h: * gst/gstquery.h: * gst/gststructure.c: (gst_structure_value_get_generic_type), (gst_structure_parse_array), (gst_structure_parse_value): * gst/gstvalue.c: (gst_type_is_fixed), (gst_value_list_prepend_value), (gst_value_list_append_value), (gst_value_list_get_size), (gst_value_list_get_value), (gst_value_transform_array_string), (gst_value_serialize_array), (gst_value_deserialize_array), (gst_value_intersect_array), (gst_value_is_fixed), (_gst_value_initialize): * gst/gstvalue.h: GstElement::new-pad -> pad-added, GstElement::state-change -> state-changed, GstValueFixedList -> GstValueArray, add format and flags as their own arguments in gst_element_seek() (should improve "bindeability"), remove function generators since they don't work under a whole bunch of compilers (they were deprecated already anyway).
73 lines
2.2 KiB
C
73 lines
2.2 KiB
C
/* GStreamer
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
* 2000 Wim Taymans <wim.taymans@chello.be>
|
|
*
|
|
* gstformat.h: Header for GstFormat types used in queries and
|
|
* seeking.
|
|
*
|
|
* 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>
|
|
|
|
#include <gst/gstiterator.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef enum {
|
|
GST_FORMAT_UNDEFINED = 0, /* must be first in list */
|
|
GST_FORMAT_DEFAULT = 1, /* samples for audio, frames/fields for video */
|
|
GST_FORMAT_BYTES = 2,
|
|
GST_FORMAT_TIME = 3,
|
|
GST_FORMAT_BUFFERS = 4,
|
|
GST_FORMAT_PERCENT = 5
|
|
} GstFormat;
|
|
|
|
/* a percentage is always relative to 1000000 */
|
|
#define GST_FORMAT_PERCENT_MAX G_GINT64_CONSTANT (1000000)
|
|
#define GST_FORMAT_PERCENT_SCALE G_GINT64_CONSTANT (10000)
|
|
|
|
typedef struct _GstFormatDefinition GstFormatDefinition;
|
|
|
|
struct _GstFormatDefinition
|
|
{
|
|
GstFormat value;
|
|
gchar *nick;
|
|
gchar *description;
|
|
};
|
|
|
|
void _gst_format_initialize (void);
|
|
|
|
/* register a new format */
|
|
GstFormat gst_format_register (const gchar *nick,
|
|
const gchar *description);
|
|
GstFormat gst_format_get_by_nick (const gchar *nick);
|
|
|
|
/* check if a format is in an array of formats */
|
|
gboolean gst_formats_contains (const GstFormat *formats, GstFormat format);
|
|
|
|
/* query for format details */
|
|
G_CONST_RETURN GstFormatDefinition*
|
|
gst_format_get_details (GstFormat format);
|
|
GstIterator* gst_format_iterate_definitions (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_FORMAT_H__ */
|