<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src/libxineadec, branch 1-beta12</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>This seems to be the original URL (the other was a mirror)</title>
<updated>2003-05-08T19:45:08+00:00</updated>
<author>
<name>Ewald Snel</name>
<email>esnel@users.sourceforge.net</email>
</author>
<published>2003-05-08T19:45:08+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=a46381b9404b91504f8a767a8619070916095305'/>
<id>a46381b9404b91504f8a767a8619070916095305</id>
<content type='text'>
CVS patchset: 4799
CVS date: 2003/05/08 19:45:08

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 4799
CVS date: 2003/05/08 19:45:08

</pre>
</div>
</content>
</entry>
<entry>
<title>Sorry, I forgot to add the new file ...</title>
<updated>2003-05-08T19:21:45+00:00</updated>
<author>
<name>Ewald Snel</name>
<email>esnel@users.sourceforge.net</email>
</author>
<published>2003-05-08T19:21:45+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=5426acc39b76e533782d8de0b2515b531accc752'/>
<id>5426acc39b76e533782d8de0b2515b531accc752</id>
<content type='text'>
CVS patchset: 4798
CVS date: 2003/05/08 19:21:45

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 4798
CVS date: 2003/05/08 19:21:45

</pre>
</div>
</content>
</entry>
<entry>
<title>Add Real 28.8 decoder (a.k.a. RealAudio 2.0)</title>
<updated>2003-05-08T18:00:44+00:00</updated>
<author>
<name>Ewald Snel</name>
<email>esnel@users.sourceforge.net</email>
</author>
<published>2003-05-08T18:00:44+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=7a7d948c8df64d7892d55a5281c25ddd28452d8e'/>
<id>7a7d948c8df64d7892d55a5281c25ddd28452d8e</id>
<content type='text'>
CVS patchset: 4797
CVS date: 2003/05/08 18:00:44

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 4797
CVS date: 2003/05/08 18:00:44

</pre>
</div>
</content>
</entry>
<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>
</feed>
