/third_party/gstreamer/gstplugins_base/tests/icles/playback/ |
D | test5.c | 96 GstElement *pipeline, *filesrc, *decodebin; in main() local 102 filesrc = gst_element_factory_make ("filesrc", "filesrc"); in main() 103 g_assert (filesrc); in main() 113 gst_bin_add_many (GST_BIN (pipeline), filesrc, decodebin, NULL); in main() 114 gst_element_link (filesrc, decodebin); in main() 122 g_object_set (G_OBJECT (filesrc), "location", argv[1], NULL); in main() 124 g_object_set (G_OBJECT (filesrc), "location", argv[1] + 7, NULL); in main()
|
D | test6.c | 74 GstElement *pipeline, *filesrc, *decodebin; in main() local 84 filesrc = gst_element_factory_make ("filesrc", "filesrc"); in main() 85 g_assert (filesrc); in main() 90 gst_bin_add_many (GST_BIN (pipeline), filesrc, decodebin, NULL); in main() 91 gst_element_link (filesrc, decodebin); in main() 99 g_object_set (G_OBJECT (filesrc), "location", argv[1], NULL); in main() 101 g_object_set (G_OBJECT (filesrc), "location", argv[1] + 7, NULL); in main()
|
D | test.c | 151 GstElement *pipeline, *filesrc, *decodebin; in main() local 159 filesrc = gst_element_factory_make ("filesrc", "filesrc"); in main() 160 g_assert (filesrc); in main() 174 gst_bin_add_many (GST_BIN (pipeline), filesrc, decodebin, NULL); in main() 175 gst_element_link (filesrc, decodebin); in main() 183 g_object_set (G_OBJECT (filesrc), "location", argv[1], NULL); in main() 185 g_object_set (G_OBJECT (filesrc), "location", argv[1] + 7, NULL); in main()
|
/third_party/gstreamer/gstplugins_good/gst/debugutils/ |
D | gstpushfilesrc.c | 100 if (src->filesrc) { in gst_push_file_src_dispose() 101 gst_bin_remove (GST_BIN (src), src->filesrc); in gst_push_file_src_dispose() 102 src->filesrc = NULL; in gst_push_file_src_dispose() 174 g_object_set_property (G_OBJECT (src->filesrc), "location", value); in gst_push_file_src_set_property() 208 g_object_get_property (G_OBJECT (src->filesrc), "location", value); in gst_push_file_src_get_property() 338 src->filesrc = gst_element_factory_make ("filesrc", "real-filesrc"); in gst_push_file_src_init() 339 if (src->filesrc) { in gst_push_file_src_init() 342 gst_bin_add (GST_BIN (src), src->filesrc); in gst_push_file_src_init() 343 pad = gst_element_get_static_pad (src->filesrc, "src"); in gst_push_file_src_init() 386 if (src->filesrc == NULL) in gst_push_file_src_uri_get_uri() [all …]
|
D | gstpushfilesrc.h | 44 GstElement *filesrc; member
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | clocking2 | 42 filesrc ! mad ! osssink 48 filesrc state change gets starttime 62 { filesrc ! mad ! queue } ! osssink 74 filesrc ! mad ! mixer ! osssink 77 filesrc ! mad !-^
|
D | events | 94 1) filesrc ! fakesink 96 filesrc will read until it reaches EOF. It will then create a GstEvent 100 default handler will set the element to the paused state. filesrc will 104 2) filesrc ! fakesink 106 The app wants to perform a seek on filesrc. It'll call the gst_pad_event() 108 react and change filesrcs internal status. filesrc will return a DISCONT 111 3) filesrc ! mpeg2parse video_0! queue ! { mpeg2dec ! xvideosink } 114 on the filesrc element (byte offset), it can insert a byte/time offset
|
D | timecache | 48 - create filesrc ! mpegparse 58 - create filesrc ! mpegparse 68 - create filesrc ! mpegdemux 81 - create filesrc ! mpegdemux video_%02d! mpeg2dec 96 - filesrc seeks to offset
|
D | events3 | 200 1) filesrc ! fakesink 205 2) filesrc ! fakesink 207 The app wants to perform a seek on filesrc. It'll call the gst_pad_send_event() 209 react and change filesrcs internal status. filesrc will return a DISCONT 212 3) filesrc ! mpeg2parse video_0! queue ! { mpeg2dec ! xvideosink } 215 on the filesrc element (byte offset), it can insert a byte/time offset
|
D | scheduling_ideas | 335 ! filesrc -> *%mpegdemux --> queue* -> mpeg2dec -> xvideosink ! 418 ! *filesrc -> mad --> *%identity -> osssink ! 427 Of course, given the right buffersize for filesrc, N can be reduced 428 to 1. mad can also suggest a buffersize to filesrc with the
|
D | messages | 113 input/file/filesrc: (filesrc) "here_i_am", GST_PROPS_STRING ("alive and kicking")
|
D | capsnego3 | 12 filesrc -> mad -> osssink
|
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/ |
D | README | 90 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch filesrc location=$HOME/Music/1.mp3 ! decodebin2 ! … 91 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch filesrc location=$HOME/Music/1.mp3 ! decodebin2 ! … 93 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch filesrc location=$HOME/Music/1.mp3 ! decodebin2 ! … 94 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch filesrc location=$HOME/Music/1.mp3 ! decodebin2 ! … 96 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch filesrc location=$HOME/Music/1.mp3 ! decodebin2 ! … 97 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch filesrc location=$HOME/Music/1.mp3 ! decodebin2 ! … 99 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch filesrc location=$HOME/Music/1.mp3 ! decodebin2 ! … 104 gst-launch-1.0 filesrc location=$HOME/Music/1.mp3 ! decodebin ! audioconvert ! spectrascope ! video… 106 gst-launch-1.0 filesrc location=$HOME/Music/1.mp3 ! decodebin ! tee name=t ! queue ! audioconvert !…
|
/third_party/gstreamer/gstplugins_base/tests/examples/audio/ |
D | audiomix.c | 130 GstElement *filesrc, *decodebin, *volume, *convert, *format; in make_mixer_channel() local 134 filesrc = gst_element_factory_make ("filesrc", NULL); in make_mixer_channel() 139 gst_bin_add_many (GST_BIN (pipeline), filesrc, decodebin, volume, convert, in make_mixer_channel() 141 gst_element_link (filesrc, decodebin); in make_mixer_channel() 145 g_object_set (filesrc, "location", file_name, NULL); in make_mixer_channel()
|
/third_party/gstreamer/gstreamer/docs/random/company/ |
D | gstparse | 24 by the name of its type, so "filesrc" will add a file source and "identity" will 27 example:#> gst-launch filesrc identity 28 This adds a filesrc and an identity element to a pipeline. Of course this 36 example:#> gst-launch filesrc name=source location="music.mp3" 37 This adds a filesrc element with the name "source" pointing to the location 110 example:#> gst-launch filesrc location=/path/to/file.mp3 ! mad ! osssink 113 …example:#> gst-launch filesrc location=/path/to/file.mp3 ! mad ! tee name=tee ! osssink tee.src%d … 120 …example:#> gst-launch filesrc location=/path/to/file.mp3 ! mad ! tee name=tee ! { queue ! osssink … 126 …example:#> gst-launch filesrc location=/path/to/file.mpeg ! mpegdemux name=demux ! mad ! osssink d… 129 …example:#> gst-launch filesrc location=/path/to/file.mpeg ! mpegdemux name=demux ! { queue ! mad !… [all …]
|
D | gvadec.txt | 83 filesrc ! mad ! alsasink 96 pipeline = gst_parse_launch ("filesrc location=./music.mp3 ! mad ! osssink", 130 factory is done by either knowing its name (in the example "filesrc" is such a 136 location property of filesrc is set in the example pipeline) or by using
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | wavparse.c | 214 GstElement *pipeline, *filesrc, *wavparse, *fakesink; in GST_START_TEST() local 219 fail_unless ((filesrc = gst_element_factory_make ("filesrc", NULL)) != NULL, in GST_START_TEST() 225 gst_bin_add_many (GST_BIN (pipeline), filesrc, wavparse, fakesink, NULL); in GST_START_TEST() 226 gst_element_link_many (filesrc, wavparse, fakesink, NULL); in GST_START_TEST() 227 g_object_set (G_OBJECT (filesrc), "location", "my_test_file", NULL); in GST_START_TEST()
|
D | qtmux.c | 1402 GstElement *filesrc; in check_output() local 1406 filesrc = gst_element_factory_make ("filesrc", NULL); in check_output() 1409 fail_unless (gst_element_link (filesrc, demux)); in check_output() 1411 g_object_set (filesrc, "location", location, NULL); in check_output() 1416 fail_unless (gst_element_set_state (filesrc, in check_output() 1424 fail_unless (gst_element_set_state (filesrc, in check_output() 1426 gst_object_unref (filesrc); in check_output()
|
/third_party/gstreamer/gstreamer/tests/check/elements/ |
D | filesrc.c | 70 GstElement *filesrc; in setup_filesrc() local 76 filesrc = gst_check_setup_element ("filesrc"); in setup_filesrc() 77 mysinkpad = gst_check_setup_sink_pad (filesrc, &sinktemplate); in setup_filesrc() 81 return filesrc; in setup_filesrc() 85 cleanup_filesrc (GstElement * filesrc) in cleanup_filesrc() argument 89 gst_check_teardown_sink_pad (filesrc); in cleanup_filesrc() 90 gst_check_teardown_element (filesrc); in cleanup_filesrc() 564 GST_CHECK_MAIN (filesrc);
|
/third_party/gstreamer/gstreamer/plugins/elements/ |
D | gstcoreelementselements.h | 41 GST_ELEMENT_REGISTER_DECLARE (filesrc); 60 GST_ELEMENT_REGISTER_DECLARE (filesrc);
|
D | gstcoreelementsplugin.c | 55 ret |= GST_ELEMENT_REGISTER (filesrc, plugin); in plugin_init() 75 ret |= GST_ELEMENT_REGISTER (filesrc, plugin); in plugin_init()
|
/third_party/gstreamer/gstreamer/docs/random/ |
D | events | 221 * filesrc ! fakesink 223 - When starting the pipeline, filesrc will emit a DISCONTINUOUS event of type NEW 227 - After the file was played, the filesrc emits a "DISCONTINUOUS" of type EOS. 229 * filesrc ! mad ! ... 231 - When starting, filesrc emits a DISCONTINUOUS event followed by an INFO event (see above). 242 - mad then ISSUES a SEEK event of type BYTEOFFSET_SET; offset = 0 to make the filesrc start 244 - The filesrc will reset its offset and issue a DISCONTINUOUS event of type SEEK. This event 247 time with the help of the previous length information supplied by the filesrc. It will then 261 * filesrc ! gunzip ! mikmod ! osssink 273 - The filesrc supplies the "URI" and the "length_size" for a second time. It is now up to the [all …]
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gstbin.c | 104 GstElement *filesrc; in GST_START_TEST() local 111 filesrc = gst_element_factory_make ("filesrc", NULL); in GST_START_TEST() 112 fail_unless (filesrc != NULL, "Could not create filesrc"); in GST_START_TEST() 113 fail_unless (GST_IS_URI_HANDLER (filesrc), "Filesrc not a URI handler"); in GST_START_TEST() 114 gst_bin_add (bin, filesrc); in GST_START_TEST() 116 fail_unless (gst_bin_get_by_interface (bin, GST_TYPE_URI_HANDLER) == filesrc); in GST_START_TEST() 117 gst_object_unref (filesrc); in GST_START_TEST() 122 fail_unless (g_value_get_object (&item) == (gpointer) filesrc); in GST_START_TEST() 134 fail_unless (g_value_get_object (&item) == (gpointer) filesrc); in GST_START_TEST() 148 fail_unless (g_value_get_object (&item) == (gpointer) filesrc); in GST_START_TEST() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/rawparse/ |
D | README | 20 gst-launch-1.0 filesrc location=raw ! \
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/qt/qglwtextureshare/ |
D | README | 26 filesrc location=myvideo.ogv ! decodebin2 ! glupload ! fakesink sync=1
|