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
bb0db48b
Commit
bb0db48b
authored
Feb 16, 2014
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stats: calculate track length
parent
1785bf6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
modules/stream_out/stats.c
modules/stream_out/stats.c
+7
-5
No files found.
modules/stream_out/stats.c
View file @
bb0db48b
...
...
@@ -83,7 +83,7 @@ struct sout_stream_id_sys_t
uint64_t
segment_number
;
void
*
next_id
;
const
char
*
type
;
mtime_t
previous_dts
;
mtime_t
previous_dts
,
track_duration
;
struct
md5_s
hash
;
};
...
...
@@ -176,6 +176,7 @@ static sout_stream_id_sys_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
id
->
next_id
=
NULL
;
id
->
segment_number
=
0
;
id
->
previous_dts
=
VLC_TS_INVALID
;
id
->
track_duration
=
0
;
InitMD5
(
&
id
->
hash
);
msg_Dbg
(
p_stream
,
"%s: Adding track type:%s id:%d"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
);
...
...
@@ -195,11 +196,11 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_sys_t *id )
msg_Dbg
(
p_stream
,
"%s: Removing track type:%s id:%d"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
);
if
(
p_sys
->
output
)
{
fprintf
(
p_sys
->
output
,
"#%s: final type:%s id:%d segments:%"
PRIu64
" md5:%16s
\n
"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
,
id
->
segment_number
,
outputhash
);
fprintf
(
p_sys
->
output
,
"#%s: final type:%s id:%d segments:%"
PRIu64
"
total_duration:%"
PRId64
"
md5:%16s
\n
"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
,
id
->
segment_number
,
id
->
track_duration
,
outputhash
);
}
else
{
msg_Info
(
p_stream
,
"%s: final type:%s id:%d segments:%"
PRIu64
" md5:%16s"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
,
id
->
segment_number
,
outputhash
);
msg_Info
(
p_stream
,
"%s: final type:%s id:%d segments:%"
PRIu64
"
total_duration:%"
PRId64
"
md5:%16s"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
,
id
->
segment_number
,
id
->
track_duration
,
outputhash
);
}
free
(
outputhash
);
if
(
id
->
next_id
)
sout_StreamIdDel
(
p_stream
->
p_next
,
id
->
next_id
);
...
...
@@ -241,6 +242,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_sys_t *id,
p_sys
->
prefix
,
id
->
id
,
id
->
type
,
++
id
->
segment_number
,
dts_difference
,
p_block
->
i_length
,
outputhash
);
}
id
->
track_duration
+=
p_block
->
i_length
?
p_block
->
i_length
:
dts_difference
;
free
(
outputhash
);
id
->
previous_dts
=
p_block
->
i_dts
;
p_block
=
p_block
->
p_next
;
...
...
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