Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
cf68b7c5
Commit
cf68b7c5
authored
Mar 05, 2010
by
Hugo Beauzee-Luyssen
Browse files
Avoid flushing audio buffers when rendering.
parent
b87e3af5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Workflow/TrackWorkflow.cpp
View file @
cf68b7c5
...
...
@@ -153,7 +153,8 @@ TrackWorkflow::renderClip( ClipWorkflow* cw, qint64 currentFrame,
cw
->
getStateLock
()
->
unlock
();
cw
->
initialize
();
cw
->
waitForCompleteInit
();
if
(
start
!=
currentFrame
||
cw
->
getClip
()
->
begin
()
!=
0
)
//Clip was not started as its real begining
//We check for a difference greater than one to avoid false positive when starting.
if
(
(
start
-
currentFrame
>
1
)
||
cw
->
getClip
()
->
begin
()
!=
0
)
//Clip was not started as its real begining
{
adjustClipTime
(
currentFrame
,
start
,
cw
);
}
...
...
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