mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
avcodec: move "thread emulation" warning to common code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
391b1e3911
commit
838e36635a
3
ffplay.c
3
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;
|
||||
}
|
||||
|
||||
|
@ -576,6 +576,9 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVD
|
||||
}
|
||||
avctx->frame_number = 0;
|
||||
|
||||
if (!HAVE_THREADS)
|
||||
av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
|
||||
|
||||
if (HAVE_THREADS && !avctx->thread_opaque) {
|
||||
ret = ff_thread_init(avctx);
|
||||
if (ret < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user