Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
2f676d81
Commit
2f676d81
authored
Mar 13, 2004
by
Laurent Aimar
Browse files
* mpeg4video: more cludges (it should be rewritten to calculate true
dts/pts ...)
parent
3de8decd
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/packetizer/mpeg4video.c
View file @
2f676d81
...
...
@@ -312,7 +312,10 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
{
p_sys
->
i_pts
=
p_block
->
i_dts
;
}
p_sys
->
i_dts
=
p_block
->
i_dts
;
if
(
p_block
->
i_dts
>
0
)
{
p_sys
->
i_dts
=
p_block
->
i_dts
;
}
}
p_start
+=
4
;
/* Next */
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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