<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src, branch 1-rc3c</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>make that a define to improve maintainability</title>
<updated>2004-04-08T13:37:54+00:00</updated>
<author>
<name>Michael Roitzsch</name>
<email>mroi@users.sourceforge.net</email>
</author>
<published>2004-04-08T13:37:54+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=05778635e41665a615230c029d49b58de0a4b858'/>
<id>05778635e41665a615230c029d49b58de0a4b858</id>
<content type='text'>
CVS patchset: 6350
CVS date: 2004/04/08 13:37:54

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 6350
CVS date: 2004/04/08 13:37:54

</pre>
</div>
</content>
</entry>
<entry>
<title>Degrease jerking with OGM subtitles.</title>
<updated>2004-04-08T11:10:10+00:00</updated>
<author>
<name>František Dvořák</name>
<email>valtri@users.sourceforge.net</email>
</author>
<published>2004-04-08T11:10:10+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=1a9a587144539c3a706d5a6d82f58bc07d3eecdf'/>
<id>1a9a587144539c3a706d5a6d82f58bc07d3eecdf</id>
<content type='text'>
CVS patchset: 6348
CVS date: 2004/04/08 11:10:10

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 6348
CVS date: 2004/04/08 11:10:10

</pre>
</div>
</content>
</entry>
<entry>
<title>fix compiler warnings</title>
<updated>2004-04-07T19:44:29+00:00</updated>
<author>
<name>Michael Roitzsch</name>
<email>mroi@users.sourceforge.net</email>
</author>
<published>2004-04-07T19:44:29+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=7a6a690fb697a888f38df7b1ceac27c756570fb4'/>
<id>7a6a690fb697a888f38df7b1ceac27c756570fb4</id>
<content type='text'>
CVS patchset: 6345
CVS date: 2004/04/07 19:44:29

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 6345
CVS date: 2004/04/07 19:44:29

</pre>
</div>
</content>
</entry>
<entry>
<title>+\n</title>
<updated>2004-04-07T19:35:38+00:00</updated>
<author>
<name>Philipp Hahn</name>
<email>pmhahn@users.sourceforge.net</email>
</author>
<published>2004-04-07T19:35:38+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=9317450b8614ebd51c4e6bf8bc362fded6449268'/>
<id>9317450b8614ebd51c4e6bf8bc362fded6449268</id>
<content type='text'>
CVS patchset: 6344
CVS date: 2004/04/07 19:35:38

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 6344
CVS date: 2004/04/07 19:35:38

</pre>
</div>
</content>
</entry>
<entry>
<title>Michael's patch for improving playback with subtitles, fix the long seeking.</title>
<updated>2004-04-07T18:10:20+00:00</updated>
<author>
<name>František Dvořák</name>
<email>valtri@users.sourceforge.net</email>
</author>
<published>2004-04-07T18:10:20+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=ef959e21c2fb8688ff2bfcf7758e9323be8b65f7'/>
<id>ef959e21c2fb8688ff2bfcf7758e9323be8b65f7</id>
<content type='text'>
CVS patchset: 6342
CVS date: 2004/04/07 18:10:20

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 6342
CVS date: 2004/04/07 18:10:20

</pre>
</div>
</content>
</entry>
<entry>
<title>the patch to audio_out from 1.128 to 1.129 changed a calculation from</title>
<updated>2004-04-07T18:07:25+00:00</updated>
<author>
<name>Michael Roitzsch</name>
<email>mroi@users.sourceforge.net</email>
</author>
<published>2004-04-07T18:07:25+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=25bbdcdc14a1a470c405882368ff9466ba418b6e'/>
<id>25bbdcdc14a1a470c405882368ff9466ba418b6e</id>
<content type='text'>
x = a / b + c
to
y = b + c
x = a / y
which is wrong and breaks the resampling sync method; changing to
y = a / b
x = y + c
should fix; thanks to Carsten Weinhold for the patch

