<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src/post/goom, branch 1.1.8</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>Workaround for recent glibc &amp; -D_FORTIFY_SOURCE=2 (defines open() as a macro).</title>
<updated>2007-08-15T15:38:46+00:00</updated>
<author>
<name>Darren Salt</name>
<email>linux@youmustbejoking.demon.co.uk</email>
</author>
<published>2007-08-15T15:38:46+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=5bd10cf74df979e611d69db0d5563b9d0854f884'/>
<id>5bd10cf74df979e611d69db0d5563b9d0854f884</id>
<content type='text'>
According to bug 1773769, this breaks foo-&gt;open().
The fix (as used in Ville Skyttä's patch, which doesn't cover all cases) is
to replace this with (foo-&gt;open)().

This patch was generated using
sed -i -re 's/(([[:alnum:]_]+(-&gt;|\.))+open) ?\(/(\1) (/' `grep '[&gt;.]open \?(' include -rIl`
One change (in a comment) is not committed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to bug 1773769, this breaks foo-&gt;open().
The fix (as used in Ville Skyttä's patch, which doesn't cover all cases) is
to replace this with (foo-&gt;open)().

This patch was generated using
sed -i -re 's/(([[:alnum:]_]+(-&gt;|\.))+open) ?\(/(\1) (/' `grep '[&gt;.]open \?(' include -rIl`
One change (in a comment) is not committed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix goom visualization plug-in</title>
<updated>2007-08-12T17:31:37+00:00</updated>
<author>
<name>Maxim Levitsky</name>
<email>maximlevitsky@gmail.com</email>
</author>
<published>2007-08-12T17:31:37+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=446e1487e45af46a62f00ce0165b830081073cda'/>
<id>446e1487e45af46a62f00ce0165b830081073cda</id>
<content type='text'>
I noticed that goom visualization plug-in doesn't work / freezes at some
combination of bit rates and its FPS.

Digging through it I found that algorithm that dispatches sound data to goom
is buggy, and so I have rewrote/cleaned  it a lot.

Let me explain what is wrong:

I am talking about goom_port_put_buffer
in /xine-lib-1.1.7/src/post/goom/xine_goom.c

The counter this-&gt;skip_frame is supposed to hold count of frames that goom
should skip because of _video render unable to render video_.
But that algorithm also skips frames on its own, and still decrements that
counter.

So it goes negative, and no frames are displayed.

Basically to fix that you need to add
if (this-&gt;skip_frame &gt; 0)
before this-&gt;skip_frame--;

But since I want to fix that properly I decided to learn why goom skips frames
on its own, and I now understand that whole algorithm is buggy.

Thus I reimplemented it properly.
I tested it , and it works with all my sound files, also I added lot of debug
printfs to test whenever it works as expected, and it does.

--HG--
extra : transplant_source : %B6%0C%09%D6%93%B8%00cj%3B8%C7%B5%0B%DB%21%08%92%3E%7B
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I noticed that goom visualization plug-in doesn't work / freezes at some
combination of bit rates and its FPS.

Digging through it I found that algorithm that dispatches sound data to goom
is buggy, and so I have rewrote/cleaned  it a lot.

Let me explain what is wrong:

I am talking about goom_port_put_buffer
in /xine-lib-1.1.7/src/post/goom/xine_goom.c

The counter this-&gt;skip_frame is supposed to hold count of frames that goom
should skip because of _video render unable to render video_.
But that algorithm also skips frames on its own, and still decrements that
counter.

So it goes negative, and no frames are displayed.

Basically to fix that you need to add
if (this-&gt;skip_frame &gt; 0)
before this-&gt;skip_frame--;

But since I want to fix that properly I decided to learn why goom skips frames
on its own, and I now understand that whole algorithm is buggy.

Thus I reimplemented it properly.
I tested it , and it works with all my sound files, also I added lot of debug
printfs to test whenever it works as expected, and it does.

