/third_party/ffmpeg/tools/ |
H A D | venc_data_dump.c | 74 const char *filename, *thread_type = NULL, *nb_threads = NULL; in main() local 87 thread_type = argv[5]; in main() 98 ret |= av_dict_set(&dc.decoder_opts, "thread_type", thread_type, 0); in main()
|
/third_party/ffmpeg/libavcodec/ |
H A D | pthread.c | 58 } else if (frame_threading_supported && (avctx->thread_type & FF_THREAD_FRAME)) { in validate_thread_parameters() 61 avctx->thread_type & FF_THREAD_SLICE) { in validate_thread_parameters()
|
H A D | frame_thread_encoder.c | 141 if( !(avctx->thread_type & FF_THREAD_FRAME) in ff_frame_thread_encoder_init() 149 "Forcing thread count to 1 for MJPEG encoding, use -thread_type slice " in ff_frame_thread_encoder_init() 158 "using -threads 1, -thread_type slice or a constant quantizer.\n"); in ff_frame_thread_encoder_init()
|
H A D | avcodec.h | 1473 int thread_type; member
|
H A D | libx264.c | 903 if (avctx->thread_type) in X264_init() 904 x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE; in X264_init() 1202 { "thread_type", "0" },
|
H A D | decode.c | 1540 if ((avctx->thread_type & FF_THREAD_FRAME) && in ff_decode_preinit()
|
H A D | options_table.h | 357 {"thread_type", "select multithreading type", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, {.i64 = FF_THREAD_SLICE|FF_THREAD_FRAME }, 0, INT_MAX, V|A|E|D, "thread_type"}, 358 {"slice", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_THREAD_SLICE }, INT_MIN, INT_MAX, V|E|D, "thread_type"}, 359 {"frame", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_THREAD_FRAME }, INT_MIN, INT_MAX, V|E|D, "thread_type"},
|
/third_party/ffmpeg/libavfilter/ |
H A D | pthread.c | 88 graph->thread_type = 0; in ff_graph_thread_init() 99 graph->thread_type = 0; in ff_graph_thread_init()
|
H A D | avfilter.h | 436 * AVFilterGraph.thread_type to get the final mask used for determining 443 int thread_type; member 886 * bit AND with AVFilterContext.thread_type to get the final mask used for 890 int thread_type; member
|
H A D | avfilter.c | 608 { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, 609 { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, FLAGS, "thread_type" }, 610 { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .flags = FLAGS, .unit = "thread_type" }, 887 ctx->thread_type & ctx->graph->thread_type & AVFILTER_THREAD_SLICE && in avfilter_init_dict() 889 ctx->thread_type = AVFILTER_THREAD_SLICE; in avfilter_init_dict() 892 ctx->thread_type = 0; in avfilter_init_dict()
|
H A D | avfiltergraph.c | 48 { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, 49 { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, F|V|A, "thread_type" }, 50 { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .flags = F|V|A, .unit = "thread_type" }, 76 graph->thread_type = 0; in ff_graph_thread_init() 171 if (graph->thread_type && !graph->internal->thread_execute) { in avfilter_graph_alloc_filter()
|
/third_party/ffmpeg/tests/ |
H A D | fate-run.sh | 19 thread_type=${10:-frame+slice} 129 dec_opts="-hwaccel $hwaccel -threads $threads -thread_type $thread_type" 198 DEC_OPTS="-threads $threads -thread_type $thread_type -idct simple $FLAGS" 571 run tools/venc_data_dump${EXECSUF} ${file} ${stream} ${frames} ${threads} ${thread_type}
|
/third_party/node/deps/v8/src/logging/ |
H A D | runtime-call-stats.cc | 131 RuntimeCallStats::RuntimeCallStats(ThreadType thread_type) in RuntimeCallStats() argument 132 : in_use_(false), thread_type_(thread_type) { in RuntimeCallStats()
|
H A D | runtime-call-stats.h | 585 explicit V8_EXPORT_PRIVATE RuntimeCallStats(ThreadType thread_type); 773 explicit V8_EXPORT_PRIVATE RuntimeCallStats(ThreadType thread_type) {}
|
/third_party/ffmpeg/tests/api/ |
H A D | api-h264-slice-test.c | 160 c->thread_type = FF_THREAD_SLICE; in main()
|
/third_party/ffmpeg/ |
H A D | configure | 7372 test -n "$thread_type" && 7374 thread_type="$thread" 7554 echo "threading support ${thread_type-no}"
|