Home
last modified time | relevance | path

Searched refs:audiotestsrc (Results 1 – 25 of 32) sorted by relevance

12

/third_party/gstreamer/gstplugins_base/tests/check/elements/
Daudiotestsrc.c52 GstElement *audiotestsrc; in setup_audiotestsrc() local
55 audiotestsrc = gst_check_setup_element ("audiotestsrc"); in setup_audiotestsrc()
56 mysinkpad = gst_check_setup_sink_pad (audiotestsrc, &sinktemplate); in setup_audiotestsrc()
59 return audiotestsrc; in setup_audiotestsrc()
63 cleanup_audiotestsrc (GstElement * audiotestsrc) in cleanup_audiotestsrc() argument
72 gst_check_teardown_sink_pad (audiotestsrc); in cleanup_audiotestsrc()
73 gst_check_teardown_element (audiotestsrc); in cleanup_audiotestsrc()
78 GstElement *audiotestsrc; in GST_START_TEST() local
84 audiotestsrc = setup_audiotestsrc (); in GST_START_TEST()
85 oclass = G_OBJECT_GET_CLASS (audiotestsrc); in GST_START_TEST()
[all …]
Dencodebin.c545 GstElement *ebin, *pipeline, *audiotestsrc, *fakesink; in GST_START_TEST() local
553 audiotestsrc = gst_element_factory_make ("audiotestsrc", NULL); in GST_START_TEST()
554 g_object_set (audiotestsrc, "num-buffers", 10, NULL); in GST_START_TEST()
560 gst_bin_add_many ((GstBin *) pipeline, audiotestsrc, ebin, fakesink, NULL); in GST_START_TEST()
562 fail_unless (gst_element_link_many (audiotestsrc, ebin, fakesink, NULL)); in GST_START_TEST()
600 GstElement *ebin, *pipeline, *audiotestsrc, *fakesink; in GST_START_TEST() local
609 audiotestsrc = gst_element_factory_make ("audiotestsrc", NULL); in GST_START_TEST()
610 g_object_set (audiotestsrc, "num-buffers", 10, NULL); in GST_START_TEST()
616 gst_bin_add_many (GST_BIN (pipeline), audiotestsrc, ebin, fakesink, NULL); in GST_START_TEST()
619 fail_unless (gst_element_link_many (audiotestsrc, ebin, fakesink, NULL)); in GST_START_TEST()
[all …]
Daudioresample.c998 GstElement *audiotestsrc, *capsfilter1, *identity, *audioresample, in GST_START_TEST() local
1007 audiotestsrc = gst_element_factory_make ("audiotestsrc", "src"); in GST_START_TEST()
1008 fail_unless (audiotestsrc != NULL); in GST_START_TEST()
1009 g_object_set (G_OBJECT (audiotestsrc), "num-buffers", 10000, in GST_START_TEST()
1041 gst_bin_add_many (GST_BIN (pipeline), audiotestsrc, capsfilter1, identity, in GST_START_TEST()
1043 fail_unless (gst_element_link_many (audiotestsrc, capsfilter1, identity, in GST_START_TEST()
/third_party/gstreamer/gstplugins_good/tests/check/pipelines/
Dwavenc.c73 GstElement **audiotestsrc, *interleave, *wavenc, *conv, *fakesink; in make_n_channel_wav() local
79 audiotestsrc = g_new0 (GstElement *, channels); in make_n_channel_wav()
111 audiotestsrc[i] = gst_element_factory_make ("audiotestsrc", NULL); in make_n_channel_wav()
112 fail_unless (audiotestsrc[i] != NULL); in make_n_channel_wav()
113 g_object_set (G_OBJECT (audiotestsrc[i]), "wave", 0, "freq", in make_n_channel_wav()
115 gst_bin_add (GST_BIN (pipeline), audiotestsrc[i]); in make_n_channel_wav()
116 fail_unless (gst_element_link (audiotestsrc[i], interleave)); in make_n_channel_wav()
132 g_free (audiotestsrc); in make_n_channel_wav()
Dwavpack.c92 GstElement *audiotestsrc, *identity1, *wavpackenc, *identity2, *wavpackdec, in GST_START_TEST() local
109 audiotestsrc = gst_element_factory_make ("audiotestsrc", "src"); in GST_START_TEST()
110 fail_unless (audiotestsrc != NULL); in GST_START_TEST()
111 g_object_set (G_OBJECT (audiotestsrc), "wave", 0, "freq", 440.0, in GST_START_TEST()
142 gst_bin_add_many (GST_BIN (pipeline), audiotestsrc, identity1, wavpackenc, in GST_START_TEST()
145 fail_unless (gst_element_link_many (audiotestsrc, identity1, wavpackenc, in GST_START_TEST()
/third_party/gstreamer/gstplugins_bad/tests/icles/
Dpitch-test.c38 GstElement *audiotestsrc; in main() local
57 audiotestsrc = gst_element_factory_make ("audiotestsrc", "audiotestsrc"); in main()
58 g_assert (audiotestsrc != NULL); in main()
69 audiotestsrc, audioconvert1, pitch, audioconvert2, sink, NULL); in main()
70 gst_element_link_many (audiotestsrc, audioconvert1, pitch, audioconvert2, in main()
/third_party/gstreamer/gstplugins_good/tests/examples/level/
Dlevel-example.c92 GstElement *audiotestsrc, *audioconvert, *level, *fakesink; in main() local
105 audiotestsrc = gst_element_factory_make ("audiotestsrc", NULL); in main()
106 g_assert (audiotestsrc); in main()
114 gst_bin_add_many (GST_BIN (pipeline), audiotestsrc, audioconvert, level, in main()
116 if (!gst_element_link (audiotestsrc, audioconvert)) in main()
/third_party/gstreamer/gstplugins_base/tests/examples/dynamic/
Dcodec-select.c111 GstElement *audiotestsrc; in make_pipeline() local
125 audiotestsrc = gst_element_factory_make ("audiotestsrc", NULL); in make_pipeline()
126 g_object_set (audiotestsrc, "num-buffers", 1000, NULL); in make_pipeline()
127 g_assert (audiotestsrc); in make_pipeline()
150 gst_bin_add (GST_BIN (result), audiotestsrc); in make_pipeline()
157 gst_element_link_pads (audiotestsrc, "src", audiocaps, "sink"); in make_pipeline()
/third_party/gstreamer/gstplugins_bad/gst/gdp/
DREADME5 gst-launch-1.0 -v audiotestsrc ! gdppay version=0.2 ! tcpserversink
11 gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! gdppay version=0.2 ! tcpserversink
17 …gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! oggmux ! gdppay version=0.2 ! tcpserve…
/third_party/gstreamer/gstplugins_bad/tests/examples/audiomixmatrix/
Dtest-audiomixmatrix.c76 GstElement *audiotestsrc, *capsfilter, *audiomixmatrix, *audioconvert, *sink; in main() local
89 audiotestsrc = gst_element_factory_make ("audiotestsrc", "audiotestsrc"); in main()
150 gst_bin_add_many (GST_BIN (pipeline), audiotestsrc, capsfilter, in main()
152 gst_element_link_many (audiotestsrc, capsfilter, in main()
/third_party/gstreamer/gstreamer/tests/examples/streamiddemux/
Dstreamiddemux-stream.c10 GstElement *audiotestsrc[NUM_STREAM]; member
158 app->audiotestsrc[stream_cnt] = in main()
178 g_object_set (app->audiotestsrc[stream_cnt], "wave", stream_cnt, in main()
195 gst_bin_add_many (GST_BIN (app->pipeline), app->audiotestsrc[stream_cnt], in main()
206 gst_element_link_many (app->audiotestsrc[stream_cnt], in main()
/third_party/gstreamer/gstplugins_base/gst/
Dmeson.build2 … 'audiotestsrc', 'compositor', 'encoding', 'gio', 'overlaycomposition', 'pbtypes', 'playback',
/third_party/gstreamer/gstplugins_good/tests/examples/rtp/
Dserver-alsasrc-PCMA.sh25 AELEM=audiotestsrc
Dserver-VTS-H263p-ATS-PCMA.sh13 audiotestsrc samplesperbuffer=1000 ! alawenc ! rtppcmapay ! rtpbin.send_rtp_sink_1 \
Dserver-VTS-VP8-ATS-OPUS.sh15 audiotestsrc ! opusenc ! rtpopuspay ! rtpbin.send_rtp_sink_1 \
/third_party/gstreamer/gstplugins_base/tests/validate/encodebin/
Dset-encoder-properties.validatetest5 …"audiotestsrc num-buffers=4 ! encodebin name=ebin profile=\"vorbisenc|element-properties,managed=t…
/third_party/gstreamer/gstplugins_base/tests/validate/audiotestsrc/
Dreverse.validatetest3 …"audiotestsrc name=src samplesperbuffer=1024 ! audio/x-raw,format=S16LE,rate=44100 ! fakesink name…
/third_party/gstreamer/gstplugins_base/gst/audiotestsrc/
Dgstaudiotestsrc.h138 GST_ELEMENT_REGISTER_DECLARE (audiotestsrc);
Dgstaudiotestsrc.c157 GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (audiotestsrc, "audiotestsrc",
1688 return GST_ELEMENT_REGISTER (audiotestsrc, plugin); in plugin_init()
1693 audiotestsrc,
/third_party/gstreamer/gstplugins_base/tests/validate/
Dmeson.build7 'audiotestsrc/reverse',
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/
DREADME89 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-launch audiotestsrc ! audioconvert ! wavescope ! colorspa…
102 gst-launch-1.0 audiotestsrc ! audioconvert ! wavescope ! videoconvert ! ximagesink
/third_party/gstreamer/gstplugins_base/ext/ogg/
DREADME358 gst-launch -v videotestsrc ! theoraenc ! oggmux audiotestsrc ! audioconvert ! vorbisenc ! identity …
361 gst-launch -v videotestsrc timestamp-offset=500000000 ! theoraenc ! oggmux audiotestsrc ! audioconv…
364 gst-launch -v videotestsrc ! theoraenc ! oggmux audiotestsrc timestamp-offset=500000000 ! audioconv…
/third_party/gstreamer/gstplugins_bad/ext/dtls/
DREADME94 'audiotestsrc is-live=true',
/third_party/gstreamer/gstplugins_base/
Dmeson_options.txt37 option('audiotestsrc', type : 'feature', value : 'auto') feature
/third_party/gstreamer/gstplugins_base/tests/check/
Dmeson.build40 [ 'elements/audiotestsrc.c' ],

12