Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
11e89954
Commit
11e89954
authored
Dec 06, 2012
by
Konstantin Pavlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UPNP SD: extract all resources from DIDL.
Fixes #7776
parent
59d6ab77
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
23 deletions
+28
-23
modules/services_discovery/upnp.cpp
modules/services_discovery/upnp.cpp
+28
-23
No files found.
modules/services_discovery/upnp.cpp
View file @
11e89954
...
...
@@ -874,31 +874,36 @@ bool MediaServer::_fetchContents( Container* p_parent, int i_offset )
if
(
!
title
)
continue
;
const
char
*
resource
=
xml_getChildElementValue
(
itemElement
,
"res"
);
if
(
!
resource
)
continue
;
const
char
*
psz_duration
=
xml_getChildElementAttributeValue
(
itemElement
,
"res"
,
"duration"
);
mtime_t
i_duration
=
-
1
;
int
i_hours
,
i_minutes
,
i_seconds
,
i_decis
;
if
(
psz_duration
)
/* Try to extract all resources in DIDL */
IXML_NodeList
*
p_resource_list
=
ixmlDocument_getElementsByTagName
(
(
IXML_Document
*
)
itemElement
,
"res"
);
if
(
p_resource_list
)
{
if
(
sscanf
(
psz_duration
,
"%02d:%02d:%02d.%d"
,
&
i_hours
,
&
i_minutes
,
&
i_seconds
,
&
i_decis
))
i_duration
=
INT64_C
(
1000000
)
*
(
i_hours
*
3600
+
i_minutes
*
60
+
i_seconds
)
+
INT64_C
(
100000
)
*
i_decis
;
}
int
i_length
=
ixmlNodeList_length
(
p_resource_list
);
for
(
int
i
=
0
;
i
<
i_length
;
i
++
)
{
mtime_t
i_duration
=
-
1
;
int
i_hours
,
i_minutes
,
i_seconds
,
i_decis
;
IXML_Element
*
p_resource
=
(
IXML_Element
*
)
ixmlNodeList_item
(
p_resource_list
,
i
);
const
char
*
psz_resource_url
=
xml_getChildElementValue
(
p_resource
,
"res"
);
if
(
!
psz_resource_url
)
continue
;
const
char
*
psz_duration
=
ixmlElement_getAttribute
(
p_resource
,
"duration"
);
Item
*
item
=
new
Item
(
p_parent
,
objectID
,
title
,
resource
,
i_duration
);
p_parent
->
addItem
(
item
);
if
(
psz_duration
)
{
if
(
sscanf
(
psz_duration
,
"%02d:%02d:%02d.%d"
,
&
i_hours
,
&
i_minutes
,
&
i_seconds
,
&
i_decis
))
i_duration
=
INT64_C
(
1000000
)
*
(
i_hours
*
3600
+
i_minutes
*
60
+
i_seconds
)
+
INT64_C
(
100000
)
*
i_decis
;
}
Item
*
item
=
new
Item
(
p_parent
,
objectID
,
title
,
psz_resource_url
,
i_duration
);
p_parent
->
addItem
(
item
);
}
ixmlNodeList_free
(
p_resource_list
);
}
else
continue
;
}
ixmlNodeList_free
(
itemNodeList
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment