gstreamer/tests/bufspeed/test2.c
Andy Wingo f698d6469c compile fixen
Original commit message from CVS:
compile fixen
2002-01-05 01:43:16 +00:00

18 lines
225 B
C

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