gstreamer/tests/bufspeed/test1.c
Thomas Vander Stichele 1d9413fe2f test commentation
Original commit message from CVS:
test commentation
2002-09-23 06:03:17 +00:00

20 lines
291 B
C

#include <gst/gst.h>
#include "gst/gstbuffer.h"
#include "gst/gstbufferpool-default.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;
}