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_irixal_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_irixal_out.c')
-rw-r--r-- | src/audio_out/audio_irixal_out.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/audio_out/audio_irixal_out.c b/src/audio_out/audio_irixal_out.c index 86db2f8db..be0c2c577 100644 --- a/src/audio_out/audio_irixal_out.c +++ b/src/audio_out/audio_irixal_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_irixal_out.c,v 1.10 2003/12/09 00:02:29 f1rmb Exp $ + * $Id: audio_irixal_out.c,v 1.11 2004/04/10 14:53:43 mroi Exp $ */ #ifdef HAVE_CONFIG_H @@ -382,8 +382,12 @@ static void *init_audio_out_plugin (config_values_t *config) /* TODO: anything can change during runtime... move check to the right location */ this->gap_tolerance = config->register_range (config, "audio.irixal_gap_tolerance", DEFAULT_GAP_TOLERANCE, 0, 90000, - _("irixal audio output maximum gap length in 1/90000s"), - NULL, NULL, NULL); + _("irixal audio output maximum gap length"), + _("You can specify the maximum offset between audio " + "and video xine will tolerate before trying to " + "resync them.\nThe unit of this value is one PTS tick, " + "which is the 90000th part of a second."), + 30, NULL, NULL); this->ao_driver.get_capabilities = ao_irixal_get_capabilities; this->ao_driver.get_property = ao_irixal_get_property; |