diff options
author | François Revol <revol@free.fr> | 2003-02-12 21:38:38 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2003-02-12 21:38:38 +0000 |
commit | 3f07e60546c70ff5b78131266b3ab38917ae0f5a (patch) | |
tree | 3df9f4da73184f53be660e42e89197857275dd5a /ffmpeg.c | |
parent | 244b86134b3b8510034782e62273a393326f1ba7 (diff) | |
download | ffmpeg-3f07e60546c70ff5b78131266b3ab38917ae0f5a.tar.gz |
fix for legacy audio
Originally committed as revision 1583 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2513,7 +2513,7 @@ static void prepare_play(void) fprintf(stderr, "Could not find audio device\n"); exit(1); } - opt_output_file(audio_device?audio_device:"/dev/dsp0"); + opt_output_file(audio_device?audio_device:"/dev/dsp"); } if (has_video) { |