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 <ideasman42@gmail.com>2012-05-20 23:49:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-20 23:49:27 +0400
commit2d2d36fe3b2f3e7eed7d05714abc80f1a5a82303 (patch)
tree7ad54825db128e59312fbf787555fd91edf09a07 /source/blender/imbuf/intern/indexer_dv.c
parent5d9256404159670bec6d65557697accb5b3111b8 (diff)
code cleanup:
- style - multi-line ifs move braces onto new lines. - iterators - convert some to macros, other split up and move brace.
Diffstat (limited to 'source/blender/imbuf/intern/indexer_dv.c')
-rw-r--r--source/blender/imbuf/intern/indexer_dv.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/indexer_dv.c b/source/blender/imbuf/intern/indexer_dv.c
index 460ca93435e..0090577062f 100644
--- a/source/blender/imbuf/intern/indexer_dv.c
+++ b/source/blender/imbuf/intern/indexer_dv.c
@@ -269,7 +269,8 @@ static void fill_gap(indexer_dv_context *This, int isPAL)
}
while (This->gap_start != This->ref_time_read ||
- This->gap_frame != This->curr_frame) {
+ This->gap_frame != This->curr_frame)
+ {
inc_frame(&This->gap_frame, &This->gap_start, isPAL);
This->frameno_offset++;
}
@@ -320,7 +321,7 @@ static void proc_frame(indexer_dv_context *This,
This->gap_frame = -1;
}
}
- else if (This->ref_time_read_new == This->ref_time_read) {
+ else if (This->ref_time_read_new == This->ref_time_read) {
// do nothing
}
else {