Searched refs:other_caps (Results 1 – 8 of 8) sorted by relevance
/third_party/gstreamer/gstplugins_bad/gst/autoconvert/ |
D | gstautoconvert.c | 716 GstCaps *other_caps = NULL; in gst_auto_convert_sink_setcaps() local 752 other_caps = gst_pad_peer_query_caps (autoconvert->srcpad, NULL); in gst_auto_convert_sink_setcaps() 772 if (other_caps != NULL) { in gst_auto_convert_sink_setcaps() 774 other_caps)) { in gst_auto_convert_sink_setcaps() 778 other_caps); in gst_auto_convert_sink_setcaps() 798 if (other_caps) in gst_auto_convert_sink_setcaps() 799 gst_caps_unref (other_caps); in gst_auto_convert_sink_setcaps() 1070 GstCaps *caps = NULL, *other_caps = NULL; in gst_auto_convert_getcaps() local 1076 other_caps = gst_pad_peer_query_caps (autoconvert->srcpad, NULL); in gst_auto_convert_getcaps() 1078 other_caps = gst_pad_peer_query_caps (autoconvert->sinkpad, NULL); in gst_auto_convert_getcaps() [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/onnx/ |
D | gstonnxobjectdetector.cpp | 575 GstCaps *other_caps; in gst_onnx_object_detector_transform_caps() local 586 other_caps = gst_caps_new_empty (); in gst_onnx_object_detector_transform_caps() 598 gst_caps_append_structure (other_caps, new_structure); in gst_onnx_object_detector_transform_caps() 601 if (!gst_caps_is_empty (other_caps) && filter_caps) { in gst_onnx_object_detector_transform_caps() 602 GstCaps *tmp = gst_caps_intersect_full (other_caps,filter_caps, in gst_onnx_object_detector_transform_caps() 604 gst_caps_replace (&other_caps, tmp); in gst_onnx_object_detector_transform_caps() 608 return other_caps; in gst_onnx_object_detector_transform_caps()
|
/third_party/gstreamer/gstplugins_good/gst/videocrop/ |
D | gstvideocrop.c | 667 GstCaps *other_caps; in gst_video_crop_transform_caps() local 698 other_caps = gst_caps_new_empty (); in gst_video_crop_transform_caps() 735 gst_caps_append_structure (other_caps, new_structure); in gst_video_crop_transform_caps() 737 gst_caps_set_features (other_caps, i, gst_caps_features_copy (features)); in gst_video_crop_transform_caps() 740 if (!gst_caps_is_empty (other_caps) && filter_caps) { in gst_video_crop_transform_caps() 741 GstCaps *tmp = gst_caps_intersect_full (filter_caps, other_caps, in gst_video_crop_transform_caps() 743 gst_caps_replace (&other_caps, tmp); in gst_video_crop_transform_caps() 747 return other_caps; in gst_video_crop_transform_caps()
|
/third_party/gstreamer/gst_libav/ext/libav/ |
D | gstavaudenc.c | 231 GstCaps *other_caps; in gst_ffmpegaudenc_set_format() local 308 other_caps = gst_ffmpeg_codecid_to_caps (oclass->in_plugin->id, in gst_ffmpegaudenc_set_format() 311 if (!other_caps) { in gst_ffmpegaudenc_set_format() 321 icaps = gst_caps_intersect (allowed_caps, other_caps); in gst_ffmpegaudenc_set_format() 323 gst_caps_unref (other_caps); in gst_ffmpegaudenc_set_format()
|
D | gstavvidenc.c | 237 GstCaps *other_caps; in gst_ffmpegvidenc_set_format() local 358 other_caps = gst_ffmpeg_codecid_to_caps (oclass->in_plugin->id, in gst_ffmpegvidenc_set_format() 361 if (!other_caps) { in gst_ffmpegvidenc_set_format() 366 icaps = gst_caps_intersect (allowed_caps, other_caps); in gst_ffmpegvidenc_set_format() 368 gst_caps_unref (other_caps); in gst_ffmpegvidenc_set_format()
|
/third_party/gstreamer/gstplugins_bad/ext/srtp/ |
D | gstsrtpenc.c | 935 GstCaps *other_caps; in gst_srtp_enc_sink_query() local 955 other_caps = gst_pad_peer_query_caps (otherpad, other_filter); in gst_srtp_enc_sink_query() 960 if (!other_caps) in gst_srtp_enc_sink_query() 964 ret = gst_caps_intersect_full (other_caps, template_caps, in gst_srtp_enc_sink_query() 966 gst_caps_unref (other_caps); in gst_srtp_enc_sink_query()
|
D | gstsrtpdec.c | 1133 GstCaps *other_caps; in gst_srtp_dec_sink_query() local 1156 other_caps = gst_pad_peer_query_caps (otherpad, other_filter); in gst_srtp_dec_sink_query() 1159 if (!other_caps) { in gst_srtp_dec_sink_query() 1164 ret = gst_caps_intersect_full (other_caps, template_caps, in gst_srtp_dec_sink_query() 1166 gst_caps_unref (other_caps); in gst_srtp_dec_sink_query()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | video.c | 3238 GstCaps *other_caps; in GST_START_TEST() local 3296 other_caps = gst_caps_new_empty_simple ("video/x-raw"); in GST_START_TEST() 3298 other_caps)); in GST_START_TEST() 3299 fail_unless (gst_caps_is_equal (caps, other_caps)); in GST_START_TEST() 3302 gst_caps_unref (other_caps); in GST_START_TEST() 3341 other_caps = gst_caps_new_empty_simple ("video/x-raw"); in GST_START_TEST() 3343 other_caps)); in GST_START_TEST() 3344 fail_unless (gst_caps_is_equal (caps, other_caps)); in GST_START_TEST() 3347 gst_caps_unref (other_caps); in GST_START_TEST()
|