-
Notifications
You must be signed in to change notification settings - Fork 0
/
gstnumbersink.c
444 lines (351 loc) · 12.5 KB
/
gstnumbersink.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
/* GStreamer
* Copyright (C) 2017 FIXME <fixme@example.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., 51 Franklin Street, Suite 500,
* Boston, MA 02110-1335, USA.
*/
/**
* SECTION:element-gstnumbersink
*
* The numbersink element does FIXME stuff.
*
* <refsect2>
* <title>Example launch line</title>
* |[
* gst-launch-1.0 -v fakesrc ! numbersink ! FIXME ! fakesink
* ]|
* FIXME Describe what the pipeline does.
* </refsect2>
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gst/gst.h>
#include <gst/base/gstbasesink.h>
#include "gstnumbersink.h"
GST_DEBUG_CATEGORY_STATIC (gst_numbersink_debug_category);
#define GST_CAT_DEFAULT gst_numbersink_debug_category
/* prototypes */
static void gst_numbersink_set_property (GObject * object,
guint property_id, const GValue * value, GParamSpec * pspec);
static void gst_numbersink_get_property (GObject * object,
guint property_id, GValue * value, GParamSpec * pspec);
static void gst_numbersink_dispose (GObject * object);
static void gst_numbersink_finalize (GObject * object);
static GstCaps *gst_numbersink_get_caps (GstBaseSink * sink, GstCaps * filter);
static gboolean gst_numbersink_set_caps (GstBaseSink * sink, GstCaps * caps);
static GstCaps *gst_numbersink_fixate (GstBaseSink * sink, GstCaps * caps);
static gboolean gst_numbersink_activate_pull (GstBaseSink * sink,
gboolean active);
static void gst_numbersink_get_times (GstBaseSink * sink, GstBuffer * buffer,
GstClockTime * start, GstClockTime * end);
static gboolean gst_numbersink_propose_allocation (GstBaseSink * sink,
GstQuery * query);
static gboolean gst_numbersink_start (GstBaseSink * sink);
static gboolean gst_numbersink_stop (GstBaseSink * sink);
static gboolean gst_numbersink_unlock (GstBaseSink * sink);
static gboolean gst_numbersink_unlock_stop (GstBaseSink * sink);
static gboolean gst_numbersink_query (GstBaseSink * sink, GstQuery * query);
static gboolean gst_numbersink_event (GstBaseSink * sink, GstEvent * event);
static GstFlowReturn gst_numbersink_wait_event (GstBaseSink * sink,
GstEvent * event);
static GstFlowReturn gst_numbersink_prepare (GstBaseSink * sink,
GstBuffer * buffer);
static GstFlowReturn gst_numbersink_prepare_list (GstBaseSink * sink,
GstBufferList * buffer_list);
static GstFlowReturn gst_numbersink_preroll (GstBaseSink * sink,
GstBuffer * buffer);
static GstFlowReturn gst_numbersink_render (GstBaseSink * sink,
GstBuffer * buffer);
static GstFlowReturn gst_numbersink_render_list (GstBaseSink * sink,
GstBufferList * buffer_list);
enum
{
PROP_0
};
/* pad templates */
static GstStaticPadTemplate gst_numbersink_sink_template =
GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("application/unknown")
);
/* class initialization */
G_DEFINE_TYPE_WITH_CODE (GstNumbersink, gst_numbersink, GST_TYPE_BASE_SINK,
GST_DEBUG_CATEGORY_INIT (gst_numbersink_debug_category, "numbersink", 0,
"debug category for numbersink element"));
static void
gst_numbersink_class_init (GstNumbersinkClass * klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GstBaseSinkClass *base_sink_class = GST_BASE_SINK_CLASS (klass);
/* Setting up pads and setting metadata should be moved to
base_class_init if you intend to subclass this class. */
gst_element_class_add_static_pad_template (GST_ELEMENT_CLASS (klass),
&gst_numbersink_sink_template);
gst_element_class_set_static_metadata (GST_ELEMENT_CLASS (klass),
"FIXME Long name", "Generic", "FIXME Description",
"FIXME <fixme@example.com>");
gobject_class->set_property = gst_numbersink_set_property;
gobject_class->get_property = gst_numbersink_get_property;
gobject_class->dispose = gst_numbersink_dispose;
gobject_class->finalize = gst_numbersink_finalize;
/*
base_sink_class->get_caps = GST_DEBUG_FUNCPTR (gst_numbersink_get_caps);
base_sink_class->set_caps = GST_DEBUG_FUNCPTR (gst_numbersink_set_caps);
base_sink_class->fixate = GST_DEBUG_FUNCPTR (gst_numbersink_fixate);
base_sink_class->activate_pull =
GST_DEBUG_FUNCPTR (gst_numbersink_activate_pull);
base_sink_class->get_times = GST_DEBUG_FUNCPTR (gst_numbersink_get_times);
base_sink_class->propose_allocation =
GST_DEBUG_FUNCPTR (gst_numbersink_propose_allocation);
base_sink_class->start = GST_DEBUG_FUNCPTR (gst_numbersink_start);
base_sink_class->stop = GST_DEBUG_FUNCPTR (gst_numbersink_stop);
base_sink_class->unlock = GST_DEBUG_FUNCPTR (gst_numbersink_unlock);
base_sink_class->unlock_stop = GST_DEBUG_FUNCPTR (gst_numbersink_unlock_stop);
base_sink_class->query = GST_DEBUG_FUNCPTR (gst_numbersink_query);
base_sink_class->event = GST_DEBUG_FUNCPTR (gst_numbersink_event);
base_sink_class->wait_event = GST_DEBUG_FUNCPTR (gst_numbersink_wait_event);
base_sink_class->prepare = GST_DEBUG_FUNCPTR (gst_numbersink_prepare);
base_sink_class->prepare_list =
GST_DEBUG_FUNCPTR (gst_numbersink_prepare_list);
base_sink_class->preroll = GST_DEBUG_FUNCPTR (gst_numbersink_preroll);
*/
base_sink_class->render = GST_DEBUG_FUNCPTR (gst_numbersink_render);
/*
base_sink_class->render_list = GST_DEBUG_FUNCPTR (gst_numbersink_render_list);
*/
}
static void
gst_numbersink_init (GstNumbersink * numbersink)
{
}
void
gst_numbersink_set_property (GObject * object, guint property_id,
const GValue * value, GParamSpec * pspec)
{
GstNumbersink *numbersink = GST_NUMBERSINK (object);
GST_DEBUG_OBJECT (numbersink, "set_property");
switch (property_id) {
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
void
gst_numbersink_get_property (GObject * object, guint property_id,
GValue * value, GParamSpec * pspec)
{
GstNumbersink *numbersink = GST_NUMBERSINK (object);
GST_DEBUG_OBJECT (numbersink, "get_property");
switch (property_id) {
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
void
gst_numbersink_dispose (GObject * object)
{
GstNumbersink *numbersink = GST_NUMBERSINK (object);
GST_DEBUG_OBJECT (numbersink, "dispose");
/* clean up as possible. may be called multiple times */
G_OBJECT_CLASS (gst_numbersink_parent_class)->dispose (object);
}
void
gst_numbersink_finalize (GObject * object)
{
GstNumbersink *numbersink = GST_NUMBERSINK (object);
GST_DEBUG_OBJECT (numbersink, "finalize");
/* clean up object here */
G_OBJECT_CLASS (gst_numbersink_parent_class)->finalize (object);
}
static GstCaps *
gst_numbersink_get_caps (GstBaseSink * sink, GstCaps * filter)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "get_caps");
return NULL;
}
/* notify subclass of new caps */
static gboolean
gst_numbersink_set_caps (GstBaseSink * sink, GstCaps * caps)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "set_caps");
return TRUE;
}
/* fixate sink caps during pull-mode negotiation */
static GstCaps *
gst_numbersink_fixate (GstBaseSink * sink, GstCaps * caps)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "fixate");
return NULL;
}
/* start or stop a pulling thread */
static gboolean
gst_numbersink_activate_pull (GstBaseSink * sink, gboolean active)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "activate_pull");
return TRUE;
}
/* get the start and end times for syncing on this buffer */
static void
gst_numbersink_get_times (GstBaseSink * sink, GstBuffer * buffer,
GstClockTime * start, GstClockTime * end)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "get_times");
}
/* propose allocation parameters for upstream */
static gboolean
gst_numbersink_propose_allocation (GstBaseSink * sink, GstQuery * query)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "propose_allocation");
return TRUE;
}
/* start and stop processing, ideal for opening/closing the resource */
static gboolean
gst_numbersink_start (GstBaseSink * sink)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "start");
return TRUE;
}
static gboolean
gst_numbersink_stop (GstBaseSink * sink)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "stop");
return TRUE;
}
/* unlock any pending access to the resource. subclasses should unlock
* any function ASAP. */
static gboolean
gst_numbersink_unlock (GstBaseSink * sink)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "unlock");
return TRUE;
}
/* Clear a previously indicated unlock request not that unlocking is
* complete. Sub-classes should clear any command queue or indicator they
* set during unlock */
static gboolean
gst_numbersink_unlock_stop (GstBaseSink * sink)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "unlock_stop");
return TRUE;
}
/* notify subclass of query */
static gboolean
gst_numbersink_query (GstBaseSink * sink, GstQuery * query)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "query");
return TRUE;
}
/* notify subclass of event */
static gboolean
gst_numbersink_event (GstBaseSink * sink, GstEvent * event)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "event");
return TRUE;
}
/* wait for eos or gap, subclasses should chain up to parent first */
static GstFlowReturn
gst_numbersink_wait_event (GstBaseSink * sink, GstEvent * event)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "wait_event");
return GST_FLOW_OK;
}
/* notify subclass of buffer or list before doing sync */
static GstFlowReturn
gst_numbersink_prepare (GstBaseSink * sink, GstBuffer * buffer)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "prepare");
return GST_FLOW_OK;
}
static GstFlowReturn
gst_numbersink_prepare_list (GstBaseSink * sink, GstBufferList * buffer_list)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "prepare_list");
return GST_FLOW_OK;
}
/* notify subclass of preroll buffer or real buffer */
static GstFlowReturn
gst_numbersink_preroll (GstBaseSink * sink, GstBuffer * buffer)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "preroll");
return GST_FLOW_OK;
}
static GstFlowReturn
gst_numbersink_render (GstBaseSink * sink, GstBuffer * buffer)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "render");
GstMapInfo info;
if (gst_buffer_map (buffer, &info, GST_MAP_READ)) {
gst_util_dump_mem (info.data, info.size);
gst_buffer_unmap (buffer, &info);
}
return GST_FLOW_OK;
}
/* Render a BufferList */
static GstFlowReturn
gst_numbersink_render_list (GstBaseSink * sink, GstBufferList * buffer_list)
{
GstNumbersink *numbersink = GST_NUMBERSINK (sink);
GST_DEBUG_OBJECT (numbersink, "render_list");
return GST_FLOW_OK;
}
static gboolean
plugin_init (GstPlugin * plugin)
{
/* FIXME Remember to set the rank if it's an element that is meant
to be autoplugged by decodebin. */
return gst_element_register (plugin, "numbersink", GST_RANK_NONE,
GST_TYPE_NUMBERSINK);
}
/* FIXME: these are normally defined by the GStreamer build system.
If you are creating an element to be included in gst-plugins-*,
remove these, as they're always defined. Otherwise, edit as
appropriate for your external plugin package. */
#ifndef VERSION
#define VERSION "0.0.FIXME"
#endif
#ifndef PACKAGE
#define PACKAGE "FIXME_package"
#endif
#ifndef PACKAGE_NAME
#define PACKAGE_NAME "FIXME_package_name"
#endif
#ifndef GST_PACKAGE_ORIGIN
#define GST_PACKAGE_ORIGIN "http://FIXME.org/"
#endif
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
numbersink,
"FIXME plugin description",
plugin_init, VERSION, "LGPL", PACKAGE_NAME, GST_PACKAGE_ORIGIN)