<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src/libxinevdec/Makefile.am, branch 1.2.5</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>Rename libxinvadec directory in video_dec.</title>
<updated>2007-12-22T22:08:08+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-12-22T22:08:08+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=c57821405a657216e41e9c9e8ddaed9996af2350'/>
<id>c57821405a657216e41e9c9e8ddaed9996af2350</id>
<content type='text'>
--HG--
rename : src/libxinevdec/Makefile.am =&gt; src/video_dec/Makefile.am
rename : src/libxinevdec/bitplane.c =&gt; src/video_dec/bitplane.c
rename : src/libxinevdec/foovideo.c =&gt; src/video_dec/foovideo.c
rename : src/libxinevdec/gdkpixbuf.c =&gt; src/video_dec/gdkpixbuf.c
rename : src/libxinevdec/image.c =&gt; src/video_dec/image.c
rename : src/libxinevdec/rgb.c =&gt; src/video_dec/rgb.c
rename : src/libxinevdec/yuv.c =&gt; src/video_dec/yuv.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
rename : src/libxinevdec/Makefile.am =&gt; src/video_dec/Makefile.am
rename : src/libxinevdec/bitplane.c =&gt; src/video_dec/bitplane.c
rename : src/libxinevdec/foovideo.c =&gt; src/video_dec/foovideo.c
rename : src/libxinevdec/gdkpixbuf.c =&gt; src/video_dec/gdkpixbuf.c
rename : src/libxinevdec/image.c =&gt; src/video_dec/image.c
rename : src/libxinevdec/rgb.c =&gt; src/video_dec/rgb.c
rename : src/libxinevdec/yuv.c =&gt; src/video_dec/yuv.c
</pre>
</div>
</content>
</entry>
<entry>
<title>A nice simple merge from 1.1.</title>
<updated>2007-06-12T21:32:26+00:00</updated>
<author>
<name>Darren Salt</name>
<email>linux@youmustbejoking.demon.co.uk</email>
</author>
<published>2007-06-12T21:32:26+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=58d9467d1b2188463b216b79b51a423559e97a75'/>
<id>58d9467d1b2188463b216b79b51a423559e97a75</id>
<content type='text'>
Hopefully, I've applied all of the $(LTLIBINTL) changes correctly...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Hopefully, I've applied all of the $(LTLIBINTL) changes correctly...
</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>Collapse the Ogg demuxer, and the Theora, Vorbis and Speex decoders in the same 'xiph' plugin.</title>
<updated>2007-06-01T19:05:12+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-06-01T19:05:12+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=f209e8b8ef44998a5ea20544bbb39aaeefa28086'/>
<id>f209e8b8ef44998a5ea20544bbb39aaeefa28086</id>
<content type='text'>
As the three decoders requires Ogg support, and requires an Ogg demuxer to play, enabling any one of them will then enable the ogg demuxer.

The Ogg demuxer, on its own, needs to know which of the three formats are enabled, or it will not be able to properly decode them.

With this change, only one plugin will need to load and know about Xiph formats and libraries.

--HG--
rename : src/demuxers/demux_ogg.c =&gt; src/combined/xine_ogg_demuxer.c
rename : src/libxineadec/xine_speex_decoder.c =&gt; src/combined/xine_speex_decoder.c
rename : src/libxinevdec/xine_theora_decoder.c =&gt; src/combined/xine_theora_decoder.c
rename : src/libxineadec/xine_vorbis_decoder.c =&gt; src/combined/xine_vorbis_decoder.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As the three decoders requires Ogg support, and requires an Ogg demuxer to play, enabling any one of them will then enable the ogg demuxer.

The Ogg demuxer, on its own, needs to know which of the three formats are enabled, or it will not be able to properly decode them.

With this change, only one plugin will need to load and know about Xiph formats and libraries.

--HG--
rename : src/demuxers/demux_ogg.c =&gt; src/combined/xine_ogg_demuxer.c
rename : src/libxineadec/xine_speex_decoder.c =&gt; src/combined/xine_speex_decoder.c
rename : src/libxinevdec/xine_theora_decoder.c =&gt; src/combined/xine_theora_decoder.c
rename : src/libxineadec/xine_vorbis_decoder.c =&gt; src/combined/xine_vorbis_decoder.c
</pre>
</div>
</content>
</entry>
<entry>
<title>More configure/Makefile cleanups</title>
<updated>2007-05-12T18:18:38+00:00</updated>
<author>
<name>Matt Messier</name>
<email>mmessier@grapetv.org</email>
</author>
<published>2007-05-12T18:18:38+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=aa6b402b7a240b6f55c063b021c5c211f46ec8bd'/>
<id>aa6b402b7a240b6f55c063b021c5c211f46ec8bd</id>
<content type='text'>
-- Make a pass at cleaning up contrib/ Makefile.am files
-- Rename many AM_CONDITIONALS for consistency and give them better names to
   better indicate what they mean
-- Remove some dead input plugin tests
-- Clean up AM_PATH_DVDNAV
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-- Make a pass at cleaning up contrib/ Makefile.am files
-- Rename many AM_CONDITIONALS for consistency and give them better names to
   better indicate what they mean
