summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2007-07-11 14:07:55 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2007-07-11 14:07:55 +0000
commit4b54c6d08437e5e3dd9359f29b247be58fef965f (patch)
tree1b2f9b0c4a8bf6ebc80e1cb30ad741747de0b0bc /ffmpeg.c
parente16e49ac90f6da9e019fdf23084cbb256d14bd9c (diff)
Check for termios before conio
Originally committed as revision 9598 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 766c6068b0..d5cc28a25c 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -34,15 +34,15 @@
#include "fifo.h"
#include "avstring.h"
-#if defined(HAVE_CONIO_H)
-#include <conio.h>
-#elif defined(HAVE_TERMIOS_H)
+#if defined(HAVE_TERMIOS_H)
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <termios.h>
#include <sys/resource.h>
+#elif defined(HAVE_CONIO_H)
+#include <conio.h>
#endif
#undef time //needed because HAVE_AV_CONFIG_H is defined on top
#include <time.h>
@@ -334,10 +334,7 @@ static void term_init(void)
/* read a key without blocking */
static int read_key(void)
{
-#if defined(HAVE_CONIO_H)
- if(kbhit())
- return(getch());
-#elif defined(HAVE_TERMIOS_H)
+#if defined(HAVE_TERMIOS_H)
int n = 1;
unsigned char ch;
#ifndef CONFIG_BEOS_NETSERVER
@@ -357,6 +354,9 @@ static int read_key(void)
return n;
}
+#elif defined(HAVE_CONIO_H)
+ if(kbhit())
+ return(getch());
#endif
return -1;
}