aboutsummaryrefslogtreecommitdiff
path: root/tests/examples/controller/control-sources.c
blob: 950cee2edf2fd7b477d811c194288b2f1949930b (plain)
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
445
446
447
448
449
450
/* 
 * control-sources.c
 *
 * Generates a datafile for various control sources.
 *
 * Needs gnuplot for plotting.
 * plot "ctrl_i1.dat" using 1:2 with points title 'none', "" using 1:3 with points title 'linear', "" using 1:4 with points title 'cubic', "ctrl_i2.dat" using 1:2 with lines title 'none', "" using 1:3 with lines title 'linear', "" using 1:4 with lines title 'cubic'
 * plot "ctrl_l1.dat" using 1:2 with points title 'sine', "" using 1:3 with points title 'square', "" using 1:4 with points title 'saw', "" using 1:5 with points title 'revsaw', "" using 1:6 with points title 'triangle', "ctrl_l2.dat" using 1:2 with lines title 'sine', "" using 1:3 with lines title 'square', "" using 1:4 with lines title 'saw', "" using 1:5 with lines title 'revsaw', "" using 1:6 with lines title 'triangle'
 * plot "ctrl_cl1.dat" using 1:2 with points title 'sine', "ctrl_cl2.dat" using 1:2 with lines title 'sine'
 */

#include <stdio.h>
#include <stdlib.h>

#include <gst/gst.h>
#include <gst/controller/gstinterpolationcontrolsource.h>
#include <gst/controller/gstlfocontrolsource.h>
#include <gst/controller/gstdirectcontrolbinding.h>

/* local test element */

enum
{
  PROP_INT = 1,
  PROP_FLOAT,
  PROP_DOUBLE,
  PROP_BOOLEAN,
  PROP_COUNT
};

#define GST_TYPE_TEST_OBJ            (gst_test_obj_get_type ())
#define GST_TEST_OBJ(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_TEST_OBJ, GstTestObj))
#define GST_TEST_OBJ_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_TEST_OBJ, GstTestObjClass))
#define GST_IS_TEST_OBJ(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_TEST_OBJ))
#define GST_IS_TEST_OBJ_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_TEST_OBJ))
#define GST_TEST_OBJ_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_TEST_OBJ, GstTestObjClass))

typedef struct _GstTestObj GstTestObj;
typedef struct _GstTestObjClass GstTestObjClass;

struct _GstTestObj
{
  GstElement parent;
  gint val_int;
  gfloat val_float;
  gdouble val_double;
  gboolean val_boolean;
};
struct _GstTestObjClass
{
  GstElementClass parent_class;
};

static GType gst_test_obj_get_type (void);

static void
gst_test_obj_get_property (GObject * object,
    guint property_id, GValue * value, GParamSpec * pspec)
{
  GstTestObj *self = GST_TEST_OBJ (object);

  switch (property_id) {
    case PROP_INT:
      g_value_set_int (value, self->val_int);
      break;
    case PROP_FLOAT:
      g_value_set_float (value, self->val_float);
      break;
    case PROP_DOUBLE:
      g_value_set_double (value, self->val_double);
      break;
    case PROP_BOOLEAN:
      g_value_set_boolean (value, self->val_boolean);
      break;
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
      break;
  }
}

static void
gst_test_obj_set_property (GObject * object,
    guint property_id, const GValue * value, GParamSpec * pspec)
{
  GstTestObj *self = GST_TEST_OBJ (object);

  switch (property_id) {
    case PROP_INT:
      self->val_int = g_value_get_int (value);
      GST_DEBUG ("test value int=%d", self->val_int);
      break;
    case PROP_FLOAT:
      self->val_float = g_value_get_float (value);
      GST_DEBUG ("test value float=%f", self->val_float);
      break;
    case PROP_DOUBLE:
      self->val_double = g_value_get_double (value);
      GST_DEBUG ("test value double=%f", self->val_double);
      break;
    case PROP_BOOLEAN:
      self->val_boolean = g_value_get_boolean (value);
      GST_DEBUG ("test value boolean=%d", self->val_boolean);
      break;
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
      break;
  }
}

