Searched refs:thread_type (Results 1 – 20 of 20) sorted by relevance
/third_party/ffmpeg/tools/ |
D | venc_data_dump.c | 113 const char *filename, *thread_type = NULL, *nb_threads = NULL; in main() local 126 thread_type = argv[5]; in main() 130 ret |= av_dict_set(&opts, "thread_type", thread_type, 0); in main()
|
/third_party/ffmpeg/libavcodec/ |
D | pthread.c | 54 } else if (frame_threading_supported && (avctx->thread_type & FF_THREAD_FRAME)) { in validate_thread_parameters() 57 avctx->thread_type & FF_THREAD_SLICE) { in validate_thread_parameters()
|
D | frame_thread_encoder.c | 129 if( !(avctx->thread_type & FF_THREAD_FRAME) in ff_frame_thread_encoder_init()
|
D | libx264.c | 882 if (avctx->thread_type) in X264_init() 883 x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE; in X264_init()
|
D | avcodec.h | 1783 int thread_type; member
|
D | options_table.h | 414 {"thread_type", "select multithreading type", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, {.i64 = FF_TH…
|
D | decode.c | 2025 if ((avctx->thread_type & FF_THREAD_FRAME) && in ff_decode_preinit()
|
/third_party/ffmpeg/libavfilter/ |
D | pthread.c | 89 graph->thread_type = 0; in ff_graph_thread_init() 100 graph->thread_type = 0; in ff_graph_thread_init()
|
D | avfilter.h | 376 int thread_type; member 872 int thread_type; member
|
D | avfilter.c | 626 { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, 906 ctx->thread_type & ctx->graph->thread_type & AVFILTER_THREAD_SLICE && in avfilter_init_dict() 908 ctx->thread_type = AVFILTER_THREAD_SLICE; in avfilter_init_dict() 911 ctx->thread_type = 0; in avfilter_init_dict()
|
D | avfiltergraph.c | 50 { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, 77 graph->thread_type = 0; in ff_graph_thread_init() 176 if (graph->thread_type && !graph->internal->thread_execute) { in avfilter_graph_alloc_filter()
|
/third_party/gstreamer/gst_libav/ext/libav/ |
D | gstavviddec.c | 338 ffmpegdec->thread_type = DEFAULT_THREAD_TYPE; in gst_ffmpegviddec_init() 585 if (ffmpegdec->thread_type) { in gst_ffmpegviddec_set_format() 587 ffmpegdec->thread_type); in gst_ffmpegviddec_set_format() 588 ffmpegdec->context->thread_type = ffmpegdec->thread_type; in gst_ffmpegviddec_set_format() 603 ffmpegdec->context->thread_type = FF_THREAD_SLICE; in gst_ffmpegviddec_set_format() 605 ffmpegdec->context->thread_type = FF_THREAD_SLICE | FF_THREAD_FRAME; in gst_ffmpegviddec_set_format() 612 (ffmpegdec->context->thread_type & FF_THREAD_FRAME)) in gst_ffmpegviddec_set_format() 628 if (ffmpegdec->context->thread_type == FF_THREAD_FRAME) in gst_ffmpegviddec_set_format() 630 ffmpegdec->context->thread_type = FF_THREAD_SLICE; in gst_ffmpegviddec_set_format() 654 if (ffmpegdec->context->thread_type & FF_THREAD_FRAME) { in gst_ffmpegviddec_set_format() [all …]
|
D | gstavviddec.h | 71 guint thread_type; member
|
/third_party/ffmpeg/tests/ |
D | fate-run.sh | 19 thread_type=${10:-frame+slice} 129 dec_opts="-hwaccel $hwaccel -threads $threads -thread_type $thread_type" 498 run tools/venc_data_dump${EXECSUF} ${file} ${stream} ${frames} ${threads} ${thread_type}
|
/third_party/ffmpeg/tests/api/ |
D | api-h264-slice-test.c | 160 c->thread_type = FF_THREAD_SLICE; in main()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 1712 New fields AVFilterContext.thread_type, AVFilterGraph.thread_type and 2736 Add thread_type and active_thread_type fields to AVCodecContext.
|
D | codecs.texi | 1043 @item thread_type @var{flags} (@emph{decoding/encoding,video})
|
D | encoders.texi | 2423 @item thread_type
|
/third_party/ffmpeg/ |
D | configure | 7172 test -n "$thread_type" && 7174 thread_type="$thread"
|
/third_party/gstreamer/gst_libav/ |
D | ChangeLog | 979 When thread_type is set to FF_THREAD_FRAME, per the documentation 981 <https://ffmpeg.org/ffmpeg-codecs.html>, search for thread_type.
|