Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2f6ff2ac
Commit
2f6ff2ac
authored
Aug 20, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/playlist/dvb.c: playlist import for szap/tzap/czap compatible DVB channel lists.
parent
7775a048
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
345 additions
and
1 deletion
+345
-1
modules/demux/playlist/Modules.am
modules/demux/playlist/Modules.am
+2
-1
modules/demux/playlist/dvb.c
modules/demux/playlist/dvb.c
+335
-0
modules/demux/playlist/playlist.c
modules/demux/playlist/playlist.c
+5
-0
modules/demux/playlist/playlist.h
modules/demux/playlist/playlist.h
+3
-0
No files found.
modules/demux/playlist/Modules.am
View file @
2f6ff2ac
...
...
@@ -3,4 +3,5 @@ SOURCES_playlist = playlist.c \
old.c \
m3u.c \
b4s.c \
pls.c
pls.c \
dvb.c
modules/demux/playlist/dvb.c
0 → 100644
View file @
2f6ff2ac
This diff is collapsed.
Click to expand it.
modules/demux/playlist/playlist.c
View file @
2f6ff2ac
...
...
@@ -74,6 +74,11 @@ vlc_module_begin();
add_shortcut
(
"shout-b4s"
);
set_capability
(
"demux2"
,
10
);
set_callbacks
(
E_
(
Import_B4S
),
E_
(
Close_B4S
)
);
add_submodule
();
set_description
(
_
(
"DVB playlist import"
)
);
add_shortcut
(
"dvb-open"
);
set_capability
(
"demux2"
,
10
);
set_callbacks
(
E_
(
Import_DVB
),
E_
(
Close_DVB
)
);
vlc_module_end
();
...
...
modules/demux/playlist/playlist.h
View file @
2f6ff2ac
...
...
@@ -39,3 +39,6 @@ void E_(Close_PLS) ( vlc_object_t * );
int
E_
(
Import_B4S
)
(
vlc_object_t
*
);
void
E_
(
Close_B4S
)
(
vlc_object_t
*
);
int
E_
(
Import_DVB
)
(
vlc_object_t
*
);
void
E_
(
Close_DVB
)
(
vlc_object_t
*
);
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