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
e58236de
Commit
e58236de
authored
Oct 27, 2013
by
Edward Wang
Committed by
Rémi Denis-Courmont
Oct 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvb: remove psz_demux hack
Ref #8449 Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
39faaf58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/access/dvb/access.c
modules/access/dvb/access.c
+4
-2
No files found.
modules/access/dvb/access.c
View file @
e58236de
...
@@ -172,8 +172,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -172,8 +172,6 @@ static int Open( vlc_object_t *p_this )
}
}
/* Set up access */
/* Set up access */
free
(
p_access
->
psz_demux
);
p_access
->
psz_demux
=
strdup
(
"m3u8"
);
p_access
->
pf_read
=
NULL
;
p_access
->
pf_read
=
NULL
;
p_access
->
pf_control
=
Control
;
p_access
->
pf_control
=
Control
;
p_access
->
pf_seek
=
NULL
;
p_access
->
pf_seek
=
NULL
;
...
@@ -373,6 +371,10 @@ static int Control( access_t *p_access, int i_query, va_list args )
...
@@ -373,6 +371,10 @@ static int Control( access_t *p_access, int i_query, va_list args )
*
pb_bool
=
false
;
*
pb_bool
=
false
;
break
;
break
;
case
ACCESS_GET_CONTENT_TYPE
:
*
va_arg
(
args
,
char
**
)
=
strdup
(
"application/vnd.apple.mpegurl"
);
// m3u8
return
VLC_SUCCESS
;
case
ACCESS_GET_PTS_DELAY
:
case
ACCESS_GET_PTS_DELAY
:
pi_64
=
(
int64_t
*
)
va_arg
(
args
,
int64_t
*
);
pi_64
=
(
int64_t
*
)
va_arg
(
args
,
int64_t
*
);
*
pi_64
=
DEFAULT_PTS_DELAY
;
*
pi_64
=
DEFAULT_PTS_DELAY
;
...
...
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