Home
last modified time | relevance | path

Searched refs:asx_entry (Results 1 – 2 of 2) sorted by relevance

/dports/multimedia/libxine/xine-lib-1.2.11/src/demuxers/
H A Ddemux_asf.c1514 xml_node_t *xml_tree, *asx_entry, *asx_ref; in demux_asf_parse_asx_references() local
1538 for (asx_entry = xml_tree->child; asx_entry; asx_entry = asx_entry->next) in demux_asf_parse_asx_references()
1542 if (!strcasecmp (asx_entry->name, "ENTRY")) in demux_asf_parse_asx_references()
1554 for (asx_ref = asx_entry->child; asx_ref; asx_ref = asx_ref->next) in demux_asf_parse_asx_references()
1599 ref_base_href = xml_parser_get_property (asx_entry, "HREF"); in demux_asf_parse_asx_references()
1610 else if (!strcasecmp (asx_entry->name, "ENTRYREF")) in demux_asf_parse_asx_references()
1613 const char *href = xml_parser_get_property (asx_entry, "HREF"); in demux_asf_parse_asx_references()
1619 else if (!strcasecmp (asx_entry->name, "BASE")) in demux_asf_parse_asx_references()
1621 base_href = xml_parser_get_property (asx_entry, "HREF"); in demux_asf_parse_asx_references()
/dports/multimedia/xine/xine-ui-0.99.12/src/xitk/
H A Dmediamark.c1034 xml_node_t *asx_entry, *asx_ref; in xml_asx_playlist() local
1053 asx_entry = xml_tree->child; in xml_asx_playlist()
1054 while(asx_entry) { in xml_asx_playlist()
1055 if((!strcasecmp(asx_entry->name, "ENTRY")) || in xml_asx_playlist()
1056 (!strcasecmp(asx_entry->name, "ENTRYREF"))) { in xml_asx_playlist()
1062 asx_ref = asx_entry->child; in xml_asx_playlist()
1143 asx_entry = asx_entry->next; in xml_asx_playlist()