[FFmpeg-devel] [PATCH] vp9: fix compilation with threading disabled.
Ronald S. Bultje
rsbultje at gmail.com
Sat Sep 9 19:13:01 EEST 2017
---
libavcodec/vp9.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c
index a71045e..499f357 100644
--- a/libavcodec/vp9.c
+++ b/libavcodec/vp9.c
@@ -1599,7 +1599,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
s->td[i].uveob[1] = s->td[i].uveob_base[1];
}
- if (avctx->active_thread_type == FF_THREAD_SLICE) {
+ if (HAVE_THREADS && avctx->active_thread_type == FF_THREAD_SLICE) {
int tile_row, tile_col;
assert(!pass);
--
2.8.1
More information about the ffmpeg-devel
mailing list