Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
09820c0c
Commit
09820c0c
authored
Aug 24, 2013
by
Rafaël Carré
Browse files
mp4 mux: use a variable to make the code shorter
parent
317533a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/mux/mp4.c
View file @
09820c0c
...
...
@@ -1154,13 +1154,11 @@ static bo_t *GetStblBox(sout_mux_t *p_mux, mp4_stream_t *p_stream)
/* first, create quantified length */
int64_t
i_dts
=
0
,
i_dts_deq
=
0
;
for
(
unsigned
i
=
0
;
i
<
p_stream
->
i_entry_count
;
i
++
)
{
int64_t
i_delta
=
p_stream
->
entry
[
i
].
i_length
+
i_dts
-
i_dts_deq
;
i_dts
+=
p_stream
->
entry
[
i
].
i_length
;
p_stream
->
entry
[
i
].
i_length
=
i_delta
*
(
int64_t
)
i_timescale
/
CLOCK_FREQ
;
mp4_entry_t
*
e
=
&
p_stream
->
entry
[
i
];
int64_t
i_delta
=
e
->
i_length
+
i_dts
-
i_dts_deq
;
i_dts
+=
e
->
i_length
;
e
->
i_length
=
i_delta
*
(
int64_t
)
i_timescale
/
CLOCK_FREQ
;
i_dts_deq
+=
i_delta
;
}
/* then write encoded table */
...
...
Write
Preview
Supports
Markdown
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