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:
Diffstat (limited to 'source/blender/imbuf/intern/cineon/logImageLib.c')
-rw-r--r--source/blender/imbuf/intern/cineon/logImageLib.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/cineon/logImageLib.c b/source/blender/imbuf/intern/cineon/logImageLib.c
index dc50d93bf18..f97df005fc8 100644
--- a/source/blender/imbuf/intern/cineon/logImageLib.c
+++ b/source/blender/imbuf/intern/cineon/logImageLib.c
@@ -56,7 +56,8 @@ logImageOpen(const char* filename, int cineon)
{
if (cineon) {
return cineonOpen(filename);
- } else {
+ }
+ else {
return dpxOpen(filename);
}
return 0;
@@ -67,7 +68,8 @@ logImageOpenFromMem(unsigned char *buffer, unsigned int size, int cineon)
{
if (cineon) {
return cineonOpenFromMem(buffer, size);
- } else {
+ }
+ else {
return dpxOpenFromMem(buffer, size);
}
return 0;
@@ -78,7 +80,8 @@ logImageCreate(const char* filename, int cineon, int width, int height, int dept
{
if (cineon) {
return cineonCreate(filename, width, height, depth);
- } else {
+ }
+ else {
return dpxCreate(filename, width, height, depth);
}
return 0;
@@ -171,7 +174,8 @@ logImageDump(const char* filename)
#if 0
cineonDump(filename);
#endif
- } else if (magic == ntohl(DPX_FILE_MAGIC)) {
+ }
+ else if (magic == ntohl(DPX_FILE_MAGIC)) {
dpxDump(filename);
}
}