source: trunk/third/gstreamer/gst/gstprobe.h @ 21448

Revision 21448, 2.4 KB checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r21447, which included commits to RCS files with non-trunk default branches.
Line 
1/* GStreamer
2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 *                    2000 Wim Taymans <wim.taymans@chello.be>
4 *
5 * gstprobe.h: Header for GstProbe object
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23
24#ifndef __GST_PROBE_H__
25#define __GST_PROBE_H__
26
27#include <glib.h>
28#include <gst/gstdata.h>
29
30G_BEGIN_DECLS
31
32#define GST_TYPE_PROBE          (gst_probe_get_type())
33#define GST_PROBE(object)       ((GstProbe *) object)
34
35typedef struct _GstProbe GstProbe;
36
37GType                    gst_probe_get_type             (void) G_GNUC_CONST;
38
39/* the callback should return FALSE if the data should be discarded */
40typedef gboolean        (*GstProbeCallback)             (GstProbe *probe,
41                                                         GstData **data,
42                                                         gpointer user_data);
43
44struct _GstProbe {
45  gboolean              single_shot;
46
47  GstProbeCallback      callback;
48  gpointer              user_data;
49};
50
51
52GstProbe*               gst_probe_new                   (gboolean single_shot,
53                                                         GstProbeCallback callback,
54                                                         gpointer user_data);
55void                    gst_probe_destroy               (GstProbe *probe);
56
57gboolean                gst_probe_perform               (GstProbe *probe, GstData **data);
58
59typedef struct _GstProbeDispatcher GstProbeDispatcher;
60
61struct _GstProbeDispatcher {
62  gboolean              active;
63
64  GSList                *probes;
65};
66
67GstProbeDispatcher*     gst_probe_dispatcher_new                (void);
68void                    gst_probe_dispatcher_destroy            (GstProbeDispatcher *disp);
69void                    gst_probe_dispatcher_init               (GstProbeDispatcher *disp);
70
71void                    gst_probe_dispatcher_set_active         (GstProbeDispatcher *disp, gboolean active);
72void                    gst_probe_dispatcher_add_probe          (GstProbeDispatcher *disp, GstProbe *probe);
73void                    gst_probe_dispatcher_remove_probe       (GstProbeDispatcher *disp, GstProbe *probe);
74
75gboolean                gst_probe_dispatcher_dispatch           (GstProbeDispatcher *disp, GstData **data);
76
77G_END_DECLS
78
79#endif /* __GST_PROBE_H__ */
80
Note: See TracBrowser for help on using the repository browser.