Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
646e343f
Commit
646e343f
authored
Oct 20, 2007
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* disabled stats updater as internal libvlc headers may not be used in modules. needs a real fix
parent
62ffefd4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+9
-1
No files found.
modules/stream_out/transcode.c
View file @
646e343f
...
...
@@ -40,8 +40,10 @@
#define MASTER_SYNC_MAX_DRIFT 100000
/* FIXME Ugly */
/* FIXME Ugly, needed for (disabled) stats updates */
#if 0
#include "../../src/input/input_internal.h"
#endif
/*****************************************************************************
* Module descriptor
...
...
@@ -1558,9 +1560,12 @@ static int transcode_audio_process( sout_stream_t *p_stream,
while
(
(
p_audio_buf
=
id
->
p_decoder
->
pf_decode_audio
(
id
->
p_decoder
,
&
in
))
)
{
#warning Stats not implemented!
#if 0
if( p_input )
stats_UpdateInteger( p_input, p_input->p->counters.p_decoded_audio,
1, NULL );
#endif
if
(
p_sys
->
b_master_sync
)
{
mtime_t
i_dts
=
date_Get
(
&
id
->
interpolated_pts
)
+
1
;
...
...
@@ -2159,9 +2164,12 @@ static int transcode_video_process( sout_stream_t *p_stream,
while
(
(
p_pic
=
id
->
p_decoder
->
pf_decode_video
(
id
->
p_decoder
,
&
in
))
)
{
subpicture_t
*
p_subpic
=
NULL
;
#warning Stats not implemented!
#if 0
if( p_input )
stats_UpdateInteger( p_input, p_input->p->counters.p_decoded_video,
1, NULL );
#endif
if
(
p_stream
->
p_sout
->
i_out_pace_nocontrol
&&
p_sys
->
b_hurry_up
)
{
...
...
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