summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-13 14:40:13 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-13 15:05:42 +0200
commit838e36635ab5be523037bd6064573299f3936a37 (patch)
tree2c5aae2331d3970e978e9c66f07137398384e54e /ffplay.c
parent391b1e391187c30ae0e3bad9c0e9c40df18785bf (diff)
avcodec: move "thread emulation" warning to common code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ffplay.c b/ffplay.c
index 8123f4375f..9d21714815 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2890,9 +2890,6 @@ static int opt_duration(const char *opt, const char *arg)
static int opt_thread_count(const char *opt, const char *arg)
{
thread_count= parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
-#if !HAVE_THREADS
- fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n");
-#endif
return 0;
}