Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
92aacce5
Commit
92aacce5
authored
Mar 07, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Mar 09, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Remove the unused "dropped" field from struct strmbase_qc.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
09081737
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
renderer.c
dlls/strmbase/renderer.c
+0
-3
strmbase.h
include/wine/strmbase.h
+0
-1
No files found.
dlls/strmbase/renderer.c
View file @
92aacce5
...
...
@@ -62,7 +62,6 @@ static void QualityControlRender_Start(struct strmbase_qc *This, REFERENCE_TIME
This
->
avg_render
=
This
->
last_in_time
=
This
->
last_left
=
This
->
avg_duration
=
This
->
avg_pt
=
-
1
;
This
->
clockstart
=
tStart
;
This
->
avg_rate
=
-
1
.
0
;
This
->
dropped
=
0
;
This
->
is_dropped
=
FALSE
;
}
...
...
@@ -238,8 +237,6 @@ static void QualityControlRender_BeginRender(struct strmbase_qc *This, REFERENCE
This
->
is_dropped
=
QualityControlRender_IsLate
(
This
,
This
->
current_jitter
,
start
,
stop
);
TRACE
(
"dropped %d, start %s, stop %s, jitter %s.
\n
"
,
This
->
is_dropped
,
debugstr_time
(
start
),
debugstr_time
(
stop
),
debugstr_time
(
This
->
current_jitter
));
if
(
This
->
is_dropped
)
This
->
dropped
++
;
if
(
!
This
->
pin
->
filter
->
clock
)
return
;
...
...
include/wine/strmbase.h
View file @
92aacce5
...
...
@@ -282,7 +282,6 @@ struct strmbase_qc
REFERENCE_TIME
last_in_time
,
last_left
,
avg_duration
,
avg_pt
,
avg_render
,
start
,
stop
;
REFERENCE_TIME
current_jitter
,
current_rstart
,
current_rstop
,
clockstart
;
double
avg_rate
;
LONG64
dropped
;
BOOL
is_dropped
;
};
...
...
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