static void
gst_test_obj_class_init (GstTestObjClass * klass)
{
  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);

  gobject_class->set_property = gst_test_obj_set_property;
  gobject_class->get_property = gst_test_obj_get_property;

  g_object_class_install_property (gobject_class, PROP_INT,
      g_param_spec_int ("int",
          "int prop",
          "int number parameter",
          0, 100, 0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));

  g_object_class_install_property (gobject_class, PROP_FLOAT,
      g_param_spec_float ("float",
          "float prop",
          "float number parameter",
          0.0, 100.0, 0.0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));

  g_object_class_install_property (gobject_class, PROP_DOUBLE,
      g_param_spec_double ("double",
          "double prop",
          "double number parameter",
          0.0, 100.0, 0.0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));

  g_object_class_install_property (gobject_class, PROP_BOOLEAN,
      g_param_spec_boolean ("boolean",
          "boolean prop",
          "boolean parameter",
          FALSE, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
}

static void
gst_test_obj_base_init (GstTestObjClass * klass)
{
  GstElementClass *element_class = GST_ELEMENT_CLASS (klass);

  gst_element_class_set_details_simple (element_class,
      "test object for unit tests",
      "Test", "Use in unit tests", "Stefan Sauer <ensonic@users.sf.net>");
}

static GType
gst_test_obj_get_type (void)
{
  static volatile gsize TEST_OBJ_type = 0;

  if (g_once_init_enter (&TEST_OBJ_type)) {
    GType type;
    static const GTypeInfo info = {
      (guint16) sizeof (GstTestObjClass),
      (GBaseInitFunc) gst_test_obj_base_init,   // base_init
      NULL,                     // base_finalize
      (GClassInitFunc) gst_test_obj_class_init, // class_init
      NULL,                     // class_finalize
      NULL,                     // class_data
      (guint16) sizeof (GstTestObj),
      0,                        // n_preallocs
      NULL,                     // instance_init
      NULL                      // value_table
    };
    type = g_type_register_static (GST_TYPE_ELEMENT, "GstTestObj", &info, 0);
    g_once_init_leave (&TEST_OBJ_type, type);
  }
  return TEST_OBJ_type;
}

static void
test_interpolation (void)
{
  GstObject *e;
  GstTimedValueControlSource *tvcs;
  GstControlSource *cs;
  gint t, i1, i2, i3;
  GValue *v1, *v2, *v3;
  gint n_values;
  FILE *f;

  e = (GstObject *) gst_element_factory_make ("testobj", NULL);

  cs = gst_interpolation_control_source_new ();
  tvcs = (GstTimedValueControlSource *) cs;

  gst_object_add_control_binding (e, gst_direct_control_binding_new (e, "int",
          cs));

  gst_timed_value_control_source_set (tvcs, 0 * GST_SECOND, 0.0);
  gst_timed_value_control_source_set (tvcs, 10 * GST_SECOND, 1.0);
  gst_timed_value_control_source_set (tvcs, 20 * GST_SECOND, 0.5);
  gst_timed_value_control_source_set (tvcs, 30 * GST_SECOND, 0.2);

  /* test single values */
  if (!(f = fopen ("ctrl_i1.dat", "w")))
    exit (-1);
  fprintf (f, "# Time None Linear Cubic\n");

  for (t = 0; t < 40; t++) {
    g_object_set (cs, "mode", GST_INTERPOLATION_MODE_NONE, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i1 = GST_TEST_OBJ (e)->val_int;

    g_object_set (cs, "mode", GST_INTERPOLATION_MODE_LINEAR, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i2 = GST_TEST_OBJ (e)->val_int;

    g_object_set (cs, "mode", GST_INTERPOLATION_MODE_CUBIC, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i3 = GST_TEST_OBJ (e)->val_int;

    fprintf (f, "%4.1f %d %d %d\n", (gfloat) t, i1, i2, i3);
  }

  fclose (f);

  /* test value arrays */
  if (!(f = fopen ("ctrl_i2.dat", "w")))
    exit (-1);
  fprintf (f, "# Time None Linear Cubic\n");
  n_values = 40 * 10;

  g_object_set (cs, "mode", GST_INTERPOLATION_MODE_NONE, NULL);
  v1 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v1);

  g_object_set (cs, "mode", GST_INTERPOLATION_MODE_LINEAR, NULL);
  v2 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v2);

  g_object_set (cs, "mode", GST_INTERPOLATION_MODE_CUBIC, NULL);
  v3 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v3);

  for (t = 0; t < n_values; t++) {
    i1 = g_value_get_int (&v1[t]);
    i2 = g_value_get_int (&v2[t]);
    i3 = g_value_get_int (&v3[t]);
    fprintf (f, "%4.1f %d %d %d\n", (gfloat) t / 10.0, i1, i2, i3);
    g_value_unset (&v1[t]);
    g_value_unset (&v2[t]);
    g_value_unset (&v3[t]);
  }
  g_free (v1);
  g_free (v2);
  g_free (v3);

  fclose (f);

  gst_object_unref (cs);
  gst_object_unref (e);
}

static void
test_lfo (void)
{
  GstObject *e;
  GstControlSource *cs;
  gint t, i1, i2, i3, i4, i5;
  GValue *v1, *v2, *v3, *v4, *v5;
  gint n_values;
  FILE *f;

  e = (GstObject *) gst_element_factory_make ("testobj", NULL);

  cs = gst_lfo_control_source_new ();

  gst_object_add_control_binding (e, gst_direct_control_binding_new (e, "int",
          cs));

  g_object_set (cs,
      "frequency", (gdouble) 0.05,
      "timeshift", (GstClockTime) 0,
      "amplitude", (gdouble) 0.5, "offset", (gdouble) 0.5, NULL);

  /* test single values */
  if (!(f = fopen ("ctrl_l1.dat", "w")))
    exit (-1);
  fprintf (f, "# Time Sine Square Saw RevSaw Triangle\n");

  for (t = 0; t < 40; t++) {
    g_object_set (cs, "waveform", GST_LFO_WAVEFORM_SINE, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i1 = GST_TEST_OBJ (e)->val_int;

    g_object_set (cs, "waveform", GST_LFO_WAVEFORM_SQUARE, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i2 = GST_TEST_OBJ (e)->val_int;

    g_object_set (cs, "waveform", GST_LFO_WAVEFORM_SAW, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i3 = GST_TEST_OBJ (e)->val_int;

    g_object_set (cs, "waveform", GST_LFO_WAVEFORM_REVERSE_SAW, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i4 = GST_TEST_OBJ (e)->val_int;

    g_object_set (cs, "waveform", GST_LFO_WAVEFORM_TRIANGLE, NULL);
    gst_object_sync_values (e, t * GST_SECOND);
    i5 = GST_TEST_OBJ (e)->val_int;

    fprintf (f, "%4.1f %d %d %d %d %d\n", (gfloat) t, i1, i2, i3, i4, i5);
  }

  fclose (f);

  /* test value arrays */
  if (!(f = fopen ("ctrl_l2.dat", "w")))
    exit (-1);
  fprintf (f, "# Time Sine Square Saw RevSaw Triangle\n");
  n_values = 40 * 10;

  g_object_set (cs, "waveform", GST_LFO_WAVEFORM_SINE, NULL);
  v1 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v1);

  g_object_set (cs, "waveform", GST_LFO_WAVEFORM_SQUARE, NULL);
  v2 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v2);

  g_object_set (cs, "waveform", GST_LFO_WAVEFORM_SAW, NULL);
  v3 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v3);

  g_object_set (cs, "waveform", GST_LFO_WAVEFORM_REVERSE_SAW, NULL);
  v4 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v4);

  g_object_set (cs, "waveform", GST_LFO_WAVEFORM_TRIANGLE, NULL);
  v5 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v5);

  for (t = 0; t < n_values; t++) {
    i1 = g_value_get_int (&v1[t]);
    i2 = g_value_get_int (&v2[t]);
    i3 = g_value_get_int (&v3[t]);
    i4 = g_value_get_int (&v4[t]);
    i5 = g_value_get_int (&v5[t]);
    fprintf (f, "%4.1f %d %d %d %d %d\n", (gfloat) t / 10.0, i1, i2, i3, i4,
        i5);
    g_value_unset (&v1[t]);
    g_value_unset (&v2[t]);
    g_value_unset (&v3[t]);
    g_value_unset (&v4[t]);
    g_value_unset (&v5[t]);
  }
  g_free (v1);
  g_free (v2);
  g_free (v3);
  g_free (v4);
  g_free (v5);

  fclose (f);

  gst_object_unref (cs);
  gst_object_unref (e);
}

