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
8a8c5e19
Commit
8a8c5e19
authored
Feb 16, 2014
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stats: calculate average track segment sample 'duration'
parent
bb0db48b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
modules/stream_out/stats.c
modules/stream_out/stats.c
+6
-4
No files found.
modules/stream_out/stats.c
View file @
8a8c5e19
...
...
@@ -193,14 +193,16 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_sys_t *id )
EndMD5
(
&
id
->
hash
);
char
*
outputhash
=
psz_md5_hash
(
&
id
->
hash
);
unsigned
int
num
,
den
;
vlc_ureduce
(
&
num
,
&
den
,
id
->
track_duration
,
id
->
segment_number
,
0
);
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
" total_duration:%"
PRId64
" md5:%16s
\n
"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
,
id
->
segment_number
,
id
->
track_duration
,
outputhash
);
fprintf
(
p_sys
->
output
,
"#%s: final type:%s id:%d segments:%"
PRIu64
" total_duration:%"
PRId64
"
avg_track:%d/%d
md5:%16s
\n
"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
,
id
->
segment_number
,
id
->
track_duration
,
num
,
den
,
outputhash
);
}
else
{
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
);
msg_Info
(
p_stream
,
"%s: final type:%s id:%d segments:%"
PRIu64
" total_duration:%"
PRId64
"
avg_track:%d/%d
md5:%16s"
,
p_sys
->
prefix
,
id
->
type
,
id
->
id
,
id
->
segment_number
,
id
->
track_duration
,
num
,
den
,
outputhash
);
}
free
(
outputhash
);
if
(
id
->
next_id
)
sout_StreamIdDel
(
p_stream
->
p_next
,
id
->
next_id
);
...
...
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