ffmpeg: modify tty state when stderr is redirected

This fixes Ticket2964

Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Ganesh Ajjanagadde 2015-07-27 09:56:25 -04:00 committed by Michael Niedermayer
parent 1919827f2c
commit 92e62f49cf
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ void term_init(void)
struct termios tty;
int istty = 1;
#if HAVE_ISATTY
istty = isatty(0) && isatty(2);
istty = isatty(0);
#endif
if (istty && tcgetattr (0, &tty) == 0) {
oldtty = tty;