diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-10-03 15:21:29 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-10-03 15:21:29 +0000 |
commit | 1e93f797a940fae1d7fc9ccb60d333a0c1a8995d (patch) | |
tree | 5b53d78e9b1f0a66dd9a4f4b9296b2a557a9321c /src | |
parent | b1ef311727d5c87eac4b6073f51a6160de5def0f (diff) | |
download | xine-lib-1e93f797a940fae1d7fc9ccb60d333a0c1a8995d.tar.gz xine-lib-1e93f797a940fae1d7fc9ccb60d333a0c1a8995d.tar.bz2 |
A test "pointer < 0" does not make sense; removed.
CVS patchset: 727
CVS date: 2001/10/03 15:21:29
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/audio_out.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index 27fb336b2..6f1b8fa19 100644 --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -17,7 +17,7 @@ * along with self program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_out.c,v 1.18 2001/10/01 23:04:57 f1rmb Exp $ + * $Id: audio_out.c,v 1.19 2001/10/03 15:21:29 jkeil Exp $ * * 22-8-2001 James imported some useful AC3 sections from the previous alsa driver. * (c) 2001 Andy Lo A Foe <andy@alsaplayer.org> @@ -241,9 +241,6 @@ static int ao_write(ao_instance_t *this, uint8_t *data; uint32_t cur_time; - if (this->driver<0) - return 1; - vpts = this->metronom->got_audio_samples (this->metronom, pts, num_frames); xprintf (VERBOSE|AUDIO, "audio_out: got %d frames, vpts=%d pts=%d\n", |