benchmarks: add missing include
[platform/upstream/gstreamer.git] / tests / benchmarks / controller.c
1 /* GStreamer
2  * Copyright (C) 2009 Stefan Kost <ensonic@users.sf.net>
3  *
4  * controller.c: benchmark for interpolation control-source
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
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #include <stdio.h>
23
24 #include <gst/gst.h>
25 #include <gst/controller/gstinterpolationcontrolsource.h>
26 #include <gst/controller/gstcontrolbindingdirect.h>
27
28 /* a song in buzztard can easily reach 30000 here */
29 #define NUM_CP 15000
30 #define BLOCK_SIZE 64
31
32 static void
33 event_loop (GstElement * pipe)
34 {
35   GstBus *bus;
36   GstMessage *message = NULL;
37   gboolean running = TRUE;
38
39   bus = gst_element_get_bus (GST_ELEMENT (pipe));
40
41   while (running) {
42     message = gst_bus_poll (bus, GST_MESSAGE_ANY, -1);
43
44     g_assert (message != NULL);
45
46     switch (message->type) {
47       case GST_MESSAGE_EOS:
48         running = FALSE;
49         break;
50       case GST_MESSAGE_WARNING:{
51         GError *gerror;
52         gchar *debug;
53
54         gst_message_parse_warning (message, &gerror, &debug);
55         gst_object_default_error (GST_MESSAGE_SRC (message), gerror, debug);
56         g_error_free (gerror);
57         g_free (debug);
58         break;
59       }
60       case GST_MESSAGE_ERROR:{
61         GError *gerror;
62         gchar *debug;
63
64         gst_message_parse_error (message, &gerror, &debug);
65         gst_object_default_error (GST_MESSAGE_SRC (message), gerror, debug);
66         g_error_free (gerror);
67         g_free (debug);
68         running = FALSE;
69         break;
70       }
71       default:
72         break;
73     }
74     gst_message_unref (message);
75   }
76   gst_object_unref (bus);
77 }
78
79 gint
80 main (gint argc, gchar * argv[])
81 {
82   gint res = 1;
83   gint i, j;
84   GstElement *src, *sink;
85   GstElement *bin;
86   GstInterpolationControlSource *csource;
87   GstClockTime bt, ct;
88   GstClockTimeDiff elapsed;
89   GstClockTime tick;
90
91   gst_init (&argc, &argv);
92
93   /* build pipeline */
94   bin = gst_pipeline_new ("pipeline");
95   src = gst_element_factory_make ("audiotestsrc", "gen_audio");
96   if (!src) {
97     GST_WARNING ("need audiotestsrc from gst-plugins-base");
98     goto Error;
99   }
100   sink = gst_element_factory_make ("fakesink", "swallow_audio");
101
102   gst_bin_add_many (GST_BIN (bin), src, sink, NULL);
103   if (!gst_element_link (src, sink)) {
104     GST_WARNING ("can't link elements");
105     goto Error;
106   }
107
108   g_object_set (G_OBJECT (src), "wave", 7,      /* sine table - we don't want to benchmark the fpu */
109       "num-buffers", NUM_CP, "samplesperbuffer", BLOCK_SIZE, NULL);
110
111   tick = BLOCK_SIZE * GST_SECOND / 44100;
112
113   /* create and configure control source */
114   csource = gst_interpolation_control_source_new ();
115   gst_object_add_control_binding (GST_OBJECT (src),
116       gst_control_binding_direct_new (GST_OBJECT (src), "freq",
117           GST_CONTROL_SOURCE (csource)));
118   g_object_set (csource, "mode", GST_INTERPOLATION_MODE_LINEAR, NULL);
119
120
121   /* set control values, we set them in a linear order as we would when loading
122    * a stored project
123    */
124   bt = gst_util_get_timestamp ();
125
126   for (i = 0; i < NUM_CP; i++) {
127     gst_timed_value_control_source_set ((GstTimedValueControlSource *) csource,
128         i * tick, g_random_double_range (50.0, 3000.0));
129   }
130
131   ct = gst_util_get_timestamp ();
132   elapsed = GST_CLOCK_DIFF (bt, ct);
133   printf ("linear insert of control-points: %" GST_TIME_FORMAT "\n",
134       GST_TIME_ARGS (elapsed));
135
136
137   /* set extra control values, we set them in arbitrary order to simulate
138    * the user editing a project from the ui
139    */
140   bt = gst_util_get_timestamp ();
141
142   for (i = 0; i < 100; i++) {
143     j = g_random_int_range (0, NUM_CP - 1);
144     gst_timed_value_control_source_set ((GstTimedValueControlSource *) csource,
145         j * tick, g_random_double_range (50.0, 3000.0));
146   }
147
148   ct = gst_util_get_timestamp ();
149   elapsed = GST_CLOCK_DIFF (bt, ct);
150   printf ("random insert of control-points: %" GST_TIME_FORMAT "\n",
151       GST_TIME_ARGS (elapsed));
152
153   {
154     GstClockTime sample_duration =
155         gst_util_uint64_scale_int (1, GST_SECOND, 44100);
156     gdouble *values = g_new0 (gdouble, BLOCK_SIZE * NUM_CP);
157
158     bt = gst_util_get_timestamp ();
159     gst_control_source_get_value_array (GST_CONTROL_SOURCE (csource), 0,
160         sample_duration, BLOCK_SIZE * NUM_CP, values);
161     ct = gst_util_get_timestamp ();
162     g_free (values);
163     elapsed = GST_CLOCK_DIFF (bt, ct);
164     printf ("linear array for control-points: %" GST_TIME_FORMAT "\n",
165         GST_TIME_ARGS (elapsed));
166   }
167
168   gst_object_unref (csource);
169
170   /* play, this test sequential reads */
171   bt = gst_util_get_timestamp ();
172
173   if (gst_element_set_state (bin, GST_STATE_PLAYING)) {
174     /* wait for EOS */
175     event_loop (bin);
176     gst_element_set_state (bin, GST_STATE_NULL);
177   }
178
179   ct = gst_util_get_timestamp ();
180   elapsed = GST_CLOCK_DIFF (bt, ct);
181   printf ("linear read of control-points  : %" GST_TIME_FORMAT "\n",
182       GST_TIME_ARGS (elapsed));
183
184   /* cleanup */
185   gst_object_unref (G_OBJECT (bin));
186   res = 0;
187 Error:
188   return res;
189 }