mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 09:38:17 +00:00
fix compile error
Original commit message from CVS: fix compile error
This commit is contained in:
parent
a773e79446
commit
02872d827d
5 changed files with 5 additions and 5 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);
|
||||||
|
|
|
@ -460,7 +460,7 @@ gst_vorbisenc_add_metadata (VorbisEnc *vorbisenc, GstCaps *caps)
|
||||||
prop = (GstPropsEntry*)(props->data);
|
prop = (GstPropsEntry*)(props->data);
|
||||||
props = g_list_next(props);
|
props = g_list_next(props);
|
||||||
|
|
||||||
if (gst_props_entry_get_type (prop) == GST_PROPS_STRING_TYPE) {
|
if (gst_props_entry_get_props_type (prop) == GST_PROPS_STRING_TYPE) {
|
||||||
const gchar *name = gst_props_entry_get_name (prop);
|
const gchar *name = gst_props_entry_get_name (prop);
|
||||||
const gchar *value;
|
const gchar *value;
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue