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
6a8cb0a6
Commit
6a8cb0a6
authored
May 15, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* avi: add +1 to PCR/DTS/PTS.
parent
fc06c7aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+4
-4
No files found.
modules/demux/avi/avi.c
View file @
6a8cb0a6
...
...
@@ -615,7 +615,7 @@ static int Demux_Seekable( demux_t *p_demux )
}
/* wait for the good time */
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_sys
->
i_time
);
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_sys
->
i_time
+
1
);
p_sys
->
i_time
+=
25
*
1000
;
/* read 25ms */
/* init toread */
...
...
@@ -836,7 +836,7 @@ static int Demux_Seekable( demux_t *p_demux )
p_frame
->
p_buffer
+=
8
;
p_frame
->
i_buffer
-=
8
;
}
p_frame
->
i_pts
=
AVI_GetPTS
(
tk
);
p_frame
->
i_pts
=
AVI_GetPTS
(
tk
)
+
1
;
if
(
tk
->
p_index
[
tk
->
i_idxposc
].
i_flags
&
AVIIF_KEYFRAME
)
{
p_frame
->
i_flags
=
BLOCK_FLAG_TYPE_I
;
...
...
@@ -917,7 +917,7 @@ static int Demux_UnSeekable( demux_t *p_demux )
unsigned
int
i_stream
;
unsigned
int
i_packet
;
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_sys
->
i_time
);
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_sys
->
i_time
+
1
);
/* *** find master stream for data packet skipping algo *** */
/* *** -> first video, if any, or first audio ES *** */
...
...
@@ -998,7 +998,7 @@ static int Demux_UnSeekable( demux_t *p_demux )
{
return
(
-
1
);
}
p_frame
->
i_pts
=
AVI_GetPTS
(
p_stream
);
p_frame
->
i_pts
=
AVI_GetPTS
(
p_stream
)
+
1
;
if
(
avi_pk
.
i_cat
!=
VIDEO_ES
)
p_frame
->
i_dts
=
p_frame
->
i_pts
;
...
...
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