-- Remove some dead input plugin tests
-- Clean up AM_PATH_DVDNAV
</pre>
</div>
</content>
</entry>
<entry>
<title>Another round of Makefile.am cleanups</title>
<updated>2007-05-11T23:28:18+00:00</updated>
<author>
<name>Matt Messier</name>
<email>mmessier@grapetv.org</email>
</author>
<published>2007-05-11T23:28:18+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=67b0ebb21185cb8ea2972dead6870bab8306724e'/>
<id>67b0ebb21185cb8ea2972dead6870bab8306724e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>RIP: AC_OPTIMIZATIONS</title>
<updated>2007-05-08T04:03:41+00:00</updated>
<author>
<name>Matt Messier</name>
<email>mmessier@grapetv.org</email>
</author>
<published>2007-05-08T04:03:41+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=3736bbc56bd4cf5b0326a2d14a370f11e58ead83'/>
<id>3736bbc56bd4cf5b0326a2d14a370f11e58ead83</id>
<content type='text'>
-- Removed m4/optimizations.m4, and along with it, AC_OPTIMIZATIONS.
-- Stripped down, cleaned up, and merged the former together with other compiler
   characteristic checks.
-- Do not set any optimization flags into CFLAGS.  Update all Makefile.am's with
   proper AM_CFLAGS, AM_CPPFLAGS, AM_LDFLAGS, etc. to set up optimization flags,
   usually from DEFAULT_OCFLAGS.
-- Start cleaning up CFLAGS/CPPFLAGS stuff in Makefile.am's all over the place.
-- Correct a number of places where CFLAGS itself was being mangled in
   Makefile to on-the-fly adjust optimizations to work around compiler bugs.
   This stuff is now done correctly.
-- The run of automake from autogen.sh is now clean of warnings.
-- Cleaned out some (now) dead macros from m4/_xine.m4
-- Mac OS X intel builds out-of-the-box now -- dropped optimization on
   post/deinterlace/plugins/kdetv-greedyh to O1_CFLAGS.
-- OBJCFLAGS is now getting set correctly everywhere that it needs to be
-- Various other miscellaneous cleanups all over
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-- Removed m4/optimizations.m4, and along with it, AC_OPTIMIZATIONS.
-- Stripped down, cleaned up, and merged the former together with other compiler
   characteristic checks.
-- Do not set any optimization flags into CFLAGS.  Update all Makefile.am's with
   proper AM_CFLAGS, AM_CPPFLAGS, AM_LDFLAGS, etc. to set up optimization flags,
   usually from DEFAULT_OCFLAGS.
-- Start cleaning up CFLAGS/CPPFLAGS stuff in Makefile.am's all over the place.
-- Correct a number of places where CFLAGS itself was being mangled in
   Makefile to on-the-fly adjust optimizations to work around compiler bugs.
   This stuff is now done correctly.
-- The run of automake from autogen.sh is now clean of warnings.
-- Cleaned out some (now) dead macros from m4/_xine.m4
-- Mac OS X intel builds out-of-the-box now -- dropped optimization on
   post/deinterlace/plugins/kdetv-greedyh to O1_CFLAGS.
-- OBJCFLAGS is now getting set correctly everywhere that it needs to be
-- Various other miscellaneous cleanups all over
</pre>
</div>
</content>
</entry>
<entry>
<title>Move the Theora decoder from libtheora to libxinevdec, as it's a single file.</title>
<updated>2007-04-04T20:14:43+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-04-04T20:14:43+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=961c91517ea9f2b8342b1f84e9afeb1afbf89ce8'/>
<id>961c91517ea9f2b8342b1f84e9afeb1afbf89ce8</id>
<content type='text'>
--HG--
rename : src/libtheora/xine_decoder.c =&gt; src/libxinevdec/xine_theora_decoder.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
rename : src/libtheora/xine_decoder.c =&gt; src/libxinevdec/xine_theora_decoder.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup makefile, use the -Wl,-z,defs option if supported, use visibility flag, removes three symbols from bitplane plugin.</title>
<updated>2007-03-17T16:26:39+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2007-03-17T16:26:39+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=fa01477d6d284d2af32927c42908394954f56260'/>
<id>fa01477d6d284d2af32927c42908394954f56260</id>
<content type='text'>
CVS patchset: 8705
CVS date: 2007/03/17 16:26:39

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 8705
CVS date: 2007/03/17 16:26:39

</pre>
</div>
</content>
</entry>
<entry>
<title>Don't use WAND_CPPFLAGS and WAND_LDFLAGS.</title>
<updated>2006-09-14T13:35:38+00:00</updated>
<author>
<name>Diego 'Flameeyes' Pettenò</name>
<email>flameeyes@gmail.com</email>
</author>
<published>2006-09-14T13:35:38+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=48bcaac1a585f2cd2eaf15ec9d187cced168f3e1'/>
<id>48bcaac1a585f2cd2eaf15ec9d187cced168f3e1</id>
<content type='text'>
CVS patchset: 8256
CVS date: 2006/09/14 13:35:38

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 8256
CVS date: 2006/09/14 13:35:38

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