mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
20 lines
280 B
C
20 lines
280 B
C
|
#include "gstbuffer.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;
|
||
|
}
|