This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
fix for using ffplay without specifying the audio device
Originally committed as revision 1555 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
François Revol
22 years ago
parent
cfadadecd8
commit
04bbd31b9f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
ffmpeg.c
+ 1
- 1
ffmpeg.c
View File
@@ -2513,7 +2513,7 @@ void prepare_play(void)
fprintf(stderr, "Could not find audio device\n");
exit(1);
}
opt_output_file(audio_device);
opt_output_file(audio_device
?audio_device:"/dev/dsp0"
);
}
if (has_video) {
Write
Preview
Loading…
Cancel
Save