<div dir="ltr">Tim,<div><br></div><div>Thanks for the clarification.  Are the one-time allocations you referred to all done inside the gst_init call?  I could move the mtrace function call to after the gst_init and muntrace before the gst_deinit.  However, if these one time allocations happen all over the place I might be out of luck.</div>
<div><br></div><div>Thanks,</div><div>Randy</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jul 23, 2013 at 7:47 AM, Tim-Philipp Müller <span dir="ltr"><<a href="mailto:t.i.m@zen.co.uk" target="_blank">t.i.m@zen.co.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Tue, 2013-07-23 at 07:33 -0500, Randall Scheifele wrote:<br>
<br>
Hi,<br>
<br>
> Has anyone attempted to use mtrace with gstreamer?  Even with the<br>
> simplest gstreamer program I get tons of memory not free'd errors.<br>
><br>
><br>
> For example, here is my simple program:<br>
><br>
><br>
> #include <stdio.h><br>
> #include <stdlib.h><br>
> #include <gst/gst.h><br>
> #include <mcheck.h><br>
><br>
><br>
> int main(int argc, char* argv[])<br>
> {<br>
> // Start memory tracing<br>
> mtrace();<br>
><br>
> // Initialize gstreamer<br>
> gst_init(&argc, &argv);<br>
><br>
><br>
> // Cleanup gstreamer<br>
> gst_deinit();<br>
><br>
><br>
> // Stop memory tracing<br>
> muntrace();<br>
><br>
><br>
> return 0;<br>
> }<br>
><br>
><br>
> When I run this on my ubuntu 10.04 machine running gstreamer 0.10.28,<br>
> I get the following output from mtrace.  I realize that 0.10.28 is an<br>
> outdated version, but is my test valid?  Is there any way I can get<br>
> mtrace to say no memory leaked?<br>
><br>
><br>
> I am actually running gstreamer 0.10.32 on an embedded system and am<br>
> just playing with mtrace on the host to try and get to a point where I<br>
> don't get any memory errors.  If I can't get the list down I won't be<br>
> able to determine which errors are always there versus the ones I'm<br>
> interested in fixing in my application or plugins.  I've heard good<br>
> things about valgrind, but it is not ported for my target<br>
> architecture.<br>
<br>
</div></div>Both GStreamer and GLib/GObject will do a number of one-time<br>
allocations, which will may never be cleaned up, so it's kind of<br>
expected that you still see allocated memory at the end.<br>
<br>
Cheers<br>
 -Tim<br>
<br>
<br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</blockquote></div><br></div>