diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-08-28 16:42:07 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-08-28 16:42:07 +0000 |
commit | 6164a66f89ad267257b39c21cb6b8c5f450195f6 (patch) | |
tree | baece0136e76e955262b3e9687aff445e6b165cb /src/audio_out | |
parent | efb4fbd60e48c76fb91ab31d588d58aade888fef (diff) | |
download | xine-lib-6164a66f89ad267257b39c21cb6b8c5f450195f6.tar.gz xine-lib-6164a66f89ad267257b39c21cb6b8c5f450195f6.tar.bz2 |
Fix bug in demux_mpeg_pes.c
Make sure it waits for a "program_stream_pack_header"
before demuxing anything else.
CVS patchset: 5315
CVS date: 2003/08/28 16:42:07
Diffstat (limited to 'src/audio_out')
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index 934314618..4f43ff793 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -26,7 +26,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.102 2003/08/26 02:37:21 jcdutton Exp $ + * $Id: audio_alsa_out.c,v 1.103 2003/08/28 16:42:07 jcdutton Exp $ */ #ifdef HAVE_CONFIG_H @@ -376,7 +376,7 @@ static int ao_alsa_open(ao_driver_t *this_gen, uint32_t bits, uint32_t rate, int */ err=snd_pcm_open(&this->audio_fd, pcm_device, direction, open_mode); if(err <0 ) { - printf ("audio_alsa_out: snd_pcm_open() failed: %s\n", snd_strerror(err)); + printf ("audio_alsa_out: snd_pcm_open() of %s failed: %s\n", pcm_device, snd_strerror(err)); printf ("audio_alsa_out: >>> check if another program don't already use PCM <<<\n"); return 0; } |