<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xine-lib/src/audio_out, branch 1.1.20</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>Removed unneeded data from oss_driver_s</title>
<updated>2011-10-10T07:33:43+00:00</updated>
<author>
<name>Petri Hintukainen</name>
<email>phintuka@users.sourceforge.net</email>
</author>
<published>2011-10-10T07:33:43+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=16ff7e67b49f70455400c5c0b8df2342a0a1c95f'/>
<id>16ff7e67b49f70455400c5c0b8df2342a0a1c95f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>audio_oss_out.c: fixed 'bytes_left' may be used uninitialized in this function</title>
<updated>2011-10-09T22:02:50+00:00</updated>
<author>
<name>Petri Hintukainen</name>
<email>phintuka@users.sourceforge.net</email>
</author>
<published>2011-10-09T22:02:50+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=a9d6c6fd90a5ebea3cec13bc63b8a6f435dbb6f9'/>
<id>a9d6c6fd90a5ebea3cec13bc63b8a6f435dbb6f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed small typo in src/audio_out/audio_directx2_out (LP #810407)</title>
<updated>2011-07-18T22:03:52+00:00</updated>
<author>
<name>Kent Baxley</name>
<email>kb4xley@gmail.com</email>
</author>
<published>2011-07-18T22:03:52+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=4864ff1ba7deb51d90ac82c2c55cb21ecc47f63e'/>
<id>4864ff1ba7deb51d90ac82c2c55cb21ecc47f63e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefix open_cloexec() and create_cloexec() with xine_, and add new xine_socket_cloexec() function.</title>
<updated>2011-10-03T11:11:56+00:00</updated>
<author>
<name>Chris Rankin</name>
<email>rankincj@yahoo.com</email>
</author>
<published>2011-10-03T11:11:56+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=5db268a002e7a102855e84a3ff5e1c27ca7cb927'/>
<id>5db268a002e7a102855e84a3ff5e1c27ca7cb927</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark simple file and socket descriptors as uninheritable.</title>
<updated>2011-10-01T13:14:27+00:00</updated>
<author>
<name>Chris Rankin</name>
<email>rankincj@yahoo.com</email>
</author>
<published>2011-10-01T13:14:27+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=62a669d9f04e83debe729347617a935707badc7e'/>
<id>62a669d9f04e83debe729347617a935707badc7e</id>
<content type='text'>
This patch creates two utility functions:

  int open_cloexec(pathname, flags)
  int create_cloexec(pathname, flags, mode)

These return a file descriptor with the CLOEXEC flag set, to ensure
that the descriptor is not inherited across a fork/exec operation.

The sockets returned by:

   _x_io_tcp_connect_ipv4()
   _x_io_tcp_connect()

now also have their CLOEXEC flag set.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch creates two utility functions:

  int open_cloexec(pathname, flags)
  int create_cloexec(pathname, flags, mode)

These return a file descriptor with the CLOEXEC flag set, to ensure
that the descriptor is not inherited across a fork/exec operation.

The sockets returned by:

   _x_io_tcp_connect_ipv4()
   _x_io_tcp_connect()

now also have their CLOEXEC flag set.
</pre>
</div>
</content>
</entry>
<entry>
<title>mingw32-w64 port: '-no-undefined' part</title>
<updated>2010-10-23T11:18:24+00:00</updated>
<author>
<name>František Dvořák</name>
<email>valtri@civ.zcu.cz</email>
</author>
<published>2010-10-23T11:18:24+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=2af0f16f1fdadf1e85493f8506d441df09199fa6'/>
<id>2af0f16f1fdadf1e85493f8506d441df09199fa6</id>
<content type='text'>
- use -no-undefined flag only for building shared libraries (libxine, plugins)
- plugins LDFLAGS unification
- move -no-undefined into LDFLAGS_NOUNDEFINED
- attributes.m4 fix
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- use -no-undefined flag only for building shared libraries (libxine, plugins)
- plugins LDFLAGS unification
- move -no-undefined into LDFLAGS_NOUNDEFINED
- attributes.m4 fix
</pre>
</div>
</content>
</entry>
<entry>
<title>Pulseaudio volume control feedback (stream end)</title>
<updated>2010-08-21T16:20:22+00:00</updated>
<author>
<name>Günter Merz</name>
<email>lotan_rm@hotmail.com</email>
</author>
<published>2010-08-21T16:20:22+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=7aa4e6782cd2e28c3d57d30959e408bdc5e75ba0'/>
<id>7aa4e6782cd2e28c3d57d30959e408bdc5e75ba0</id>
<content type='text'>
During channel changes, the audio stream ends and a new stream begins. This
in turn can lead to 'pa_stream_get_index' ending up in an assertion. Because
of that, a check if there is a stream is a good idea.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
During channel changes, the audio stream ends and a new stream begins. This
in turn can lead to 'pa_stream_get_index' ending up in an assertion. Because
of that, a check if there is a stream is a good idea.
</pre>
</div>
</content>
</entry>
<entry>
<title>Pulseaudio volume control feedback</title>
<updated>2010-08-18T18:28:38+00:00</updated>
<author>
<name>Günter Merz</name>
<email>lotan_rm@hotmail.com</email>
</author>
<published>2010-08-18T18:28:38+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=8f646f0599963b54439616cc7bb6059bde455a38'/>
<id>8f646f0599963b54439616cc7bb6059bde455a38</id>
<content type='text'>
If xine volume is changed from outside the xine frontend, e.g. gnome sound
preferences. xine-lib generates a XINE_EVENT_AUDIO_LEVEL event that
fontends (like xine-ui) can use to update the volume level.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If xine volume is changed from outside the xine frontend, e.g. gnome sound
preferences. xine-lib generates a XINE_EVENT_AUDIO_LEVEL event that
fontends (like xine-ui) can use to update the volume level.
</pre>
</div>
</content>
</entry>
<entry>
<title>Spelling fixes.</title>
<updated>2010-07-29T19:53:14+00:00</updated>
<author>
<name>Darren Salt</name>
<email>linux@youmustbejoking.demon.co.uk</email>
</author>
<published>2010-07-29T19:53:14+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=ba47a8161c17196ad8e27e96c396f2e0083edb07'/>
<id>ba47a8161c17196ad8e27e96c396f2e0083edb07</id>
<content type='text'>
Source: informational messages generated by lintian.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Source: informational messages generated by lintian.
</pre>
</div>
</content>
</entry>
<entry>
<title>Set default volume value at init time (pulseaudio)</title>
<updated>2010-07-08T16:53:06+00:00</updated>
<author>
<name>Lorenzo Desole</name>
<email>lorenzodes@fastwebnet.it</email>
</author>
<published>2010-07-08T16:53:06+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/xine-lib/commit/?id=88f548126c320ce5ad580d5c2441c972a6041254'/>
<id>88f548126c320ce5ad580d5c2441c972a6041254</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