static void
test_chained_lfo (void)
{
  GstObject *e;
  GstControlSource *cs1, *cs2;
  gint t, i1;
  GValue *v1;
  gint n_values;
  FILE *f;

  e = (GstObject *) gst_element_factory_make ("testobj", NULL);

  cs1 = gst_lfo_control_source_new ();

  gst_object_add_control_binding (e, gst_direct_control_binding_new (e, "int",
          cs1));

  g_object_set (cs1,
      "waveform", GST_LFO_WAVEFORM_SINE,
      "frequency", (gdouble) 0.05,
      "timeshift", (GstClockTime) 0, "offset", (gdouble) 0.5, NULL);

  cs2 = gst_lfo_control_source_new ();

  gst_object_add_control_binding ((GstObject *) cs1,
      gst_direct_control_binding_new ((GstObject *) cs1, "amplitude", cs2));

  g_object_set (cs2,
      "waveform", GST_LFO_WAVEFORM_SINE,
      "frequency", (gdouble) 0.05,
      "timeshift", (GstClockTime) 0,
      "amplitude", (gdouble) 0.5, "offset", (gdouble) 0.5, NULL);

  /* test single values */
  if (!(f = fopen ("ctrl_cl1.dat", "w")))
    exit (-1);
  fprintf (f, "# Time Sine\n");

  for (t = 0; t < 40; t++) {
    gst_object_sync_values (e, t * GST_SECOND);
    i1 = GST_TEST_OBJ (e)->val_int;

    fprintf (f, "%4.1f %d\n", (gfloat) t, i1);
  }

  fclose (f);

  /* test value arrays */
  if (!(f = fopen ("ctrl_cl2.dat", "w")))
    exit (-1);
  fprintf (f, "# Time Sine\n");
  n_values = 40 * 10;

  v1 = g_new0 (GValue, n_values);
  gst_object_get_value_array (e, "int", 0, GST_SECOND / 10, n_values, v1);

  for (t = 0; t < n_values; t++) {
    i1 = g_value_get_int (&v1[t]);
    fprintf (f, "%4.1f %d\n", (gfloat) t / 10.0, i1);
    g_value_unset (&v1[t]);
  }
  g_free (v1);

  fclose (f);

  gst_object_unref (cs1);
  gst_object_unref (cs2);
  gst_object_unref (e);
}

gint
main (gint argc, gchar ** argv)
{
  gst_init (&argc, &argv);

  gst_element_register (NULL, "testobj", GST_RANK_NONE, GST_TYPE_TEST_OBJ);

  test_interpolation ();
  test_lfo ();

  test_chained_lfo ();

  return 0;
}