/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | flvdemux.c | 413 const gchar *stream_format; in GST_START_TEST() local 429 stream_format = gst_structure_get_string (s, "stream-format"); in GST_START_TEST() 430 fail_unless_equals_string ("raw", stream_format); in GST_START_TEST() 541 const gchar *stream_format; in GST_START_TEST() local 557 stream_format = gst_structure_get_string (s, "stream-format"); in GST_START_TEST() 558 fail_unless_equals_string ("raw", stream_format); in GST_START_TEST() 628 const gchar *stream_format; in GST_START_TEST() local 636 stream_format = gst_structure_get_string (s, "stream-format"); in GST_START_TEST() 637 fail_unless_equals_string ("avc", stream_format); in GST_START_TEST()
|
D | aacparse.c | 201 const gchar *stream_format; in GST_START_TEST() local 218 stream_format = gst_structure_get_string (s, "stream-format"); in GST_START_TEST() 219 fail_unless (strcmp (stream_format, "raw") == 0); in GST_START_TEST()
|
D | rtp-payloading.c | 666 rtp_h264depay_run (const gchar * stream_format) in rtp_h264depay_run() argument 689 "stream-format", G_TYPE_STRING, stream_format, in rtp_h264depay_run()
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpmp4apay.c | 255 const gchar *stream_format; in gst_rtp_mp4a_pay_setcaps() local 264 stream_format = gst_structure_get_string (structure, "stream-format"); in gst_rtp_mp4a_pay_setcaps() 265 if (stream_format) { in gst_rtp_mp4a_pay_setcaps() 266 if (strcmp (stream_format, "raw") != 0) { in gst_rtp_mp4a_pay_setcaps() 268 "%s is not supported", stream_format); in gst_rtp_mp4a_pay_setcaps()
|
D | gstrtph265pay.c | 470 const gchar *alignment, *stream_format; in gst_rtp_h265_pay_setcaps() local 490 rtph265pay->stream_format = GST_H265_STREAM_FORMAT_UNKNOWN; in gst_rtp_h265_pay_setcaps() 491 stream_format = gst_structure_get_string (str, "stream-format"); in gst_rtp_h265_pay_setcaps() 492 if (stream_format) { in gst_rtp_h265_pay_setcaps() 493 if (g_str_equal (stream_format, "hvc1")) in gst_rtp_h265_pay_setcaps() 494 rtph265pay->stream_format = GST_H265_STREAM_FORMAT_HVC1; in gst_rtp_h265_pay_setcaps() 495 if (g_str_equal (stream_format, "hev1")) in gst_rtp_h265_pay_setcaps() 496 rtph265pay->stream_format = GST_H265_STREAM_FORMAT_HEV1; in gst_rtp_h265_pay_setcaps() 497 if (g_str_equal (stream_format, "byte-stream")) in gst_rtp_h265_pay_setcaps() 498 rtph265pay->stream_format = GST_H265_STREAM_FORMAT_BYTESTREAM; in gst_rtp_h265_pay_setcaps() [all …]
|
D | gstrtph265depay.c | 156 rtph265depay->stream_format = NULL; in gst_rtp_h265_depay_init() 244 GstH265StreamFormat stream_format = GST_H265_STREAM_FORMAT_UNKNOWN; in gst_rtp_h265_depay_negotiate() local 259 rtph265depay->stream_format = g_intern_string (str); in gst_rtp_h265_depay_negotiate() 262 stream_format = GST_H265_STREAM_FORMAT_HEV1; in gst_rtp_h265_depay_negotiate() 264 stream_format = GST_H265_STREAM_FORMAT_HVC1; in gst_rtp_h265_depay_negotiate() 266 stream_format = GST_H265_STREAM_FORMAT_BYTESTREAM; in gst_rtp_h265_depay_negotiate() 285 if (stream_format != GST_H265_STREAM_FORMAT_UNKNOWN) { in gst_rtp_h265_depay_negotiate() 287 stream_format_get_nick (stream_format)); in gst_rtp_h265_depay_negotiate() 288 rtph265depay->output_format = stream_format; in gst_rtp_h265_depay_negotiate() 292 rtph265depay->stream_format = in gst_rtp_h265_depay_negotiate() [all …]
|
D | gstrtph264pay.c | 434 const gchar *alignment, *stream_format; in gst_rtp_h264_pay_setcaps() local 453 rtph264pay->stream_format = GST_H264_STREAM_FORMAT_UNKNOWN; in gst_rtp_h264_pay_setcaps() 454 stream_format = gst_structure_get_string (str, "stream-format"); in gst_rtp_h264_pay_setcaps() 455 if (stream_format) { in gst_rtp_h264_pay_setcaps() 456 if (g_str_equal (stream_format, "avc")) in gst_rtp_h264_pay_setcaps() 457 rtph264pay->stream_format = GST_H264_STREAM_FORMAT_AVC; in gst_rtp_h264_pay_setcaps() 458 if (g_str_equal (stream_format, "byte-stream")) in gst_rtp_h264_pay_setcaps() 459 rtph264pay->stream_format = GST_H264_STREAM_FORMAT_BYTESTREAM; in gst_rtp_h264_pay_setcaps() 1035 avc = rtph264pay->stream_format == GST_H264_STREAM_FORMAT_AVC; in gst_rtp_h264_pay_handle_buffer()
|
D | gstrtph265pay.h | 56 GstH265StreamFormat stream_format; member
|
D | gstrtph264pay.h | 64 GstH264StreamFormat stream_format; member
|
D | gstrtph265depay.h | 59 const gchar *stream_format; member
|
/third_party/gstreamer/gstplugins_bad/ext/fdkaac/ |
D | gstfdkaacdec.c | 105 const gchar *stream_format; in gst_fdkaacdec_set_format() local 116 stream_format = gst_structure_get_string (s, "stream-format"); in gst_fdkaacdec_set_format() 117 if (strcmp (stream_format, "raw") == 0) { in gst_fdkaacdec_set_format() 119 } else if (strcmp (stream_format, "adif") == 0) { in gst_fdkaacdec_set_format() 121 } else if (strcmp (stream_format, "adts") == 0) { in gst_fdkaacdec_set_format()
|
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/ |
D | gstvc1parse.c | 129 stream_format_to_string (VC1StreamFormat stream_format) in stream_format_to_string() argument 131 return stream_formats[stream_format].str; in stream_format_to_string() 135 stream_format_from_string (const gchar * stream_format) in stream_format_from_string() argument 140 if (strcmp (stream_formats[i].str, stream_format) == 0) in stream_format_from_string() 488 const gchar *stream_format, *header_format; in gst_vc1_parse_renegotiate() local 529 stream_format = gst_structure_get_string (s, "stream-format"); in gst_vc1_parse_renegotiate() 530 if (!stream_format) { in gst_vc1_parse_renegotiate() 532 stream_format = stream_format_to_string (vc1parse->output_stream_format); in gst_vc1_parse_renegotiate() 533 gst_structure_set (s, "stream-format", G_TYPE_STRING, stream_format, in gst_vc1_parse_renegotiate() 537 stream_format_from_string (stream_format); in gst_vc1_parse_renegotiate() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/audioparsers/ |
D | gstaacparse.c | 178 const gchar *stream_format; in gst_aac_parse_set_src_caps() local 195 stream_format = "raw"; in gst_aac_parse_set_src_caps() 198 stream_format = "adts"; in gst_aac_parse_set_src_caps() 201 stream_format = "adif"; in gst_aac_parse_set_src_caps() 204 stream_format = "loas"; in gst_aac_parse_set_src_caps() 207 stream_format = NULL; in gst_aac_parse_set_src_caps() 226 if (stream_format) in gst_aac_parse_set_src_caps() 227 gst_structure_set (s, "stream-format", G_TYPE_STRING, stream_format, NULL); in gst_aac_parse_set_src_caps() 350 const gchar *stream_format = in gst_aac_parse_sink_setcaps() local 353 if (g_strcmp0 (stream_format, "raw") == 0) { in gst_aac_parse_sink_setcaps()
|
/third_party/gstreamer/gstplugins_bad/ext/resindvd/ |
D | gstmpegdemux.c | 660 gint stream_format; in gst_flups_demux_handle_dvd_event() local 664 if (!gst_structure_get_int (structure, cur_stream_name, &stream_format)) in gst_flups_demux_handle_dvd_event() 673 switch (stream_format) { in gst_flups_demux_handle_dvd_event() 679 stream_format, stream_id); in gst_flups_demux_handle_dvd_event() 689 stream_format, stream_id); in gst_flups_demux_handle_dvd_event() 697 stream_format, stream_id); in gst_flups_demux_handle_dvd_event() 706 stream_format, stream_id); in gst_flups_demux_handle_dvd_event() 713 stream_format); in gst_flups_demux_handle_dvd_event() 719 stream_format); in gst_flups_demux_handle_dvd_event()
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | decodebin.c | 397 const gchar *stream_format; in gst_fake_h264_parser_sink_event() local 406 stream_format = gst_structure_get_string (s, "stream-format"); in gst_fake_h264_parser_sink_event() 407 if (!stream_format) in gst_fake_h264_parser_sink_event()
|
/third_party/gstreamer/gstplugins_good/sys/osxaudio/ |
D | gstosxcoreaudio.h | 108 AudioStreamBasicDescription original_format, stream_format; member
|
D | gstosxcoreaudiohal.c | 892 core_audio->stream_format = formats[requested_rate_format].mFormat; in _acquire_spdif() 895 core_audio->stream_format = formats[current_rate_format].mFormat; in _acquire_spdif() 899 core_audio->stream_format = formats[backup_rate_format].mFormat; in _acquire_spdif() 912 core_audio->stream_format)) in _acquire_spdif()
|
/third_party/gstreamer/gstplugins_bad/sys/uvch264/ |
D | gstuvch264_src.c | 228 UvcH264StreamFormat stream_format); 1931 UvcH264StreamFormat stream_format) in fill_probe_commit() argument 1945 probe->bStreamFormat = stream_format; in fill_probe_commit() 2173 const gchar *stream_format; in _extract_stream_format() local 2175 stream_format = gst_structure_get_string (structure, "stream-format"); in _extract_stream_format() 2176 if (stream_format) { in _extract_stream_format() 2177 if (!strcmp (stream_format, "avc")) in _extract_stream_format() 2179 else if (!strcmp (stream_format, "byte-stream")) in _extract_stream_format() 2319 UvcH264StreamFormat stream_format; in gst_uvc_h264_src_fixate_caps() local 2323 stream_format = _extract_stream_format (s); in gst_uvc_h264_src_fixate_caps() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/mpegdemux/ |
D | gstmpegdemux.c | 779 gint stream_format; in gst_ps_demux_handle_dvd_event() local 783 if (!gst_structure_get_int (structure, cur_stream_name, &stream_format)) in gst_ps_demux_handle_dvd_event() 792 switch (stream_format) { in gst_ps_demux_handle_dvd_event() 798 stream_format, stream_id); in gst_ps_demux_handle_dvd_event() 808 stream_format, stream_id); in gst_ps_demux_handle_dvd_event() 816 stream_format, stream_id); in gst_ps_demux_handle_dvd_event() 824 stream_format, stream_id); in gst_ps_demux_handle_dvd_event() 832 stream_format); in gst_ps_demux_handle_dvd_event()
|
/third_party/gstreamer/gstplugins_bad/sys/androidmedia/ |
D | gstamcaudiodec.c | 894 const gchar *stream_format; in gst_amc_audio_dec_set_format() local 898 stream_format = gst_structure_get_string (s, "stream-format"); in gst_amc_audio_dec_set_format() 900 if (mpegversion == 4 && g_strcmp0 (stream_format, "adts") == 0) { in gst_amc_audio_dec_set_format()
|
/third_party/gstreamer/gstplugins_good/gst/avi/ |
D | gstavimux.c | 856 const gchar *stream_format; in gst_avi_mux_audsink_set_caps() local 860 stream_format = gst_structure_get_string (structure, "stream-format"); in gst_avi_mux_audsink_set_caps() 861 if (stream_format) { in gst_avi_mux_audsink_set_caps() 862 if (strcmp (stream_format, "raw") != 0) { in gst_avi_mux_audsink_set_caps() 864 "supported, please use 'raw'", stream_format); in gst_avi_mux_audsink_set_caps()
|
/third_party/gstreamer/gstplugins_good/gst/matroska/ |
D | matroska-mux.c | 1794 const gchar *stream_format = NULL; in gst_matroska_mux_audio_pad_setcaps() local 1889 stream_format = gst_structure_get_string (structure, "stream-format"); in gst_matroska_mux_audio_pad_setcaps() 1891 if (stream_format) { in gst_matroska_mux_audio_pad_setcaps() 1892 if (strcmp (stream_format, "raw") != 0) { in gst_matroska_mux_audio_pad_setcaps() 1894 stream_format); in gst_matroska_mux_audio_pad_setcaps()
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | gstqtmux.c | 5289 const gchar *stream_format; in gst_qt_mux_audio_sink_set_caps() local 5368 stream_format = gst_structure_get_string (structure, "stream-format"); in gst_qt_mux_audio_sink_set_caps() 5369 if (stream_format) { in gst_qt_mux_audio_sink_set_caps() 5370 if (strcmp (stream_format, "raw") != 0) { in gst_qt_mux_audio_sink_set_caps() 5372 "please use 'raw'", stream_format); in gst_qt_mux_audio_sink_set_caps()
|
/third_party/gstreamer/gstplugins_good/sys/v4l2/ |
D | gstv4l2object.c | 1823 const gchar *stream_format = in gst_v4l2_object_get_caps_info() local 1825 if (g_str_equal (stream_format, "avc")) in gst_v4l2_object_get_caps_info()
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 17382 10 bytes was allocated for stream_format but size of "byte-stream" is
|