2001-12-22 23:26:33 +00:00
|
|
|
/* -*- c-basic-offset: 2 -*-
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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_SPEED_H__
|
|
|
|
#define __GST_SPEED_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2003-10-08 07:50:58 +00:00
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2001-12-22 23:26:33 +00:00
|
|
|
#define GST_TYPE_SPEED \
|
|
|
|
(gst_speed_get_type())
|
|
|
|
#define GST_SPEED(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SPEED,GstSpeed))
|
|
|
|
#define GST_SPEED_CLASS(klass) \
|
2006-06-01 22:00:26 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SPEED,GstSpeedClass))
|
2001-12-22 23:26:33 +00:00
|
|
|
#define GST_IS_SPEED(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SPEED))
|
2006-06-01 22:00:26 +00:00
|
|
|
#define GST_IS_SPEED_CLASS(klass) \
|
2001-12-22 23:26:33 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SPEED))
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2001-12-22 23:26:33 +00:00
|
|
|
typedef struct _GstSpeed GstSpeed;
|
|
|
|
typedef struct _GstSpeedClass GstSpeedClass;
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
enum _GstSpeedFormat {
|
2001-12-22 23:26:33 +00:00
|
|
|
GST_SPEED_FORMAT_INT,
|
|
|
|
GST_SPEED_FORMAT_FLOAT
|
|
|
|
};
|
|
|
|
|
2007-07-30 09:52:36 +00:00
|
|
|
typedef enum _GstSpeedFormat GstSpeedFormat;
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
struct _GstSpeed {
|
2005-02-10 15:06:13 +00:00
|
|
|
GstElement element;
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2005-02-10 15:06:13 +00:00
|
|
|
GstPad *sinkpad;
|
|
|
|
GstPad *srcpad;
|
2003-07-19 23:47:42 +00:00
|
|
|
|
2005-02-10 15:06:13 +00:00
|
|
|
gfloat speed;
|
2003-07-19 23:47:42 +00:00
|
|
|
|
2005-02-10 15:06:13 +00:00
|
|
|
gint64 offset;
|
|
|
|
gint64 timestamp;
|
|
|
|
|
|
|
|
guint rate;
|
|
|
|
guint channels;
|
|
|
|
guint width;
|
|
|
|
|
|
|
|
guint sample_size;
|
2001-12-22 23:26:33 +00:00
|
|
|
GstSpeedFormat format;
|
|
|
|
};
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
struct _GstSpeedClass {
|
2001-12-22 23:26:33 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
GType gst_speed_get_type(void);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2003-10-08 07:50:58 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2001-12-22 23:26:33 +00:00
|
|
|
#endif /* __GST_SPEED_H__ */
|