<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src/libffmpeg/libavcodec/motion_est.c, branch 1-rc3</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>super mega ffmpeg tree sync</title>
<updated>2003-10-27T15:24:38+00:00</updated>
<author>
<name>Mike Melanson</name>
<email>mike@multimedia.cx</email>
</author>
<published>2003-10-27T15:24:38+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=c5b6afab8b74e5cc938b8467d3808a877ded7d03'/>
<id>c5b6afab8b74e5cc938b8467d3808a877ded7d03</id>
<content type='text'>
CVS patchset: 5615
CVS date: 2003/10/27 15:24:38

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 5615
CVS date: 2003/10/27 15:24:38

</pre>
</div>
</content>
</entry>
<entry>
<title>ffmpeg update, add new files/decoders, use our fastmemcpy</title>
<updated>2003-04-16T00:18:35+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2003-04-16T00:18:35+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=1d0821178b1c27e35595f72bd9adda5945c7be8b'/>
<id>1d0821178b1c27e35595f72bd9adda5945c7be8b</id>
<content type='text'>
tested ok with usual files (wmv7, mpeg4, divx, svq1...)

CVS patchset: 4618
CVS date: 2003/04/16 00:18:35

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tested ok with usual files (wmv7, mpeg4, divx, svq1...)

CVS patchset: 4618
CVS date: 2003/04/16 00:18:35

</pre>
</div>
</content>
</entry>
<entry>
<title>update ffmpeg. trying to keep local changes (see diff_to_ffmpeg_cvs.txt), let me</title>
<updated>2003-03-26T14:43:46+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2003-03-26T14:43:46+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=a5adaebc130805962f83deccb29f47a7a2384fc8'/>
<id>a5adaebc130805962f83deccb29f47a7a2384fc8</id>
<content type='text'>
know if i overlooked something.
as usual, preliminary QA: tested non debug builds and several codecs including
divx3/4/5, mpeg4, xvid, msmpeg4v3, svq1, wmv7, dv (video/audio), wma
i also enabled wmv8 by default since it worked fine with the streams i have. i'm not
sure about current state of that so we might enable it only for non-x86 users in
case of trouble.

CVS patchset: 4488
CVS date: 2003/03/26 14:43:46

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
know if i overlooked something.
as usual, preliminary QA: tested non debug builds and several codecs including
divx3/4/5, mpeg4, xvid, msmpeg4v3, svq1, wmv7, dv (video/audio), wma
i also enabled wmv8 by default since it worked fine with the streams i have. i'm not
sure about current state of that so we might enable it only for non-x86 users in
case of trouble.

CVS patchset: 4488
CVS date: 2003/03/26 14:43:46

</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>update ffmpeg</title>
<updated>2003-01-31T18:29:43+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2003-01-31T18:29:43+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=5350f2b7701f01bc4f234d3971fb8a623a8cd72a'/>
<id>5350f2b7701f01bc4f234d3971fb8a623a8cd72a</id>
<content type='text'>
CVS patchset: 4068
CVS date: 2003/01/31 18:29:43

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 4068
CVS date: 2003/01/31 18:29:43

</pre>
</div>
</content>
</entry>
<entry>
<title>syncing ffmpeg (with some compilation fixes)</title>
<updated>2003-01-08T13:18:42+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2003-01-08T13:18:42+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=6f1c8d4eafabd914b87e9171bf4d04f4ef9160ea'/>
<id>6f1c8d4eafabd914b87e9171bf4d04f4ef9160ea</id>
<content type='text'>
- fixes wma bugs
- mace, huffyuv and mp3 decoders imported (but not enabled)
tested: wma (v1 and v2), mpeg4, msmpeg4 v1, v2 and v3, divx3, divx4, divx5, xvid and
dv decoders. everything looks fine.

CVS patchset: 3828
CVS date: 2003/01/08 13:18:42

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fixes wma bugs
- mace, huffyuv and mp3 decoders imported (but not enabled)
tested: wma (v1 and v2), mpeg4, msmpeg4 v1, v2 and v3, divx3, divx4, divx5, xvid and
dv decoders. everything looks fine.

CVS patchset: 3828
CVS date: 2003/01/08 13:18:42

</pre>
</div>
</content>
</entry>
<entry>
<title>Make xine-lib compile with the SunPro compiler</title>
<updated>2002-12-22T00:35:04+00:00</updated>
<author>
<name>Robin KAY</name>
<email>komadori@users.sourceforge.net</email>
</author>
<published>2002-12-22T00:35:04+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=614e17928e8f7b1bdc632fd934499cbfea165d8a'/>
<id>614e17928e8f7b1bdc632fd934499cbfea165d8a</id>
<content type='text'>
CVS patchset: 3623
CVS date: 2002/12/22 00:35:04

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3623
CVS date: 2002/12/22 00:35:04

</pre>
</div>
</content>
</entry>
<entry>
<title>- sync with ffmpeg (that must fix heiko stream, thanks Michael Niedermayer)</title>
<updated>2002-12-06T01:55:32+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2002-12-06T01:55:32+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=6109b56de74cfcda6321fcd5e37cac988734119c'/>
<id>6109b56de74cfcda6321fcd5e37cac988734119c</id>
<content type='text'>
- improve ffmpeg support (passing extra data)
- aspect ratio still need to be updated to new syntax
- use our svq1 decoder since ffmpeg one is segfaulting
  (buffer overrun - more investigation needed)
- img-&gt;copy no more

CVS patchset: 3437
CVS date: 2002/12/06 01:55:32

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- improve ffmpeg support (passing extra data)
- aspect ratio still need to be updated to new syntax
- use our svq1 decoder since ffmpeg one is segfaulting
  (buffer overrun - more investigation needed)
- img-&gt;copy no more

CVS patchset: 3437
CVS date: 2002/12/06 01:55:32

</pre>
</div>
</content>
</entry>
<entry>
<title>update ffmpeg, pass fourcc and other stuff that might be useful</title>
<updated>2002-12-02T21:58:56+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2002-12-02T21:58:56+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=92afdd9267027f569dea2807d7057eaa2bbdb8c9'/>
<id>92afdd9267027f569dea2807d7057eaa2bbdb8c9</id>
<content type='text'>
CVS patchset: 3414
CVS date: 2002/12/02 21:58:56

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3414
CVS date: 2002/12/02 21:58:56

</pre>
</div>
</content>
</entry>
<entry>
<title>sync and enable dv decoder</title>
<updated>2002-11-14T23:27:44+00:00</updated>
<author>
<name>Miguel Freitas</name>
<email>miguelfreitas@users.sourceforge.net</email>
</author>
<published>2002-11-14T23:27:44+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=f54c7a0aff71f4efe4d75af3f53c668ba5b11229'/>
<id>f54c7a0aff71f4efe4d75af3f53c668ba5b11229</id>
<content type='text'>
CVS patchset: 3261
CVS date: 2002/11/14 23:27:44

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 3261
CVS date: 2002/11/14 23:27:44

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