gstreamer/tests/bufspeed/test2.c
Andy Wingo 1a4c7726aa put everything in tests/
Original commit message from CVS:
put everything in tests/
2002-01-05 01:25:28 +00:00

20 lines
278 B
C

#include <gst/gst.h>
int
main (int argc, char *argv[])
{
GstBuffer *buf;
guint i;
g_thread_init (NULL);
gtk_init (&argc, &argv);
_gst_buffer_initialize ();
for (i=0; i<5000000; i++) {
buf = gst_buffer_new ();
gst_buffer_unref (buf);
}
return 0;
}