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>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef enum {
|
2002-07-28 01:54:42 +00:00
|
|
|
GST_FORMAT_UNDEFINED = 0,
|
|
|
|
GST_FORMAT_DEFAULT = 1,
|
|
|
|
GST_FORMAT_BYTES = 2,
|
|
|
|
GST_FORMAT_TIME = 3,
|
|
|
|
GST_FORMAT_BUFFERS = 4,
|
|
|
|
GST_FORMAT_PERCENT = 5,
|
2002-06-02 11:54:36 +00:00
|
|
|
/* samples for audio, frames/fields for video */
|
2002-10-24 09:01:22 +00:00
|
|
|
GST_FORMAT_UNITS = 6
|
2002-05-26 21:54:27 +00:00
|
|
|
} GstFormat;
|
|
|
|
|
2002-09-29 17:17:28 +00:00
|
|
|
typedef struct _GstFormatDefinition GstFormatDefinition;
|
|
|
|
struct _GstFormatDefinition
|
|
|
|
{
|
|
|
|
GstFormat value;
|
|
|
|
gchar *nick;
|
|
|
|
gchar *description;
|
|
|
|
};
|
|
|
|
|
2002-07-25 18:12:12 +00:00
|
|
|
#define GST_FORMATS_FUNCTION(functionname, a...) \
|
|
|
|
static const GstFormat* \
|
|
|
|
functionname (GstPad *pad) \
|
|
|
|
{ \
|
|
|
|
static const GstFormat formats[] = { \
|
|
|
|
a, \
|
|
|
|
0 \
|
|
|
|
}; \
|
|
|
|
return formats; \
|
|
|
|
}
|
|
|
|
|
2002-07-28 01:54:42 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
/* query for format details */
|
2002-09-29 17:17:28 +00:00
|
|
|
const GstFormatDefinition * gst_format_get_details (GstFormat format);
|
|
|
|
const GList * gst_format_get_definitions (void);
|
2002-07-25 18:12:12 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_FORMAT_H__ */
|