Home
last modified time | relevance | path

Searched refs:thread_type (Results 1 – 20 of 20) sorted by relevance

/third_party/ffmpeg/tools/
Dvenc_data_dump.c113 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/
Dpthread.c54 } 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()
Dframe_thread_encoder.c129 if( !(avctx->thread_type & FF_THREAD_FRAME) in ff_frame_thread_encoder_init()
Dlibx264.c882 if (avctx->thread_type) in X264_init()
883 x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE; in X264_init()
Davcodec.h1783 int thread_type; member
Doptions_table.h414 {"thread_type", "select multithreading type", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, {.i64 = FF_TH…
Ddecode.c2025 if ((avctx->thread_type & FF_THREAD_FRAME) && in ff_decode_preinit()
/third_party/ffmpeg/libavfilter/
Dpthread.c89 graph->thread_type = 0; in ff_graph_thread_init()
100 graph->thread_type = 0; in ff_graph_thread_init()
Davfilter.h376 int thread_type; member
872 int thread_type; member
Davfilter.c626 { "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()
Davfiltergraph.c50 { "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/
Dgstavviddec.c338 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 …]
Dgstavviddec.h71 guint thread_type; member
/third_party/ffmpeg/tests/
Dfate-run.sh19 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/
Dapi-h264-slice-test.c160 c->thread_type = FF_THREAD_SLICE; in main()
/third_party/ffmpeg/doc/
DAPIchanges1712 New fields AVFilterContext.thread_type, AVFilterGraph.thread_type and
2736 Add thread_type and active_thread_type fields to AVCodecContext.
Dcodecs.texi1043 @item thread_type @var{flags} (@emph{decoding/encoding,video})
Dencoders.texi2423 @item thread_type
/third_party/ffmpeg/
Dconfigure7172 test -n "$thread_type" &&
7174 thread_type="$thread"
/third_party/gstreamer/gst_libav/
DChangeLog979 When thread_type is set to FF_THREAD_FRAME, per the documentation
981 <https://ffmpeg.org/ffmpeg-codecs.html>, search for thread_type.