diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-06 14:19:12 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-06 14:19:12 +0000 |
commit | 729790ceff885dde6a8a1c0bc834c347f14ac494 (patch) | |
tree | 03ab8f1787cb9e40cc402946e65d1ce605947e8a /src | |
parent | 9164740390c2ed66091ae5573bfa04c423143699 (diff) | |
download | xine-lib-729790ceff885dde6a8a1c0bc834c347f14ac494.tar.gz xine-lib-729790ceff885dde6a8a1c0bc834c347f14ac494.tar.bz2 |
changes i forgot to commit with sound card drift patch. AO_MAX_GAP should
be used if driver can't provide realtime information for drift correction.
CVS patchset: 1685
CVS date: 2002/04/06 14:19:12
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_out/audio_arts_out.c | 6 | ||||
-rw-r--r-- | src/audio_out/audio_sun_out.c | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/audio_out/audio_arts_out.c b/src/audio_out/audio_arts_out.c index 6a98e6738..ce6afe4a4 100644 --- a/src/audio_out/audio_arts_out.c +++ b/src/audio_out/audio_arts_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_arts_out.c,v 1.9 2002/03/11 19:58:00 jkeil Exp $ + * $Id: audio_arts_out.c,v 1.10 2002/04/06 14:19:12 miguelfreitas Exp $ */ /* required for swab() */ @@ -46,9 +46,7 @@ #define AUDIO_NUM_FRAGMENTS 15 #define AUDIO_FRAGMENT_SIZE 8192 -/*#define GAP_TOLERANCE 5000 */ -#define GAP_TOLERANCE 15000 -#define MAX_GAP 90000 +#define GAP_TOLERANCE AO_MAX_GAP typedef struct arts_driver_s { diff --git a/src/audio_out/audio_sun_out.c b/src/audio_out/audio_sun_out.c index 9250e2228..1f3c735da 100644 --- a/src/audio_out/audio_sun_out.c +++ b/src/audio_out/audio_sun_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_sun_out.c,v 1.18 2002/03/11 19:58:01 jkeil Exp $ + * $Id: audio_sun_out.c,v 1.19 2002/04/06 14:19:12 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -59,7 +59,7 @@ #define AO_SUN_IFACE_VERSION 4 #define GAP_TOLERANCE 5000 -#define GAP_NONRT_TOLERANCE 15000 +#define GAP_NONRT_TOLERANCE AO_MAX_GAP #define NOT_REAL_TIME -1 |