aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2002-03-08 09:09:57 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-03-08 09:09:57 +0000
commitef0bc4c97f1ad704c0d6322775902c5d62adf546 (patch)
treec672090feb047ee57a31a9c4dd77485bdb478c5a /ffmpeg.c
parent73c8e5144af3f90ccb21fa1d058ae02b3394aab0 (diff)
downloadffmpeg-ef0bc4c97f1ad704c0d6322775902c5d62adf546.tar.gz
* BeOS patch by François Revol <revol@free.fr>
fixing some compilation problems Originally committed as revision 319 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 5d5431cf26..b885066ef4 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1801,6 +1801,7 @@ void prepare_grab(void)
/* open the necessary output devices for playing */
void prepare_play(void)
{
+#ifndef __BEOS__
file_format = guess_format("audio_device", NULL, NULL);
if (!file_format) {
fprintf(stderr, "Could not find audio device\n");
@@ -1808,6 +1809,7 @@ void prepare_play(void)
}
opt_output_file(audio_device);
+#endif
}