From: John Koleszar Date: Wed, 27 Oct 2010 14:08:17 +0000 (-0400) Subject: vpxdec: don't require -o with --noblit X-Git-Tag: v0.9.5~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24c86055c386a90158cc24cbaed2f72773120acb;p=libvpx vpxdec: don't require -o with --noblit Specifiying the output file is meaningless when we're not writing to it. Change-Id: I271e1d3ae1994d79f0773747477124600f98ca58 --- diff --git a/vpxdec.c b/vpxdec.c index 79b8c6292..48a36cd65 100644 --- a/vpxdec.c +++ b/vpxdec.c @@ -813,7 +813,7 @@ int main(int argc, const char **argv_) } /* Make sure we don't dump to the terminal, unless forced to with -o - */ - if(!outfile_pattern && isatty(fileno(stdout)) && !do_md5) + if(!outfile_pattern && isatty(fileno(stdout)) && !do_md5 && !noblit) { fprintf(stderr, "Not dumping raw video to your terminal. Use '-o -' to "