Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
02ea19ed
Commit
02ea19ed
authored
Dec 20, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used VLC_TS_0 in AU demuxer.
AU demuxer is VLC_TS_INVALID 'compliant'.
parent
643080c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/demux/au.c
modules/demux/au.c
+3
-3
No files found.
modules/demux/au.c
View file @
02ea19ed
...
...
@@ -132,7 +132,7 @@ static int Open( vlc_object_t *p_this )
}
DEMUX_INIT_COMMON
();
p_sys
=
p_demux
->
p_sys
;
p_sys
->
i_time
=
1
;
p_sys
->
i_time
=
0
;
p_sys
->
i_header_size
=
GetDWBE
(
&
hdr
[
0
]
);
/* skip extra header data */
...
...
@@ -293,7 +293,7 @@ static int Demux( demux_t *p_demux )
block_t
*
p_block
;
/* set PCR */
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_sys
->
i_time
);
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
VLC_TS_0
+
p_sys
->
i_time
);
if
(
(
p_block
=
stream_Block
(
p_demux
->
s
,
p_sys
->
i_frame_size
)
)
==
NULL
)
{
...
...
@@ -302,7 +302,7 @@ static int Demux( demux_t *p_demux )
}
p_block
->
i_dts
=
p_block
->
i_pts
=
p_sys
->
i_time
;
p_block
->
i_pts
=
VLC_TS_0
+
p_sys
->
i_time
;
es_out_Send
(
p_demux
->
out
,
p_sys
->
es
,
p_block
);
...
...
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