Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-08-26 05:51:46 +0300
committerCampbell Barton <campbell@blender.org>2022-08-26 05:51:46 +0300
commit6fc7b37583a2fa0815ae50b8c604f823d863cab1 (patch)
treebbb02a7a513e43a634739c93904f5b23ad913ae0 /source/blender/sequencer/intern/strip_edit.c
parenta3e1a9e2aace26a71c2698cd96ce4086db25e94d (diff)
Cleanup: reduce variable scope
Diffstat (limited to 'source/blender/sequencer/intern/strip_edit.c')
-rw-r--r--source/blender/sequencer/intern/strip_edit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/sequencer/intern/strip_edit.c b/source/blender/sequencer/intern/strip_edit.c
index 15c472dd5a7..726205d18d3 100644
--- a/source/blender/sequencer/intern/strip_edit.c
+++ b/source/blender/sequencer/intern/strip_edit.c
@@ -96,12 +96,11 @@ static void seq_update_muting_recursive(ListBase *channels,
int mute)
{
Sequence *seq;
- int seqmute;
/* For sound we go over full meta tree to update muted state,
* since sound is played outside of evaluating the imbufs. */
for (seq = seqbasep->first; seq; seq = seq->next) {
- seqmute = (mute || SEQ_render_is_muted(channels, seq));
+ int seqmute = (mute || SEQ_render_is_muted(channels, seq));
if (seq->type == SEQ_TYPE_META) {
/* if this is the current meta sequence, unmute because