Home
last modified time | relevance | path

Searched refs:bufval (Results 1 – 6 of 6) sorted by relevance

/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dflacparse.c227 GValue *bufval = &g_array_index (bufarr, GValue, i); in GST_START_TEST() local
229 fail_unless (G_VALUE_TYPE (bufval) == GST_TYPE_BUFFER); in GST_START_TEST()
230 buf = g_value_peek_pointer (bufval); in GST_START_TEST()
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-mux.c1543 GValue *bufval = &g_array_index (bufarr, GValue, i); in xiphN_streamheader_to_codecdata() local
1545 if (G_VALUE_TYPE (bufval) != GST_TYPE_BUFFER) { in xiphN_streamheader_to_codecdata()
1550 buf[i] = g_value_peek_pointer (bufval); in xiphN_streamheader_to_codecdata()
1737 GValue *bufval; in flac_streamheader_to_codecdata() local
1753 bufval = &g_array_index (bufarr, GValue, 0); in flac_streamheader_to_codecdata()
1754 if (G_VALUE_TYPE (bufval) != GST_TYPE_BUFFER) { in flac_streamheader_to_codecdata()
1759 buffer = g_value_peek_pointer (bufval); in flac_streamheader_to_codecdata()
1776 bufval = &g_array_index (bufarr, GValue, i); in flac_streamheader_to_codecdata()
1778 if (G_VALUE_TYPE (bufval) != GST_TYPE_BUFFER) { in flac_streamheader_to_codecdata()
1784 buffer = g_value_peek_pointer (bufval); in flac_streamheader_to_codecdata()
[all …]
Dmatroska-parse.c2490 GValue bufval = { 0 }; in gst_matroska_parse_output() local
2502 g_value_init (&bufval, GST_TYPE_BUFFER); in gst_matroska_parse_output()
2505 gst_value_set_buffer (&bufval, buf); in gst_matroska_parse_output()
2507 gst_value_array_append_value (&streamheader, &bufval); in gst_matroska_parse_output()
2508 g_value_unset (&bufval); in gst_matroska_parse_output()
/third_party/gstreamer/gstplugins_bad/gst/gdp/
Dgstgdppay.c304 const GValue *bufval; in gst_gdp_pay_reset_streamheader() local
307 bufval = gst_value_array_get_value (sh, i); in gst_gdp_pay_reset_streamheader()
308 buffer = gst_value_get_buffer (bufval); in gst_gdp_pay_reset_streamheader()
/third_party/gstreamer/gstplugins_base/gst/tcp/
Dgstmultihandlesink.c1045 GValue *bufval; in gst_multi_handle_sink_client_queue_buffer() local
1048 bufval = &g_array_index (buffers, GValue, i); in gst_multi_handle_sink_client_queue_buffer()
1049 g_assert (G_VALUE_TYPE (bufval) == GST_TYPE_BUFFER); in gst_multi_handle_sink_client_queue_buffer()
1050 buffer = g_value_peek_pointer (bufval); in gst_multi_handle_sink_client_queue_buffer()
/third_party/gstreamer/gstplugins_base/ext/ogg/
Dgstoggmux.c1174 GValue *bufval = &g_array_index (bufarr, GValue, i); in gst_ogg_mux_get_headers() local
1177 if (G_VALUE_TYPE (bufval) == GST_TYPE_BUFFER) { in gst_ogg_mux_get_headers()
1178 GstBuffer *buf = g_value_peek_pointer (bufval); in gst_ogg_mux_get_headers()