mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
a967370df5
Original commit message from CVS: gst-indent run on core
19 lines
292 B
C
19 lines
292 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;
|
|
}
|