Commit 8fa020c3 authored by michael's avatar michael

threadless threads warning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2776 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ad7b6a50
...@@ -2036,6 +2036,9 @@ static void opt_sc_threshold(const char *arg) ...@@ -2036,6 +2036,9 @@ static void opt_sc_threshold(const char *arg)
static void opt_thread_count(const char *arg) static void opt_thread_count(const char *arg)
{ {
thread_count= atoi(arg); thread_count= atoi(arg);
#ifndef HAVE_PTHREADS
fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n");
#endif
} }
static void opt_audio_bitrate(const char *arg) static void opt_audio_bitrate(const char *arg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment