<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 11 (filtered medium)">
<style>
<!--
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:Arial;
        color:windowtext;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
</style>

</head>

<body lang=EN-US link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>Based on my reading of the Plugin Writer&#8217;s Guide &amp;
the GstElement reference docs, elements are supposed to complete all of their
deallocation on the READY -&gt; NULL transition.&nbsp; However, it&#8217;s always
bothered me that there&#8217;s a case where you could still get a memory leak.<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>Suppose an element&#8217;s GObjectClass.set_property() gets
called while the element is still in the NULL state. &nbsp;If this property
accepts a string or some other type of heap-allocated object, the element is
probably going to create a copy or add a ref. &nbsp;Now, suppose some problem occurs
and the element is disposed before ever going to the READY state. &nbsp;There
will be no transition back to NULL. &nbsp;Therefore, the only possibility of
deallocating the value is by overriding GstObjetClass.dispose().<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>I concede that this isn&#8217;t normally an issue, since the
size of any such properties is likely to be very small and many applications
will either exit or typically repeat this sequence a limited number of times.&nbsp;
However, it&#8217;s quite possible that some sort of automated recording
application might repeat this sequence somewhat rapidly and for an indefinite
period of time.<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>Then, there&#8217;s the whole philosophical issue of
avoiding even small leaks, which turns into a very practical issue when trying
to use tools to find slightly more serious leaks.&nbsp; I know you can usually
work around this, through the use of filtering, but it&#8217;s inconvenient and
not always satisfactory&#8230; let&#8217;s please try to avoid a flame war
about this.<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>Would it be so bad for GstObjectClass and GstElementClass to
at least provide a dispose() hook?&nbsp; I&#8217;m aware that I could just save
the old value &amp; replace with my own dispose(), but something feels wrong
about having the derived type dispose of its ancestors.&nbsp; It&#8217;s also
not a very user-friendly way to do it, since there are numerous ways the
derived type can mess things up (i.e. not saving the old value or failing to call
it last).<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>Matt<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

</div>

</body>

</html>