blob: dcd43423e0f0cc739432f574561fe9df139e474b [file] [log] [blame]
Sébastien Moutte0a0c1362007-05-23 22:44:12 +00001/* GStreamer
2 * Copyright (C) 2007 Sebastien Moutte <sebastien@moutte.net>
3 *
4 * gstdshowaudiosrc.h:
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
Tim-Philipp Müller9e1b75f2012-11-03 20:38:00 +000018 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
Sébastien Moutte0a0c1362007-05-23 22:44:12 +000020 */
21
22
23#ifndef __GST_DSHOWAUDIOSRC_H__
24#define __GST_DSHOWAUDIOSRC_H__
25
26#include <gst/gst.h>
27#include <gst/audio/gstaudiosrc.h>
Sébastien Moutte0a0c1362007-05-23 22:44:12 +000028
Julien Isorce30469d42009-07-21 10:49:37 +020029#include "gstdshow.h"
Julien Isorcedabb6922009-07-27 14:52:57 +020030#include "gstdshowfakesink.h"
Sébastien Moutte0a0c1362007-05-23 22:44:12 +000031
32G_BEGIN_DECLS
33#define GST_TYPE_DSHOWAUDIOSRC (gst_dshowaudiosrc_get_type())
34#define GST_DSHOWAUDIOSRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DSHOWAUDIOSRC,GstDshowAudioSrc))
35#define GST_DSHOWAUDIOSRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DSHOWAUDIOSRC,GstDshowAudioSrcClass))
36#define GST_IS_DSHOWAUDIOSRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DSHOWAUDIOSRC))
37#define GST_IS_DSHOWAUDIOSRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DSHOWAUDIOSRC))
38typedef struct _GstDshowAudioSrc GstDshowAudioSrc;
39typedef struct _GstDshowAudioSrcClass GstDshowAudioSrcClass;
40
41struct _GstDshowAudioSrc
42{
43 GstAudioSrc src;
44
45 /* device dshow reference (generally classid/name) */
46 gchar *device;
47
48 /* device friendly name */
49 gchar *device_name;
50
51 /* list of caps created from the list of supported media types of the dshow capture filter */
52 GstCaps *caps;
53
54 /* list of dshow media types filter's pins mediatypes */
55 GList *pins_mediatypes;
56
57 /* dshow audio capture filter */
58 IBaseFilter *audio_cap_filter;
59
60 /* dshow fakesink filter */
Julien Isorcedabb6922009-07-27 14:52:57 +020061 CDshowFakeSink *dshow_fakesink;
Sébastien Moutte0a0c1362007-05-23 22:44:12 +000062
63 /* graph manager interfaces */
64 IMediaFilter *media_filter;
65 IFilterGraph *filter_graph;
66
Julien Isorce05185092009-09-07 10:59:53 +020067 /* bytes array */
Sébastien Moutte0a0c1362007-05-23 22:44:12 +000068 GByteArray *gbarray;
Jerome Laheurte4f60ecd2014-09-17 12:24:39 +020069 GMutex gbarray_lock;
Sébastien Moutte0a0c1362007-05-23 22:44:12 +000070
71 gboolean is_running;
72};
73
74struct _GstDshowAudioSrcClass
75{
76 GstAudioSrcClass parent_class;
77};
78
79GType gst_dshowaudiosrc_get_type (void);
80
81G_END_DECLS
82#endif /* __GST_DSHOWAUDIOSRC_H__ */