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
70160213
Commit
70160213
authored
Dec 02, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: asf: remember extended stream parameters for tracks
parent
215c6ac6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
modules/demux/asf/asf.c
modules/demux/asf/asf.c
+3
-0
No files found.
modules/demux/asf/asf.c
View file @
70160213
...
@@ -75,6 +75,7 @@ typedef struct
...
@@ -75,6 +75,7 @@ typedef struct
es_out_id_t
*
p_es
;
es_out_id_t
*
p_es
;
asf_object_stream_properties_t
*
p_sp
;
asf_object_stream_properties_t
*
p_sp
;
asf_object_extended_stream_properties_t
*
p_esp
;
mtime_t
i_time
;
mtime_t
i_time
;
...
@@ -937,6 +938,7 @@ static int DemuxInit( demux_t *p_demux )
...
@@ -937,6 +938,7 @@ static int DemuxInit( demux_t *p_demux )
tk
->
i_time
=
-
1
;
tk
->
i_time
=
-
1
;
tk
->
p_sp
=
p_sp
;
tk
->
p_sp
=
p_sp
;
tk
->
p_es
=
NULL
;
tk
->
p_es
=
NULL
;
tk
->
p_esp
=
NULL
;
tk
->
p_frame
=
NULL
;
tk
->
p_frame
=
NULL
;
/* Check (in case of mms) if this track is selected (ie will receive data) */
/* Check (in case of mms) if this track is selected (ie will receive data) */
...
@@ -963,6 +965,7 @@ static int DemuxInit( demux_t *p_demux )
...
@@ -963,6 +965,7 @@ static int DemuxInit( demux_t *p_demux )
if
(
p_tmp
->
ext_stream
.
i_stream_number
==
p_sp
->
i_stream_number
)
if
(
p_tmp
->
ext_stream
.
i_stream_number
==
p_sp
->
i_stream_number
)
{
{
p_esp
=
&
p_tmp
->
ext_stream
;
p_esp
=
&
p_tmp
->
ext_stream
;
tk
->
p_esp
=
p_esp
;
break
;
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