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
f2b009c1
Commit
f2b009c1
authored
May 12, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* videoportals.c: Add title support for dailymotion videos.
parent
27f623d2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
modules/demux/playlist/videoportals.c
modules/demux/playlist/videoportals.c
+11
-1
No files found.
modules/demux/playlist/videoportals.c
View file @
f2b009c1
...
...
@@ -150,8 +150,18 @@ int E_(Import_VideoPortal)( vlc_object_t *p_this )
psz_url
=
strdup
(
psz_cur
);
decode_URI
(
psz_url
);
*
psz_tmp
=
'&'
;
break
;
}
if
(
(
psz_cur
=
strstr
(
psz_line
,
"<title>"
)
)
)
{
char
*
psz_tmp
;
psz_cur
+=
strlen
(
"<title>"
);
psz_tmp
=
strchr
(
psz_cur
,
'<'
);
*
psz_tmp
=
0
;
psz_title
=
strdup
(
psz_cur
);
decode_URI
(
psz_title
);
*
psz_tmp
=
'<'
;
}
if
(
psz_url
&&
psz_title
)
break
;
}
}
}
...
...
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