Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Albert Gräf
Gem
Commits
18ec1d8a
Commit
18ec1d8a
authored
Feb 11, 2019
by
IOhannes m zmölnig
Browse files
removed more unused variables
parent
3f086bdf
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/filmDS/filmDS.cpp
View file @
18ec1d8a
...
...
@@ -401,9 +401,7 @@ public:
bEndReached
=
false
;
bNewPixels
=
false
;
bFrameNew
=
false
;
curMovieFrame
=
-
1
;
curMovieTime
=
-
1.
;
frameCount
=
-
1
;
bNewlyOpened
=
false
;
movieRate
=
1.0
;
...
...
@@ -451,7 +449,6 @@ MARK();
if
(
Time
!=
curMovieTime
)
bFrameNew
=
true
;
curMovieTime
=
Time
;
frameCount
++
;
LeaveCriticalSection
(
&
critSection
);
}
else
{
...
...
@@ -733,13 +730,6 @@ MARK();
long
ptrParam2
=
0
;
#endif
if
(
curMovieFrame
!=
frameCount
)
{
bFrameNew
=
true
;
}
else
{
bFrameNew
=
false
;
}
curMovieFrame
=
frameCount
;
while
(
S_OK
==
m_pEvent
->
GetEvent
(
&
eventCode
,
&
ptrParam1
,
&
ptrParam2
,
0
))
{
if
(
eventCode
==
EC_COMPLETE
)
{
if
(
bLoop
)
{
...
...
@@ -1124,8 +1114,6 @@ protected:
bool
bEndReached
;
double
movieRate
;
double
curMovieTime
;
int
curMovieFrame
;
int
frameCount
;
bool
bNewlyOpened
;
CRITICAL_SECTION
critSection
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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