Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
78d20969
Commit
78d20969
authored
Feb 16, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move podcast meta info to "Podcast Info" category
parent
c17290dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
modules/demux/playlist/podcast.c
modules/demux/playlist/podcast.c
+15
-15
No files found.
modules/demux/playlist/podcast.c
View file @
78d20969
...
...
@@ -286,7 +286,7 @@ static int Demux( demux_t *p_demux )
&&
!
strcmp
(
psz_elname
,
"link"
)
)
{
vlc_input_item_AddInfo
(
&
(
p_current
->
input
),
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Link"
),
"%s"
,
psz_text
);
...
...
@@ -295,7 +295,7 @@ static int Demux( demux_t *p_demux )
&&
!
strcmp
(
psz_elname
,
"copyright"
)
)
{
vlc_input_item_AddInfo
(
&
(
p_current
->
input
),
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Copyright"
),
"%s"
,
psz_text
);
...
...
@@ -304,7 +304,7 @@ static int Demux( demux_t *p_demux )
&&
!
strcmp
(
psz_elname
,
"itunes:category"
)
)
{
vlc_input_item_AddInfo
(
&
(
p_current
->
input
),
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Category"
),
"%s"
,
psz_text
);
...
...
@@ -313,7 +313,7 @@ static int Demux( demux_t *p_demux )
&&
!
strcmp
(
psz_elname
,
"itunes:keywords"
)
)
{
vlc_input_item_AddInfo
(
&
(
p_current
->
input
),
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Keywords"
),
"%s"
,
psz_text
);
...
...
@@ -322,7 +322,7 @@ static int Demux( demux_t *p_demux )
&&
!
strcmp
(
psz_elname
,
"itunes:subtitle"
)
)
{
vlc_input_item_AddInfo
(
&
(
p_current
->
input
),
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Subtitle"
),
"%s"
,
psz_text
);
...
...
@@ -332,7 +332,7 @@ static int Demux( demux_t *p_demux )
||!
strcmp
(
psz_elname
,
"description"
)
)
)
{
/* <description> isn't standard iTunes podcast stuff */
vlc_input_item_AddInfo
(
&
(
p_current
->
input
),
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Summary"
),
"%s"
,
psz_text
);
...
...
@@ -369,7 +369,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_date
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Publication Date"
),
"%s"
,
psz_item_date
);
...
...
@@ -377,7 +377,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_author
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Author"
),
"%s"
,
psz_item_author
);
...
...
@@ -385,7 +385,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_category
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Subcategory"
),
"%s"
,
psz_item_category
);
...
...
@@ -393,7 +393,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_duration
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Duration"
),
"%s"
,
psz_item_duration
);
...
...
@@ -401,7 +401,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_keywords
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Keywords"
),
"%s"
,
psz_item_keywords
);
...
...
@@ -409,7 +409,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_subtitle
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Subtitle"
),
"%s"
,
psz_item_subtitle
);
...
...
@@ -417,7 +417,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_summary
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Summary"
),
"%s"
,
psz_item_summary
);
...
...
@@ -425,7 +425,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_size
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Size"
),
"%s bytes"
,
psz_item_size
);
...
...
@@ -433,7 +433,7 @@ static int Demux( demux_t *p_demux )
if
(
psz_item_type
)
{
vlc_input_item_AddInfo
(
&
p_item
->
input
,
_
(
VLC_META_INFO_CAT
),
_
(
"Podcast Info"
),
_
(
"Podcast Type"
),
"%s"
,
psz_item_type
);
...
...
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