diff options
author | François Revol <revol@free.fr> | 2004-11-21 18:04:56 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2004-11-21 18:04:56 +0000 |
commit | 2450cff2c3317b589575fc99dce26ddc605883ee (patch) | |
tree | 0b049eeea1ed936883e21889abaf8792930b5fa4 /ffmpeg.c | |
parent | 7a57b90c335c4c3e64ba6cdacfb9869773adb8b0 (diff) | |
download | ffmpeg-2450cff2c3317b589575fc99dce26ddc605883ee.tar.gz |
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
Originally committed as revision 3702 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2555,7 +2555,7 @@ static void opt_me_range(const char *arg) static void opt_thread_count(const char *arg) { thread_count= atoi(arg); -#if !defined(HAVE_PTHREADS) && !defined(HAVE_W32THREADS) +#if !defined(HAVE_THREADS) if (verbose >= 0) fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n"); #endif @@ -2825,7 +2825,7 @@ static void opt_input_file(const char *filename) /* update the current parameters so that they match the one of the input stream */ for(i=0;i<ic->nb_streams;i++) { AVCodecContext *enc = &ic->streams[i]->codec; -#if defined(HAVE_PTHREADS) || defined(HAVE_W32THREADS) +#if defined(HAVE_THREADS) if(thread_count>1) avcodec_thread_init(enc, thread_count); #endif @@ -2992,7 +2992,7 @@ static void opt_output_file(const char *filename) fprintf(stderr, "Could not alloc stream\n"); exit(1); } -#if defined(HAVE_PTHREADS) || defined(HAVE_W32THREADS) +#if defined(HAVE_THREADS) if(thread_count>1) avcodec_thread_init(&st->codec, thread_count); #endif @@ -3244,7 +3244,7 @@ static void opt_output_file(const char *filename) fprintf(stderr, "Could not alloc stream\n"); exit(1); } -#if defined(HAVE_PTHREADS) || defined(HAVE_W32THREADS) +#if defined(HAVE_THREADS) if(thread_count>1) avcodec_thread_init(&st->codec, thread_count); #endif |