<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src/libmpeg2, branch 1.1.7</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>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>Speed up start code scanning.</title>
<updated>2007-04-11T22:02:45+00:00</updated>
<author>
<name>Reinhard Nißl</name>
<email>rnissl@gmx.de</email>
</author>
<published>2007-04-11T22:02:45+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=a76aacd69fa3512c3c566c93248bc6c41bb00e97'/>
<id>a76aacd69fa3512c3c566c93248bc6c41bb00e97</id>
<content type='text'>
The current code implements hardware (a shift register) in software
just to find the byte pattern 00 00 01 xx, which causes remarkable
CPU load on less powerful machines.
The new approach uses memchr() to find the 01 in the buffer, which
most often hits a start code. memchr() seems to be even faster then
implementing a real pattern search (i. e. by just looking at every
third byte to find 01). The new implementation causes significantly
fewer CPU load on less powerful machines.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current code implements hardware (a shift register) in software
just to find the byte pattern 00 00 01 xx, which causes remarkable
CPU load on less powerful machines.
The new approach uses memchr() to find the 01 in the buffer, which
most often hits a start code. memchr() seems to be even faster then
implementing a real pattern search (i. e. by just looking at every
third byte to find 01). The new implementation causes significantly
fewer CPU load on less powerful machines.
</pre>
</div>
</content>
</entry>
<entry>
<title>Special handling of sequence end code to improve still frames.</title>
<updated>2007-04-11T21:27:25+00:00</updated>
<author>
<name>Reinhard Nißl</name>
<email>rnissl@gmx.de</email>
</author>
<published>2007-04-11T21:27:25+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=5e58a3c2f6a02dbd198369d1132366c49f5345fe'/>
<id>5e58a3c2f6a02dbd198369d1132366c49f5345fe</id>
<content type='text'>
The current code emits a frame when a non slice start code is seen.
For still frames, this is typically a sequence end code. But the
current code doesn't call parse_chunk() immediately because it waits
for a further start code to determine the chunk of data to pass to
parse_chunk(). But there isn't such a further start code for still
frames after the sequence end code and thus, the still frame will
not be emitted.
As sequence end code is the only start code which has no data
according to the MPEG specification, let's use this information
to call parse_chunk() immediately.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current code emits a frame when a non slice start code is seen.
For still frames, this is typically a sequence end code. But the
current code doesn't call parse_chunk() immediately because it waits
for a further start code to determine the chunk of data to pass to
parse_chunk(). But there isn't such a further start code for still
frames after the sequence end code and thus, the still frame will
not be emitted.
As sequence end code is the only start code which has no data
according to the MPEG specification, let's use this information
to call parse_chunk() immediately.
</pre>
</div>
</content>
</entry>
<entry>
<title>Detect absence of AFD and report only changes.</title>
<updated>2007-04-11T21:04:11+00:00</updated>
<author>
<name>Reinhard Nißl</name>
<email>rnissl@gmx.de</email>
</author>
<published>2007-04-11T21:04:11+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=47d88e8447b5b86f7eca03d302f2d17d2a4c9c26'/>
<id>47d88e8447b5b86f7eca03d302f2d17d2a4c9c26</id>
<content type='text'>
The current code cannot detect the absence of AFD once it has been
seen in the stream. As AFD can appear in user data after sequence,
group or picture start codes, the idea is to reset the stored AFD
value when processing the sequence start code. In the case where
AFD is seen in user data, it is stored internally, to have it ready
when the first slice is processed. At least at that time, AFD data
has been seen and can be analyzed for changes. At any change, the
AFD value will then be stored into a stream property. Doing this
only for changes avoids locks while writing the same value over and
over to the stream's property.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current code cannot detect the absence of AFD once it has been
seen in the stream. As AFD can appear in user data after sequence,
group or picture start codes, the idea is to reset the stored AFD
value when processing the sequence start code. In the case where
AFD is seen in user data, it is stored internally, to have it ready
when the first slice is processed. At least at that time, AFD data
has been seen and can be analyzed for changes. At any change, the
AFD value will then be stored into a stream property. Doing this
only for changes avoids locks while writing the same value over and
over to the stream's property.
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve MPEG2 detection to have it ready for correct aspect ratio</title>
<updated>2007-04-11T20:47:14+00:00</updated>
<author>
<name>Reinhard Nißl</name>
<email>rnissl@gmx.de</email>
</author>
<published>2007-04-11T20:47:14+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=70340520422bd57265c125c9114bf0804a0fcfb6'/>
<id>70340520422bd57265c125c9114bf0804a0fcfb6</id>
<content type='text'>
determination.
The current code detects MPEG2 when parsing the sequence extention
which appears only in MPEG2 streams. But this is to late for correct
aspect ratio determination which happens earlier and therefore
assumes MPEG1. The result is a totally wrong aspect ratio.
To fix this issue, the next start code (which is already available
at that time) is passed to parse_chunk() too, which can then be
used to detect a MPEG2 extension start code early enough before
the aspect ratio is determined.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
determination.
The current code detects MPEG2 when parsing the sequence extention
which appears only in MPEG2 streams. But this is to late for correct
aspect ratio determination which happens earlier and therefore
assumes MPEG1. The result is a totally wrong aspect ratio.
To fix this issue, the next start code (which is already available
at that time) is passed to parse_chunk() too, which can then be
used to detect a MPEG2 extension start code early enough before
the aspect ratio is determined.
</pre>
</div>
</content>
</entry>
<entry>
<title>Beside the name, constants can't be marked const or gcc miscompiles the Altivec code.</title>
<updated>2007-04-08T12:49:15+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-04-08T12:49:15+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=f99eae5c09b9ebbc16c0bd5e2a5dda8e2874d81f'/>
<id>f99eae5c09b9ebbc16c0bd5e2a5dda8e2874d81f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark various private arrays, structs &amp; fn parameters as static and/or const.</title>
<updated>2007-04-08T00:12:44+00:00</updated>
<author>
<name>Darren Salt</name>
<email>linux@youmustbejoking.demon.co.uk</email>
</author>
<published>2007-04-08T00:12:44+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=3a233b827783151c4c08985224782f1dcce43a8f'/>
<id>3a233b827783151c4c08985224782f1dcce43a8f</id>
<content type='text'>
Two of the modified files are headers, but each contains definitions as well as
declarations and is only ever used once.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Two of the modified files are headers, but each contains definitions as well as
declarations and is only ever used once.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename xine_decoder.c to xine_mpeg2_decoder.c.</title>
<updated>2007-04-04T20:35:03+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-04-04T20:35:03+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=80ae291df82f5016ce0cfd927569e49e8ce25725'/>
<id>80ae291df82f5016ce0cfd927569e49e8ce25725</id>
<content type='text'>
Use xineplug_LTLIBRARIES.

--HG--
rename : src/libmpeg2/xine_decoder.c =&gt; src/libmpeg2/xine_mpeg2_decoder.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use xineplug_LTLIBRARIES.

--HG--
rename : src/libmpeg2/xine_decoder.c =&gt; src/libmpeg2/xine_mpeg2_decoder.c
</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>
</feed>
