<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src/libxineadec, branch 1-beta7</title>
<subtitle>xine-lib git mirror
</subtitle>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/'/>
<entry>
<title>Added new line at end of file to remove compiler warning.</title>
<updated>2003-03-01T02:23:01+00:00</updated>
<author>
<name>Stephen Torri</name>
<email>storri@users.sourceforge.net</email>
</author>
<published>2003-03-01T02:23:01+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=16639066ab9f5e3db30e5c68d160a3fbc72d0a49'/>
<id>16639066ab9f5e3db30e5c68d160a3fbc72d0a49</id>
<content type='text'>
CVS patchset: 4311
CVS date: 2003/03/01 02:23:01

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 4311
CVS date: 2003/03/01 02:23:01

</pre>
</div>
</content>
</entry>
<entry>
<title>Xine assert() replacement:</title>
<updated>2003-02-28T02:51:47+00:00</updated>
<author>
<name>Stephen Torri</name>
<email>storri@users.sourceforge.net</email>
</author>
<published>2003-02-28T02:51:47+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=49327f43ca2196122a60314e67eeee929efea873'/>
<id>49327f43ca2196122a60314e67eeee929efea873</id>
<content type='text'>
All assert() function calls, with exceptions of libdvdread and libdvdnav, have been
replaced with XINE_ASSERT. Functionally XINE_ASSERT behaves just likes its predecesor but its
adding the ability to print out a stack trace at the point where the assertion fails.
So here are a few examples.
assert (0);
This use of assert was found in a couple locations most favorably being the default case of a switch
statement. This was the only thing there. So if the switch statement was unable to find a match
it would have defaulted to this and the user and the developers would be stuck wonder who died and where.
So it has been replaced with
XINE_ASSERT(0, "We have reach this point and don't have a default case");
It may seem a bit none descriptive but there is more going on behind the scene.
In addition to checking a condition is true/false, in this case '0', the XINE_ASSERT
prints out:
&lt;filename&gt;:&lt;function name&gt;:&lt;line number&gt; - assertion '&lt;assertion expression&gt;' failed. &lt;description&gt;
An example of this might be:
input_dvd.c:open_plugin:1178 - assertion '0' failed. xine_malloc failed!!! You have run out of memory
XINE_ASSERT and its helper function, print_trace, are found in src/xine-utils/xineutils.h

CVS patchset: 4301
CVS date: 2003/02/28 02:51:47

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All assert() function calls, with exceptions of libdvdread and libdvdnav, have been
replaced with XINE_ASSERT. Functionally XINE_ASSERT behaves just likes its predecesor but its
adding the ability to print out a stack trace at the point where the assertion fails.
So here are a few examples.
assert (0);
This use of assert was found in a couple locations most favorably being the default case of a switch
statement. This was the only thing there. So if the switch statement was unable to find a match
it would have defaulted to this and the user and the developers would be stuck wonder who died and where.
So it has been replaced with
XINE_ASSERT(0, "We have reach this point and don't have a default case");
It may seem a bit none descriptive but there is more going on behind the scene.
In addition to checking a condition is true/false, in this case '0', the XINE_ASSERT
prints out:
&lt;filename&gt;:&lt;function name&gt;:&lt;line number&gt; - assertion '&lt;assertion expression&gt;' failed. &lt;description&gt;
An example of this might be:
input_dvd.c:open_plugin:1178 - assertion '0' failed. xine_malloc failed!!! You have run out of memory
XINE_ASSERT and its helper function, print_trace, are found in src/xine-utils/xineutils.h

CVS patchset: 4301
CVS date: 2003/02/28 02:51:47

</pre>
</div>
</content>
</entry>
<entry>
<title>PSX STR demuxer improvements and XA ADPCM decoder courtesy of Stuart</title>
<updated>2003-02-14T04:32:27+00:00</updated>
<author>
<name>Mike Melanson</name>
<email>mike@multimedia.cx</email>
</author>
<published>2003-02-14T04:32:27+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=01937cd481480ffee312631e57f52dd3236840b5'/>
<id>01937cd481480ffee312631e57f52dd3236840b5</id>
<content type='text'>
Caie &lt;kyzer@4u.net&gt;

CVS patchset: 4153
CVS date: 2003/02/14 04:32:27

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Caie &lt;kyzer@4u.net&gt;

CVS patchset: 4153
CVS date: 2003/02/14 04:32:27

