diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-10 14:53:42 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-10 14:53:42 +0000 |
commit | ff5c5208ea05402db639909336291ce940c13ec8 (patch) | |
tree | 37f5e9a40609eb58b363d48f81a7093879e39890 /src/audio_out/audio_esd_out.c | |
parent | 9801b78107b8e71c30a1033703490ecfd1379439 (diff) | |
download | xine-lib-ff5c5208ea05402db639909336291ce940c13ec8.tar.gz xine-lib-ff5c5208ea05402db639909336291ce940c13ec8.tar.bz2 |
improving config help strings
* for alsa: do not register config entries multiple times just to get the value,
use lookup_entry()
* for directx: get rid of unused device_name
* for OSS: remove mixer config, derive mixer name from device name
CVS patchset: 6379
CVS date: 2004/04/10 14:53:42
Diffstat (limited to 'src/audio_out/audio_esd_out.c')
-rw-r--r-- | src/audio_out/audio_esd_out.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/audio_out/audio_esd_out.c b/src/audio_out/audio_esd_out.c index 1eab49728..42c1fd3e0 100644 --- a/src/audio_out/audio_esd_out.c +++ b/src/audio_out/audio_esd_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_esd_out.c,v 1.29 2003/12/14 22:13:22 siggi Exp $ + * $Id: audio_esd_out.c,v 1.30 2004/04/10 14:53:43 mroi Exp $ */ #ifdef HAVE_CONFIG_H @@ -534,7 +534,12 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, this->latency = config->register_range (config, "audio.esd_latency", 0, -30000, 90000, _("esd audio output latency (adjust a/v sync)"), - NULL, 0, NULL, NULL); + _("If you experience audio being not in sync " + "with the video, you can enter a fixed offset " + "here to compensate.\nThe unit of the value " + "is one PTS tick, which is the 90000th part " + "of a second."), + 10, NULL, NULL); this->ao_driver.get_capabilities = ao_esd_get_capabilities; this->ao_driver.get_property = ao_esd_get_property; |