• Home
  • Raw
  • Download

Lines Matching refs:property_name

335     const gchar * property_name, gchar ** property_value,  in gst_xml_helper_get_prop_validated_string()  argument
341 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_validated_string()
350 GST_LOG (" - %s: %s", property_name, prop_string); in gst_xml_helper_get_prop_validated_string()
358 const gchar * ns_name, const gchar * property_name, gchar ** property_value) in gst_xml_helper_get_ns_prop_string() argument
364 xmlGetNsProp (a_node, (const xmlChar *) property_name, in gst_xml_helper_get_ns_prop_string()
369 GST_LOG (" - %s:%s: %s", ns_name, property_name, prop_string); in gst_xml_helper_get_ns_prop_string()
377 const gchar * property_name, gchar ** property_value) in gst_xml_helper_get_prop_string() argument
379 return gst_xml_helper_get_prop_validated_string (a_node, property_name, in gst_xml_helper_get_prop_string()
385 const gchar * property_name, gchar *** property_value) in gst_xml_helper_get_prop_string_vector_type() argument
392 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_string_vector_type()
398 GST_LOG (" - %s:", property_name); in gst_xml_helper_get_prop_string_vector_type()
414 const gchar * property_name, gint default_val, gint * property_value) in gst_xml_helper_get_prop_signed_integer() argument
420 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_signed_integer()
424 GST_LOG (" - %s: %d", property_name, *property_value); in gst_xml_helper_get_prop_signed_integer()
428 property_name, prop_string); in gst_xml_helper_get_prop_signed_integer()
438 const gchar * property_name, guint default_val, guint * property_value) in gst_xml_helper_get_prop_unsigned_integer() argument
444 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_unsigned_integer()
449 GST_LOG (" - %s: %u", property_name, *property_value); in gst_xml_helper_get_prop_unsigned_integer()
453 property_name, prop_string); in gst_xml_helper_get_prop_unsigned_integer()
465 const gchar * property_name, guint64 default_val, guint64 * property_value) in gst_xml_helper_get_prop_unsigned_integer_64() argument
471 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_unsigned_integer_64()
476 GST_LOG (" - %s: %" G_GUINT64_FORMAT, property_name, *property_value); in gst_xml_helper_get_prop_unsigned_integer_64()
480 property_name, prop_string); in gst_xml_helper_get_prop_unsigned_integer_64()
490 const gchar * property_name, guint ** property_value, guint * value_size) in gst_xml_helper_get_prop_uint_vector_type() argument
497 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_uint_vector_type()
505 GST_LOG (" - %s:", property_name); in gst_xml_helper_get_prop_uint_vector_type()
513 property_name, str_vector[i]); in gst_xml_helper_get_prop_uint_vector_type()
540 const gchar * property_name, gdouble * property_value) in gst_xml_helper_get_prop_double() argument
545 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_double()
549 GST_LOG (" - %s: %lf", property_name, *property_value); in gst_xml_helper_get_prop_double()
552 property_name, prop_string); in gst_xml_helper_get_prop_double()
562 const gchar * property_name, gboolean default_val, in gst_xml_helper_get_prop_boolean() argument
569 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_boolean()
574 GST_LOG (" - %s: false", property_name); in gst_xml_helper_get_prop_boolean()
578 GST_LOG (" - %s: true", property_name); in gst_xml_helper_get_prop_boolean()
581 property_name, prop_string); in gst_xml_helper_get_prop_boolean()
591 const gchar * property_name, GstXMLRange ** property_value) in gst_xml_helper_get_prop_range() argument
599 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_range()
643 property_name, first_byte_pos, last_byte_pos); in gst_xml_helper_get_prop_range()
649 GST_WARNING ("failed to parse property %s from xml string %s", property_name, in gst_xml_helper_get_prop_range()
657 const gchar * property_name, GstXMLRatio ** property_value) in gst_xml_helper_get_prop_ratio() argument
665 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_ratio()
699 GST_LOG (" - %s: %u:%u", property_name, num, den); in gst_xml_helper_get_prop_ratio()
705 GST_WARNING ("failed to parse property %s from xml string %s", property_name, in gst_xml_helper_get_prop_ratio()
713 const gchar * property_name, GstXMLFrameRate ** property_value) in gst_xml_helper_get_prop_framerate() argument
721 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_framerate()
753 GST_LOG (" - %s: %u", property_name, num); in gst_xml_helper_get_prop_framerate()
755 GST_LOG (" - %s: %u/%u", property_name, num, den); in gst_xml_helper_get_prop_framerate()
761 GST_WARNING ("failed to parse property %s from xml string %s", property_name, in gst_xml_helper_get_prop_framerate()
769 const gchar * property_name, GstXMLConditionalUintType ** property_value) in gst_xml_helper_get_prop_cond_uint() argument
777 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_cond_uint()
800 GST_LOG (" - %s: flag=%s val=%u", property_name, flag ? "true" : "false", in gst_xml_helper_get_prop_cond_uint()
807 GST_WARNING ("failed to parse property %s from xml string %s", property_name, in gst_xml_helper_get_prop_cond_uint()
815 const gchar * property_name, GstDateTime ** property_value) in gst_xml_helper_get_prop_dateTime() argument
826 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_dateTime()
871 GST_LOG (" - %s: %4d/%02d/%02d %02d:%02d:%09.6lf", property_name, in gst_xml_helper_get_prop_dateTime()
924 GST_WARNING ("failed to parse property %s from xml string %s", property_name, in gst_xml_helper_get_prop_dateTime()
932 const gchar * property_name, guint64 default_value, in gst_xml_helper_get_prop_duration() argument
940 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_duration()
945 GST_LOG (" - %s: %" G_GUINT64_FORMAT, property_name, *property_value); in gst_xml_helper_get_prop_duration()
1056 const gchar * property_name, gchar ** property_value) in gst_xml_helper_get_prop_string_stripped() argument
1059 ret = gst_xml_helper_get_prop_string (a_node, property_name, property_value); in gst_xml_helper_get_prop_string_stripped()
1067 const gchar * property_name, gchar ** property_value) in gst_xml_helper_get_prop_string_no_whitespace() argument
1069 return gst_xml_helper_get_prop_validated_string (a_node, property_name, in gst_xml_helper_get_prop_string_no_whitespace()