CVS patchset: 6341
CVS date: 2004/04/07 18:07:25

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
x = a / b + c
to
y = b + c
x = a / y
which is wrong and breaks the resampling sync method; changing to
y = a / b
x = y + c
should fix; thanks to Carsten Weinhold for the patch

CVS patchset: 6341
CVS date: 2004/04/07 18:07:25

</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare for MinGW port:</title>
<updated>2004-04-06T19:20:15+00:00</updated>
<author>
<name>František Dvořák</name>
<email>valtri@users.sourceforge.net</email>
</author>
<published>2004-04-06T19:20:15+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=21aa4eed6d0e90f9a9b548c1adaad7dccf2f4862'/>
<id>21aa4eed6d0e90f9a9b548c1adaad7dccf2f4862</id>
<content type='text'>
  move M$VC specific header files into sparate directory
  regenerate config.h for M$VC
  compilation fixes
  add some getchar()s into xineui.exe (popup dialogs would be better)

CVS patchset: 6338
CVS date: 2004/04/06 19:20:15

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  move M$VC specific header files into sparate directory
  regenerate config.h for M$VC
  compilation fixes
  add some getchar()s into xineui.exe (popup dialogs would be better)

CVS patchset: 6338
CVS date: 2004/04/06 19:20:15

</pre>
</div>
</content>
</entry>
<entry>
<title>Patch for using timeout in cddb lookup (xine was freezed just because of firewall!!!).</title>
<updated>2004-04-06T18:40:32+00:00</updated>
<author>
<name>František Dvořák</name>
<email>valtri@users.sourceforge.net</email>
</author>
<published>2004-04-06T18:40:32+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=81de862996c8af79e73f550b0160e9c091722a71'/>
<id>81de862996c8af79e73f550b0160e9c091722a71</id>
<content type='text'>
New functions into io_helper:
  _x_io_tcp_connect_finish ... wait for successful connect with timeout
  _x_io_tcp_read_line ... read the string from the socket (improvements neded)
Use io_helper functions in input_cdda.
Don't try connect again to freedb server, if previous connecting was failed.

CVS patchset: 6337
CVS date: 2004/04/06 18:40:32

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
New functions into io_helper:
  _x_io_tcp_connect_finish ... wait for successful connect with timeout
  _x_io_tcp_read_line ... read the string from the socket (improvements neded)
Use io_helper functions in input_cdda.
Don't try connect again to freedb server, if previous connecting was failed.

CVS patchset: 6337
CVS date: 2004/04/06 18:40:32

</pre>
</div>
</content>
</entry>
<entry>
<title>comment #define LOG</title>
<updated>2004-04-06T06:45:47+00:00</updated>
<author>
<name>Thibaut Mattern</name>
<email>tmattern@users.sourceforge.net</email>
</author>
<published>2004-04-06T06:45:47+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=97ea1a1a3bf93b3fd47fa2aa69ca7a9cc47ba7bf'/>
<id>97ea1a1a3bf93b3fd47fa2aa69ca7a9cc47ba7bf</id>
<content type='text'>
CVS patchset: 6336
CVS date: 2004/04/06 06:45:47

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 6336
CVS date: 2004/04/06 06:45:47

</pre>
</div>
</content>
</entry>
<entry>
<title>Use 64 bits to compute current pos.</title>
<updated>2004-04-06T06:43:05+00:00</updated>
<author>
<name>Thibaut Mattern</name>
<email>tmattern@users.sourceforge.net</email>
</author>
<published>2004-04-06T06:43:05+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=c6f5f3a9a559ef38dc5b20ef53a863eb49a3d0b1'/>
<id>c6f5f3a9a559ef38dc5b20ef53a863eb49a3d0b1</id>
<content type='text'>
CVS patchset: 6335
CVS date: 2004/04/06 06:43:05

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CVS patchset: 6335
CVS date: 2004/04/06 06:43:05

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