--HG--
extra : transplant_source : %B6%0C%09%D6%93%B8%00cj%3B8%C7%B5%0B%DB%21%08%92%3E%7B
</pre>
</div>
</content>
</entry>
<entry>
<title>Add $(LTLIBINTL) wherever objdump -R shows a dependency on gettext functions.</title>
<updated>2007-06-09T16:59:03+00:00</updated>
<author>
<name>Darren Salt</name>
<email>linux@youmustbejoking.demon.co.uk</email>
</author>
<published>2007-06-09T16:59:03+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=89af20ee5fcefa96ac7eaf8ca36c3be72e38ea4f'/>
<id>89af20ee5fcefa96ac7eaf8ca36c3be72e38ea4f</id>
<content type='text'>
Some plugins may have been missed due to them not being built here.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some plugins may have been missed due to them not being built here.
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert comments (and the occasional string where it doesn't matter) to UTF-8.</title>
<updated>2007-05-16T23:24:21+00:00</updated>
<author>
<name>Darren Salt</name>
<email>linux@youmustbejoking.demon.co.uk</email>
</author>
<published>2007-05-16T23:24:21+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=5f170aeb405f44ce67bf8827494c2a933b3e3241'/>
<id>5f170aeb405f44ce67bf8827494c2a933b3e3241</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow xine-lib to be built with CFLAGS='-O0 -g3' by changing optimization</title>
<updated>2007-04-10T19:21:55+00:00</updated>
<author>
<name>Reinhard Nißl</name>
<email>rnissl@gmx.de</email>
</author>
<published>2007-04-10T19:21:55+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=2db5cee0a753b0430a3d3f1fe2af5d5538fb49eb'/>
<id>2db5cee0a753b0430a3d3f1fe2af5d5538fb49eb</id>
<content type='text'>
as needed for some files where gcc runs out of registers otherwise.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
as needed for some files where gcc runs out of registers otherwise.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove executable status from all files which shouldn't have it.</title>
<updated>2007-04-06T15:28:01+00:00</updated>
<author>
<name>Darren Salt</name>
<email>linux@youmustbejoking.demon.co.uk</email>
</author>
<published>2007-04-06T15:28:01+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=433a362b6dcff0d02f8181bf75fbeedff09b775f'/>
<id>433a362b6dcff0d02f8181bf75fbeedff09b775f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Define a xinepostdir directory to point to the post-plugins path.</title>
<updated>2007-04-06T14:17:04+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-04-06T14:17:04+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=e7b343f647fa5c44551946b39afdeebe0812c8eb'/>
<id>e7b343f647fa5c44551946b39afdeebe0812c8eb</id>
<content type='text'>
Together with this, define a xinepost_LTLIBRARIES class that is used
to install the post-plugins in the correct directory.

Also add the rule to remove them.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Together with this, define a xinepost_LTLIBRARIES class that is used
to install the post-plugins in the correct directory.

Also add the rule to remove them.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rationalise use of .hgignore, removes a bunch of files that only ignored automake-related files.</title>
<updated>2007-04-03T02:36:40+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-04-03T02:36:40+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=c29a5c39d5efb63c713902489571b0b0ab84ca91'/>
<id>c29a5c39d5efb63c713902489571b0b0ab84ca91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate all .cvsignore files to .hgignore.</title>
<updated>2007-04-02T18:44:04+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-04-02T18:44:04+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=6ff7b823ea37c8baa725fad659b06b23e1d92d57'/>
<id>6ff7b823ea37c8baa725fad659b06b23e1d92d57</id>
<content type='text'>
--HG--
rename : .cvsignore =&gt; .hgignore
rename : doc/.cvsignore =&gt; doc/.hgignore
rename : doc/faq/.cvsignore =&gt; doc/faq/.hgignore
rename : doc/hackersguide/.cvsignore =&gt; doc/hackersguide/.hgignore
rename : doc/man/.cvsignore =&gt; doc/man/.hgignore
rename : doc/man/en/.cvsignore =&gt; doc/man/en/.hgignore
rename : include/.cvsignore =&gt; include/.hgignore
rename : intl/.cvsignore =&gt; intl/.hgignore
rename : lib/.cvsignore =&gt; lib/.hgignore
rename : m4/.cvsignore =&gt; m4/.hgignore
rename : misc/.cvsignore =&gt; misc/.hgignore
rename : misc/fonts/.cvsignore =&gt; misc/fonts/.hgignore
rename : po/.cvsignore =&gt; po/.hgignore
rename : src/.cvsignore =&gt; src/.hgignore
rename : src/audio_out/.cvsignore =&gt; src/audio_out/.hgignore
rename : src/combined/.cvsignore =&gt; src/combined/.hgignore
rename : src/demuxers/.cvsignore =&gt; src/demuxers/.hgignore
rename : src/dxr3/.cvsignore =&gt; src/dxr3/.hgignore
rename : src/input/.cvsignore =&gt; src/input/.hgignore
rename : src/input/dvb/.cvsignore =&gt; src/input/dvb/.hgignore
rename : src/input/libdvdnav/.cvsignore =&gt; src/input/libdvdnav/.hgignore
rename : src/input/libreal/.cvsignore =&gt; src/input/libreal/.hgignore
rename : src/input/librtsp/.cvsignore =&gt; src/input/librtsp/.hgignore
rename : src/input/vcd/.cvsignore =&gt; src/input/vcd/.hgignore
rename : src/input/vcd/libcdio/.cvsignore =&gt; src/input/vcd/libcdio/.hgignore
rename : src/input/vcd/libcdio/MSWindows/.cvsignore =&gt; src/input/vcd/libcdio/MSWindows/.hgignore
rename : src/input/vcd/libcdio/cdio/.cvsignore =&gt; src/input/vcd/libcdio/cdio/.hgignore
rename : src/input/vcd/libcdio/image/.cvsignore =&gt; src/input/vcd/libcdio/image/.hgignore
rename : src/input/vcd/libvcd/.cvsignore =&gt; src/input/vcd/libvcd/.hgignore
rename : src/input/vcd/libvcd/libvcd/.cvsignore =&gt; src/input/vcd/libvcd/libvcd/.hgignore
rename : src/liba52/.cvsignore =&gt; src/liba52/.hgignore
rename : src/libdts/.cvsignore =&gt; src/libdts/.hgignore
rename : src/libfaad/.cvsignore =&gt; src/libfaad/.hgignore
rename : src/libfaad/codebook/.cvsignore =&gt; src/libfaad/codebook/.hgignore
rename : src/libffmpeg/.cvsignore =&gt; src/libffmpeg/.hgignore
rename : src/libffmpeg/libavcodec/.cvsignore =&gt; src/libffmpeg/libavcodec/.hgignore
rename : src/libffmpeg/libavcodec/alpha/.cvsignore =&gt; src/libffmpeg/libavcodec/alpha/.hgignore
rename : src/libffmpeg/libavcodec/armv4l/.cvsignore =&gt; src/libffmpeg/libavcodec/armv4l/.hgignore
rename : src/libffmpeg/libavcodec/i386/.cvsignore =&gt; src/libffmpeg/libavcodec/i386/.hgignore
rename : src/libffmpeg/libavcodec/libpostproc/.cvsignore =&gt; src/libffmpeg/libavcodec/libpostproc/.hgignore
rename : src/libffmpeg/libavcodec/mlib/.cvsignore =&gt; src/libffmpeg/libavcodec/mlib/.hgignore
rename : src/libffmpeg/libavcodec/ppc/.cvsignore =&gt; src/libffmpeg/libavcodec/ppc/.hgignore
rename : src/libffmpeg/libavcodec/sparc/.cvsignore =&gt; src/libffmpeg/libavcodec/sparc/.hgignore
rename : src/libffmpeg/libavutil/.cvsignore =&gt; src/libffmpeg/libavutil/.hgignore
rename : src/libflac/.cvsignore =&gt; src/libflac/.hgignore
rename : src/liblpcm/.cvsignore =&gt; src/liblpcm/.hgignore
rename : src/libmad/.cvsignore =&gt; src/libmad/.hgignore
rename : src/libmpeg2/.cvsignore =&gt; src/libmpeg2/.hgignore
rename : src/libmpeg2new/.cvsignore =&gt; src/libmpeg2new/.hgignore
rename : src/libmpeg2new/include/.cvsignore =&gt; src/libmpeg2new/include/.hgignore
rename : src/libmpeg2new/libmpeg2/.cvsignore =&gt; src/libmpeg2new/libmpeg2/.hgignore
rename : src/libmusepack/.cvsignore =&gt; src/libmusepack/.hgignore
rename : src/libmusepack/musepack/.cvsignore =&gt; src/libmusepack/musepack/.hgignore
rename : src/libreal/.cvsignore =&gt; src/libreal/.hgignore
rename : src/libspeex/.cvsignore =&gt; src/libspeex/.hgignore
rename : src/libspucc/.cvsignore =&gt; src/libspucc/.hgignore
rename : src/libspucmml/.cvsignore =&gt; src/libspucmml/.hgignore
rename : src/libspudec/.cvsignore =&gt; src/libspudec/.hgignore
rename : src/libspudvb/.cvsignore =&gt; src/libspudvb/.hgignore
rename : src/libsputext/.cvsignore =&gt; src/libsputext/.hgignore
rename : src/libtheora/.cvsignore =&gt; src/libtheora/.hgignore
rename : src/libvorbis/.cvsignore =&gt; src/libvorbis/.hgignore
rename : src/libw32dll/.cvsignore =&gt; src/libw32dll/.hgignore
rename : src/libw32dll/DirectShow/.cvsignore =&gt; src/libw32dll/DirectShow/.hgignore
rename : src/libw32dll/dmo/.cvsignore =&gt; src/libw32dll/dmo/.hgignore
rename : src/libw32dll/qtx/.cvsignore =&gt; src/libw32dll/qtx/.hgignore
rename : src/libw32dll/qtx/qtxsdk/.cvsignore =&gt; src/libw32dll/qtx/qtxsdk/.hgignore
rename : src/libw32dll/wine/.cvsignore =&gt; src/libw32dll/wine/.hgignore
rename : src/libxineadec/.cvsignore =&gt; src/libxineadec/.hgignore
rename : src/libxineadec/gsm610/.cvsignore =&gt; src/libxineadec/gsm610/.hgignore
rename : src/libxineadec/nosefart/.cvsignore =&gt; src/libxineadec/nosefart/.hgignore
rename : src/libxinevdec/.cvsignore =&gt; src/libxinevdec/.hgignore
rename : src/post/.cvsignore =&gt; src/post/.hgignore
rename : src/post/audio/.cvsignore =&gt; src/post/audio/.hgignore
rename : src/post/deinterlace/.cvsignore =&gt; src/post/deinterlace/.hgignore
rename : src/post/deinterlace/plugins/.cvsignore =&gt; src/post/deinterlace/plugins/.hgignore
rename : src/post/goom/.cvsignore =&gt; src/post/goom/.hgignore
rename : src/post/mosaico/.cvsignore =&gt; src/post/mosaico/.hgignore
rename : src/post/planar/.cvsignore =&gt; src/post/planar/.hgignore
rename : src/post/visualizations/.cvsignore =&gt; src/post/visualizations/.hgignore
rename : src/video_out/.cvsignore =&gt; src/video_out/.hgignore
rename : src/video_out/libdha/.cvsignore =&gt; src/video_out/libdha/.hgignore
rename : src/video_out/libdha/bin/.cvsignore =&gt; src/video_out/libdha/bin/.hgignore
rename : src/video_out/libdha/kernelhelper/.cvsignore =&gt; src/video_out/libdha/kernelhelper/.hgignore
rename : src/video_out/libdha/oth/.cvsignore =&gt; src/video_out/libdha/oth/.hgignore
rename : src/video_out/libdha/sysdep/.cvsignore =&gt; src/video_out/libdha/sysdep/.hgignore
rename : src/video_out/macosx/.cvsignore =&gt; src/video_out/macosx/.hgignore
rename : src/video_out/vidix/.cvsignore =&gt; src/video_out/vidix/.hgignore
rename : src/video_out/vidix/drivers/.cvsignore =&gt; src/video_out/vidix/drivers/.hgignore
rename : src/xine-engine/.cvsignore =&gt; src/xine-engine/.hgignore
rename : src/xine-utils/.cvsignore =&gt; src/xine-utils/.hgignore
rename : win32/.cvsignore =&gt; win32/.hgignore
rename : win32/include/.cvsignore =&gt; win32/include/.hgignore
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
rename : .cvsignore =&gt; .hgignore
rename : doc/.cvsignore =&gt; doc/.hgignore
rename : doc/faq/.cvsignore =&gt; doc/faq/.hgignore
rename : doc/hackersguide/.cvsignore =&gt; doc/hackersguide/.hgignore
rename : doc/man/.cvsignore =&gt; doc/man/.hgignore
rename : doc/man/en/.cvsignore =&gt; doc/man/en/.hgignore
rename : include/.cvsignore =&gt; include/.hgignore
rename : intl/.cvsignore =&gt; intl/.hgignore
rename : lib/.cvsignore =&gt; lib/.hgignore
rename : m4/.cvsignore =&gt; m4/.hgignore
rename : misc/.cvsignore =&gt; misc/.hgignore
rename : misc/fonts/.cvsignore =&gt; misc/fonts/.hgignore
rename : po/.cvsignore =&gt; po/.hgignore
rename : src/.cvsignore =&gt; src/.hgignore
rename : src/audio_out/.cvsignore =&gt; src/audio_out/.hgignore
rename : src/combined/.cvsignore =&gt; src/combined/.hgignore
rename : src/demuxers/.cvsignore =&gt; src/demuxers/.hgignore
rename : src/dxr3/.cvsignore =&gt; src/dxr3/.hgignore
rename : src/input/.cvsignore =&gt; src/input/.hgignore
rename : src/input/dvb/.cvsignore =&gt; src/input/dvb/.hgignore
rename : src/input/libdvdnav/.cvsignore =&gt; src/input/libdvdnav/.hgignore
rename : src/input/libreal/.cvsignore =&gt; src/input/libreal/.hgignore
rename : src/input/librtsp/.cvsignore =&gt; src/input/librtsp/.hgignore
rename : src/input/vcd/.cvsignore =&gt; src/input/vcd/.hgignore
rename : src/input/vcd/libcdio/.cvsignore =&gt; src/input/vcd/libcdio/.hgignore
rename : src/input/vcd/libcdio/MSWindows/.cvsignore =&gt; src/input/vcd/libcdio/MSWindows/.hgignore
rename : src/input/vcd/libcdio/cdio/.cvsignore =&gt; src/input/vcd/libcdio/cdio/.hgignore
rename : src/input/vcd/libcdio/image/.cvsignore =&gt; src/input/vcd/libcdio/image/.hgignore
rename : src/input/vcd/libvcd/.cvsignore =&gt; src/input/vcd/libvcd/.hgignore
rename : src/input/vcd/libvcd/libvcd/.cvsignore =&gt; src/input/vcd/libvcd/libvcd/.hgignore
rename : src/liba52/.cvsignore =&gt; src/liba52/.hgignore
rename : src/libdts/.cvsignore =&gt; src/libdts/.hgignore
rename : src/libfaad/.cvsignore =&gt; src/libfaad/.hgignore
rename : src/libfaad/codebook/.cvsignore =&gt; src/libfaad/codebook/.hgignore
rename : src/libffmpeg/.cvsignore =&gt; src/libffmpeg/.hgignore
rename : src/libffmpeg/libavcodec/.cvsignore =&gt; src/libffmpeg/libavcodec/.hgignore
rename : src/libffmpeg/libavcodec/alpha/.cvsignore =&gt; src/libffmpeg/libavcodec/alpha/.hgignore
rename : src/libffmpeg/libavcodec/armv4l/.cvsignore =&gt; src/libffmpeg/libavcodec/armv4l/.hgignore
rename : src/libffmpeg/libavcodec/i386/.cvsignore =&gt; src/libffmpeg/libavcodec/i386/.hgignore
rename : src/libffmpeg/libavcodec/libpostproc/.cvsignore =&gt; src/libffmpeg/libavcodec/libpostproc/.hgignore
rename : src/libffmpeg/libavcodec/mlib/.cvsignore =&gt; src/libffmpeg/libavcodec/mlib/.hgignore
rename : src/libffmpeg/libavcodec/ppc/.cvsignore =&gt; src/libffmpeg/libavcodec/ppc/.hgignore
rename : src/libffmpeg/libavcodec/sparc/.cvsignore =&gt; src/libffmpeg/libavcodec/sparc/.hgignore
rename : src/libffmpeg/libavutil/.cvsignore =&gt; src/libffmpeg/libavutil/.hgignore
rename : src/libflac/.cvsignore =&gt; src/libflac/.hgignore
rename : src/liblpcm/.cvsignore =&gt; src/liblpcm/.hgignore
rename : src/libmad/.cvsignore =&gt; src/libmad/.hgignore
rename : src/libmpeg2/.cvsignore =&gt; src/libmpeg2/.hgignore
rename : src/libmpeg2new/.cvsignore =&gt; src/libmpeg2new/.hgignore
rename : src/libmpeg2new/include/.cvsignore =&gt; src/libmpeg2new/include/.hgignore
rename : src/libmpeg2new/libmpeg2/.cvsignore =&gt; src/libmpeg2new/libmpeg2/.hgignore
rename : src/libmusepack/.cvsignore =&gt; src/libmusepack/.hgignore
rename : src/libmusepack/musepack/.cvsignore =&gt; src/libmusepack/musepack/.hgignore
rename : src/libreal/.cvsignore =&gt; src/libreal/.hgignore
rename : src/libspeex/.cvsignore =&gt; src/libspeex/.hgignore
rename : src/libspucc/.cvsignore =&gt; src/libspucc/.hgignore
rename : src/libspucmml/.cvsignore =&gt; src/libspucmml/.hgignore
rename : src/libspudec/.cvsignore =&gt; src/libspudec/.hgignore
rename : src/libspudvb/.cvsignore =&gt; src/libspudvb/.hgignore
rename : src/libsputext/.cvsignore =&gt; src/libsputext/.hgignore
rename : src/libtheora/.cvsignore =&gt; src/libtheora/.hgignore
rename : src/libvorbis/.cvsignore =&gt; src/libvorbis/.hgignore
rename : src/libw32dll/.cvsignore =&gt; src/libw32dll/.hgignore
rename : src/libw32dll/DirectShow/.cvsignore =&gt; src/libw32dll/DirectShow/.hgignore
rename : src/libw32dll/dmo/.cvsignore =&gt; src/libw32dll/dmo/.hgignore
rename : src/libw32dll/qtx/.cvsignore =&gt; src/libw32dll/qtx/.hgignore
rename : src/libw32dll/qtx/qtxsdk/.cvsignore =&gt; src/libw32dll/qtx/qtxsdk/.hgignore
rename : src/libw32dll/wine/.cvsignore =&gt; src/libw32dll/wine/.hgignore
rename : src/libxineadec/.cvsignore =&gt; src/libxineadec/.hgignore
rename : src/libxineadec/gsm610/.cvsignore =&gt; src/libxineadec/gsm610/.hgignore
rename : src/libxineadec/nosefart/.cvsignore =&gt; src/libxineadec/nosefart/.hgignore
rename : src/libxinevdec/.cvsignore =&gt; src/libxinevdec/.hgignore
rename : src/post/.cvsignore =&gt; src/post/.hgignore
rename : src/post/audio/.cvsignore =&gt; src/post/audio/.hgignore
rename : src/post/deinterlace/.cvsignore =&gt; src/post/deinterlace/.hgignore
rename : src/post/deinterlace/plugins/.cvsignore =&gt; src/post/deinterlace/plugins/.hgignore
rename : src/post/goom/.cvsignore =&gt; src/post/goom/.hgignore
rename : src/post/mosaico/.cvsignore =&gt; src/post/mosaico/.hgignore
rename : src/post/planar/.cvsignore =&gt; src/post/planar/.hgignore
rename : src/post/visualizations/.cvsignore =&gt; src/post/visualizations/.hgignore
rename : src/video_out/.cvsignore =&gt; src/video_out/.hgignore
rename : src/video_out/libdha/.cvsignore =&gt; src/video_out/libdha/.hgignore
rename : src/video_out/libdha/bin/.cvsignore =&gt; src/video_out/libdha/bin/.hgignore
rename : src/video_out/libdha/kernelhelper/.cvsignore =&gt; src/video_out/libdha/kernelhelper/.hgignore
rename : src/video_out/libdha/oth/.cvsignore =&gt; src/video_out/libdha/oth/.hgignore
rename : src/video_out/libdha/sysdep/.cvsignore =&gt; src/video_out/libdha/sysdep/.hgignore
rename : src/video_out/macosx/.cvsignore =&gt; src/video_out/macosx/.hgignore
rename : src/video_out/vidix/.cvsignore =&gt; src/video_out/vidix/.hgignore
rename : src/video_out/vidix/drivers/.cvsignore =&gt; src/video_out/vidix/drivers/.hgignore
rename : src/xine-engine/.cvsignore =&gt; src/xine-engine/.hgignore
rename : src/xine-utils/.cvsignore =&gt; src/xine-utils/.hgignore
rename : win32/.cvsignore =&gt; win32/.hgignore
rename : win32/include/.cvsignore =&gt; win32/include/.hgignore
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix crosscompile to use build and host definition from autoconf, rather than using hacksaround. Also replace the whole pthread check with an improved macro originally written for XCB, this way it's not going to try linking the fake -lpthread on Darwin, and it also does not force a -I/usr/local/include on FreeBSD. The new macro respects the same variables set by ports, so that it's even more transparent to FreeBSD users.</title>
<updated>2007-03-22T20:44:58+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-03-22T20:44:58+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=62b1bb0c213c37b58e5a7bb8359f41168c34f817'/>
<id>62b1bb0c213c37b58e5a7bb8359f41168c34f817</id>
<content type='text'>
CVS patchset: 8739
CVS date: 2007/03/22 20:44:58

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 8739
CVS date: 2007/03/22 20:44:58

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