diff options
author | François Revol <revol@free.fr> | 2002-03-08 09:09:57 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-03-08 09:09:57 +0000 |
commit | ef0bc4c97f1ad704c0d6322775902c5d62adf546 (patch) | |
tree | c672090feb047ee57a31a9c4dd77485bdb478c5a /ffmpeg.c | |
parent | 73c8e5144af3f90ccb21fa1d058ae02b3394aab0 (diff) | |
download | ffmpeg-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 } |