mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
84279849a8
Original commit message from CVS: * check/Makefile.am: * check/elements/fdsrc.c: (event_func), (setup_fdsrc), (cleanup_fdsrc), (GST_START_TEST), (fdsrc_suite), (main): Add tests for fdsrc seekability * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init), (gst_fdsrc_init), (gst_fdsrc_update_fd), (gst_fdsrc_start), (gst_fdsrc_set_property), (gst_fdsrc_is_seekable), (gst_fdsrc_get_size), (gst_fdsrc_uri_set_uri): * gst/elements/gstfdsrc.h: fdsrc should not be a 'live' source. Implement seeking on seekable fd's. * gst/gstquery.c: (gst_query_new_seeking), (gst_query_parse_seeking): * gst/gstquery.h: Implement SEEKING query functions: *_new_seeking and *_parse_seeking
77 lines
2 KiB
C
77 lines
2 KiB
C
/* GStreamer
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
* 2005 Philippe Khalaf <burger@speedy.org>
|
|
*
|
|
* gstfdsrc.h:
|
|
*
|
|
* 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_FDSRC_H__
|
|
#define __GST_FDSRC_H__
|
|
|
|
#include <gst/gst.h>
|
|
#include <gst/base/gstpushsrc.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
#define GST_TYPE_FDSRC \
|
|
(gst_fdsrc_get_type())
|
|
#define GST_FDSRC(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FDSRC,GstFdSrc))
|
|
#define GST_FDSRC_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FDSRC,GstFdSrcClass))
|
|
#define GST_IS_FDSRC(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FDSRC))
|
|
#define GST_IS_FDSRC_CLASS(obj) \
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FDSRC))
|
|
|
|
|
|
typedef struct _GstFdSrc GstFdSrc;
|
|
typedef struct _GstFdSrcClass GstFdSrcClass;
|
|
|
|
struct _GstFdSrc {
|
|
GstPushSrc element;
|
|
|
|
/* new_fd is copied to fd on READY->PAUSED */
|
|
gint new_fd;
|
|
|
|
/* fd and flag indicating whether fd is seekable */
|
|
gint fd;
|
|
gboolean seekable_fd;
|
|
|
|
gchar *uri;
|
|
|
|
gint control_sock[2];
|
|
|
|
gulong curoffset; /* current offset in file */
|
|
};
|
|
|
|
struct _GstFdSrcClass {
|
|
GstPushSrcClass parent_class;
|
|
|
|
/* signals */
|
|
void (*timeout) (GstElement *element);
|
|
};
|
|
|
|
GType gst_fdsrc_get_type(void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_FDSRC_H__ */
|