mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +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;
|
GstPropsType type;
|
||||||
|
|
||||||
name = gst_props_entry_get_name (entry);
|
name = gst_props_entry_get_name (entry);
|
||||||
type = gst_props_entry_get_type (entry);
|
type = gst_props_entry_get_props_type (entry);
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case GST_PROPS_STRING_TYPE:
|
case GST_PROPS_STRING_TYPE:
|
||||||
gst_props_entry_get_string (entry, &str_val);
|
gst_props_entry_get_string (entry, &str_val);
|
||||||
|
|
|
@ -32,7 +32,7 @@ caps_print (GstCaps *caps)
|
||||||
GstPropsType type;
|
GstPropsType type;
|
||||||
|
|
||||||
name = gst_props_entry_get_name (entry);
|
name = gst_props_entry_get_name (entry);
|
||||||
type = gst_props_entry_get_type (entry);
|
type = gst_props_entry_get_props_type (entry);
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case GST_PROPS_STRING_TYPE:
|
case GST_PROPS_STRING_TYPE:
|
||||||
gst_props_entry_get_string (entry, &str_val);
|
gst_props_entry_get_string (entry, &str_val);
|
||||||
|
|
Loading…
Reference in a new issue