Make sure the first q press doesnt f*ck up the protocols and thus written files.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-03-07 17:25:38 +01:00
parent 9055240761
commit 8993b5969a

View File

@ -509,7 +509,8 @@ static int read_key(void)
static int decode_interrupt_cb(void)
{
return q_pressed || (q_pressed = read_key() == 'q');
q_pressed += read_key() == 'q';
return q_pressed > 1;
}
static int ffmpeg_exit(int ret)