</pre>
</div>
</content>
</entry>
<entry>
<title>avoid allocating random sized buffer</title>
<updated>2003-02-14T00:55:52+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2003-02-14T00:55:52+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=229f6cf61107b1f6c70ee51fe95789f4b77f6341'/>
<id>229f6cf61107b1f6c70ee51fe95789f4b77f6341</id>
<content type='text'>
CVS patchset: 4150
CVS date: 2003/02/14 00:55:52

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 4150
CVS date: 2003/02/14 00:55:52

</pre>
</div>
</content>
</entry>
<entry>
<title>make the Nosefart engine aware of the config's WORDS_BIGENDIAN #define</title>
<updated>2003-01-11T15:53:53+00:00</updated>
<author>
<name>Mike Melanson</name>
<email>mike@multimedia.cx</email>
</author>
<published>2003-01-11T15:53:53+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=330004fb3f8c479c9619436b15f76dce95e83cbf'/>
<id>330004fb3f8c479c9619436b15f76dce95e83cbf</id>
<content type='text'>
CVS patchset: 3874
CVS date: 2003/01/11 15:53:53

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3874
CVS date: 2003/01/11 15:53:53

</pre>
</div>
</content>
</entry>
<entry>
<title>NSF audio files were crashing on SPARC.</title>
<updated>2003-01-09T19:50:03+00:00</updated>
<author>
<name>Juergen Keil</name>
<email>jkeil@users.sourceforge.net</email>
</author>
<published>2003-01-09T19:50:03+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=54c717651cff3ee62d2480138787421867daf29f'/>
<id>54c717651cff3ee62d2480138787421867daf29f</id>
<content type='text'>
- Define the correct HOST_ENDIAN for SPARC
- remove unaligned memory accesses

CVS patchset: 3849
CVS date: 2003/01/09 19:50:03

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Define the correct HOST_ENDIAN for SPARC
- remove unaligned memory accesses

CVS patchset: 3849
CVS date: 2003/01/09 19:50:03

</pre>
</div>
</content>
</entry>
<entry>
<title>memcpy copies too much, corrupts malloc heap</title>
<updated>2003-01-09T18:36:40+00:00</updated>
<author>
<name>Juergen Keil</name>
<email>jkeil@users.sourceforge.net</email>
</author>
<published>2003-01-09T18:36:40+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=622c22c66441ecd39d9810e2ea6951fe7df6ad7d'/>
<id>622c22c66441ecd39d9810e2ea6951fe7df6ad7d</id>
<content type='text'>
CVS patchset: 3846
CVS date: 2003/01/09 18:36:40

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3846
CVS date: 2003/01/09 18:36:40

</pre>
</div>
</content>
</entry>
<entry>
<title>proper credit</title>
<updated>2003-01-08T07:36:21+00:00</updated>
<author>
<name>Mike Melanson</name>
<email>mike@multimedia.cx</email>
</author>
<published>2003-01-08T07:36:21+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=942a138423f11bc2322bd6ee5b7d5edd3f01697f'/>
<id>942a138423f11bc2322bd6ee5b7d5edd3f01697f</id>
<content type='text'>
CVS patchset: 3826
CVS date: 2003/01/08 07:36:21

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3826
CVS date: 2003/01/08 07:36:21

</pre>
</div>
</content>
</entry>
<entry>
<title>activate the Nosefart NSF decoding engine</title>
<updated>2003-01-08T07:11:05+00:00</updated>
<author>
<name>Mike Melanson</name>
<email>mike@multimedia.cx</email>
</author>
<published>2003-01-08T07:11:05+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=30bbed105aab86145ecaf5552f0a11afd91ae78a'/>
<id>30bbed105aab86145ecaf5552f0a11afd91ae78a</id>
<content type='text'>
CVS patchset: 3825
CVS date: 2003/01/08 07:11:05

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3825
CVS date: 2003/01/08 07:11:05

</pre>
</div>
</content>
</entry>
<entry>
<title>initial import of Nosefart sources</title>
<updated>2003-01-08T07:04:35+00:00</updated>
<author>
<name>Mike Melanson</name>
<email>mike@multimedia.cx</email>
</author>
<published>2003-01-08T07:04:35+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=8d82893dbfd630ec295d4c0938aeaefc9ece1298'/>
<id>8d82893dbfd630ec295d4c0938aeaefc9ece1298</id>
<content type='text'>
CVS patchset: 3824
CVS date: 2003/01/08 07:04:35

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3824
CVS date: 2003/01/08 07:04:35

</pre>
</div>
</content>
</entry>
</feed>
