Home
last modified time | relevance | path

Searched refs:filtergraph (Results 1 – 12 of 12) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/dshowdecwrapper/
Dgstdshowvideodec.cpp499 vdec->filtergraph = NULL; in gst_dshowvideodec_init()
722 hres = vdec->filtergraph->ConnectDirect (output_pin, input_pin, NULL); in gst_dshowvideodec_sink_setcaps()
772 hres = vdec->filtergraph->ConnectDirect(output_pin, input_pin, in gst_dshowvideodec_sink_setcaps()
1119 IID_IFilterGraph, (LPVOID *) & vdec->filtergraph); in gst_dshowvideodec_create_graph_and_filters()
1120 if (hres != S_OK || !vdec->filtergraph) { in gst_dshowvideodec_create_graph_and_filters()
1126 hres = vdec->filtergraph->QueryInterface(IID_IMediaFilter, in gst_dshowvideodec_create_graph_and_filters()
1173 hres = vdec->filtergraph->AddFilter (srcfilter, L"src"); in gst_dshowvideodec_create_graph_and_filters()
1180 hres = vdec->filtergraph->AddFilter(vdec->decfilter, L"decoder"); in gst_dshowvideodec_create_graph_and_filters()
1187 hres = vdec->filtergraph->AddFilter(sinkfilter, L"sink"); in gst_dshowvideodec_create_graph_and_filters()
1222 if (vdec->filtergraph) { in gst_dshowvideodec_create_graph_and_filters()
[all …]
Dgstdshowaudiodec.cpp449 adec->filtergraph = 0; in gst_dshowaudiodec_init()
904 hres = adec->filtergraph->ConnectDirect (output_pin, input_pin, in gst_dshowaudiodec_setup_graph()
950 hres = adec->filtergraph->ConnectDirect(output_pin, input_pin, NULL); in gst_dshowaudiodec_setup_graph()
1032 hres = adec->filtergraph.CreateInstance ( in gst_dshowaudiodec_create_graph_and_filters()
1041 hres = adec->filtergraph->QueryInterface (&adec->mediafilter); in gst_dshowaudiodec_create_graph_and_filters()
1071 hres = adec->filtergraph->AddFilter (srcfilter, L"src"); in gst_dshowaudiodec_create_graph_and_filters()
1078 hres = adec->filtergraph->AddFilter(adec->decfilter, L"decoder"); in gst_dshowaudiodec_create_graph_and_filters()
1086 hres = adec->filtergraph->AddFilter(sinkfilter, L"sink"); in gst_dshowaudiodec_create_graph_and_filters()
1106 adec->filtergraph = 0; in gst_dshowaudiodec_create_graph_and_filters()
1119 if (adec->filtergraph) { in gst_dshowaudiodec_destroy_graph_and_filters()
[all …]
Dgstdshowaudiodec.h93 IFilterGraphPtr filtergraph; member
Dgstdshowvideodec.h103 IFilterGraph *filtergraph; member
/third_party/ffmpeg/doc/
Dffplay.texi103 @item -vf @var{filtergraph}
104 Create the filtergraph specified by @var{filtergraph} and use it to
107 @var{filtergraph} is a description of the filtergraph to apply to
109 output. In the filtergraph, the input is associated to the label
111 ffmpeg-filters manual for more information about the filtergraph
117 @item -af @var{filtergraph}
118 @var{filtergraph} is a description of the filtergraph to apply to
Dffmpeg.texi135 filtergraph | filtered |/
143 A simple filtergraph for video can look for example like this:
185 Note that this option is global, since a complex filtergraph, by its nature,
190 A trivial example of a complex filtergraph is the @code{overlay} filter, which
259 with one possible exception for filtergraph outputs described below.
263 If there are any complex filtergraph output streams with unlabeled pads, they will be added
267 these filtergraph streams are included in addition to the mapped streams.
269 Complex filtergraph output streams with labeled pads must be mapped once and exactly once.
357 @subsubheading Example: unlabeled filtergraph outputs
361 A filtergraph is setup here using the @code{-filter_complex} option and consists of a single
[all …]
Dindevs.texi971 filtergraph.
973 For each filtergraph open output, the input device will create a
975 only video data is supported. The filtergraph is specified through the
983 Specify the filtergraph to use as input. Each video open output must be
1002 Set the filename of the filtergraph to be read and sent to the other
1003 filters. Syntax of the filtergraph is the same as the one specified by
Dwriting_filters.txt260 prior to yours in the filtergraph that needs to cache the frame. You must not
Dfilters.texi9 following filtergraph.
19 This filtergraph splits the input stream in two streams, then sends one
60 directory can be used to parse a filtergraph description and issue a
72 of the filtergraph.
101 A filtergraph is a directed graph of connected filters. It can contain
107 Each filter in a filtergraph is an instance of a filter class
117 A filtergraph has a textual representation, which is recognized by the
128 A filtergraph consists of a sequence of filterchains. A sequence of
183 filtergraph, a link between the corresponding input and output pad is
203 pads must be connected. A filtergraph is considered valid if all the
[all …]
Dfaq.texi433 Then insert the correct @code{aformat} explicitly in the filtergraph,
/third_party/ffmpeg/fftools/
Dffplay.c1809 static int configure_filtergraph(AVFilterGraph *graph, const char *filtergraph, in configure_filtergraph() argument
1816 if (filtergraph) { in configure_filtergraph()
1834 if ((ret = avfilter_graph_parse_ptr(graph, filtergraph, &inputs, &outputs, NULL)) < 0) in configure_filtergraph()
/third_party/ffmpeg/
DChangelog1005 filtergraph description to be read from a file