mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
8ae7350492
Original commit message from CVS: fix all compiler warnings
18 lines
248 B
C
18 lines
248 B
C
#include "gstbuffer.h"
|
|
#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;
|
|
}
|