mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
fix compile error
Original commit message from CVS: fix compile error
This commit is contained in:
parent
552d2816af
commit
c7850cd0ae
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ print_caps (GstCaps *caps)
|
|||
GstPropsType type;
|
||||
|
||||
name = gst_props_entry_get_name (entry);
|
||||
type = gst_props_entry_get_type (entry);
|
||||
type = gst_props_entry_get_props_type (entry);
|
||||
switch (type) {
|
||||
case GST_PROPS_STRING_TYPE:
|
||||
gst_props_entry_get_string (entry, &str_val);
|
||||
|
|
|
@ -32,7 +32,7 @@ caps_print (GstCaps *caps)
|
|||
GstPropsType type;
|
||||
|
||||
name = gst_props_entry_get_name (entry);
|
||||
type = gst_props_entry_get_type (entry);
|
||||
type = gst_props_entry_get_props_type (entry);
|
||||
switch (type) {
|
||||
case GST_PROPS_STRING_TYPE:
|
||||
gst_props_entry_get_string (entry, &str_val);
|
||||
|
|
Loading…
Reference in a new issue