mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
caps: warn with wrong mediatype in gst_caps_new_empty_simple
If passing ANY/EMPTY to gst_caps_new_empty_simple as a mediatype, a warning will be displayed to alert on this misuse of the API. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2290>
This commit is contained in:
parent
8d40531f23
commit
7f7084cd3a
2 changed files with 11 additions and 1 deletions
|
@ -300,6 +300,16 @@ gst_caps_new_empty_simple (const char *media_type)
|
|||
GstStructure *structure;
|
||||
|
||||
caps = gst_caps_new_empty ();
|
||||
if (strcmp ("ANY", media_type) == 0) {
|
||||
g_warning
|
||||
("media_type should not be ANY. Please consider using `gst_caps_new_any` or `gst_caps_from_string`.");
|
||||
}
|
||||
if (strcmp ("", media_type) == 0 || strcmp ("EMPTY", media_type) == 0
|
||||
|| strcmp ("NONE", media_type) == 0) {
|
||||
g_warning
|
||||
("media_type should not be `%s`. Please consider using `gst_caps_new_empty` or `gst_caps_from_string`.",
|
||||
media_type);
|
||||
}
|
||||
structure = gst_structure_new_empty (media_type);
|
||||
if (structure)
|
||||
gst_caps_append_structure_unchecked (caps, structure, NULL);
|
||||
|
|
|
@ -169,7 +169,7 @@ dummy_parser_handle_frame (GstBaseParse * parse,
|
|||
if (((DummyParser *) parse)->caps_set == FALSE) {
|
||||
GstCaps *caps;
|
||||
/* push caps */
|
||||
caps = gst_caps_new_empty_simple ("ANY");
|
||||
caps = gst_caps_new_empty_simple ("video/x-raw");
|
||||
gst_pad_set_caps (GST_BASE_PARSE_SRC_PAD (parse), caps);
|
||||
gst_caps_unref (caps);
|
||||
((DummyParser *) parse)->caps_set = TRUE;
|
||||
|
|
Loading…
Reference in a new issue