2010-10-27 17:30:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Ole André Vadla Ravnås <oleavr@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2010-11-04 17:59:44 +00:00
|
|
|
#ifndef __GST_CEL_VIDEO_SRC_H__
|
|
|
|
#define __GST_CEL_VIDEO_SRC_H__
|
2010-10-27 17:30:11 +00:00
|
|
|
|
|
|
|
#include <gst/base/gstpushsrc.h>
|
|
|
|
|
|
|
|
#include "coremediactx.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-11-04 17:59:44 +00:00
|
|
|
#define GST_TYPE_CEL_VIDEO_SRC \
|
|
|
|
(gst_cel_video_src_get_type ())
|
|
|
|
#define GST_CEL_VIDEO_SRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_CEL_VIDEO_SRC, GstCelVideoSrc))
|
|
|
|
#define GST_CEL_VIDEO_SRC_CAST(obj) \
|
|
|
|
((GstCelVideoSrc *) (obj))
|
|
|
|
#define GST_CEL_VIDEO_SRC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_CEL_VIDEO_SRC, GstCelVideoSrcClass))
|
|
|
|
#define GST_IS_CEL_VIDEO_SRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_CEL_VIDEO_SRC))
|
|
|
|
#define GST_IS_CEL_VIDEO_SRC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_CEL_VIDEO_SRC))
|
|
|
|
|
|
|
|
typedef struct _GstCelVideoSrc GstCelVideoSrc;
|
|
|
|
typedef struct _GstCelVideoSrcClass GstCelVideoSrcClass;
|
|
|
|
|
|
|
|
struct _GstCelVideoSrc
|
2010-10-27 17:30:11 +00:00
|
|
|
{
|
|
|
|
GstPushSrc push_src;
|
|
|
|
|
|
|
|
gboolean do_stats;
|
|
|
|
|
|
|
|
GstCoreMediaCtx *ctx;
|
|
|
|
|
|
|
|
FigCaptureDeviceRef device;
|
|
|
|
FigBaseIface *device_iface_base;
|
|
|
|
FigCaptureStreamRef stream;
|
|
|
|
FigBaseIface *stream_iface_base;
|
|
|
|
FigCaptureStreamIface *stream_iface;
|
2010-11-02 21:53:33 +00:00
|
|
|
CMBufferQueueRef queue;
|
2010-10-27 17:30:11 +00:00
|
|
|
GstCaps *device_caps;
|
|
|
|
GArray *device_formats;
|
|
|
|
GstClockTime duration;
|
|
|
|
|
|
|
|
volatile gboolean running;
|
|
|
|
guint64 offset;
|
|
|
|
|
|
|
|
GCond *cond;
|
|
|
|
volatile gboolean has_pending;
|
|
|
|
};
|
|
|
|
|
2010-11-04 17:59:44 +00:00
|
|
|
struct _GstCelVideoSrcClass
|
2010-10-27 17:30:11 +00:00
|
|
|
{
|
|
|
|
GstPushSrcClass parent_class;
|
|
|
|
};
|
|
|
|
|
2010-11-04 17:59:44 +00:00
|
|
|
GType gst_cel_video_src_get_type (void);
|
2010-10-27 17:30:11 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2010-11-04 17:59:44 +00:00
|
|
|
#endif /* __GST_CEL_VIDEO_SRC_H__ */
|