From 735515a3f9e4c41738bf714d682b13db64adb638 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 22 Apr 2019 09:39:35 +1000 Subject: Cleanup: style, use braces for blenkernel --- source/blender/blenkernel/intern/writeavi.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'source/blender/blenkernel/intern/writeavi.c') diff --git a/source/blender/blenkernel/intern/writeavi.c b/source/blender/blenkernel/intern/writeavi.c index 9f76f1022d1..b72b99e514d 100644 --- a/source/blender/blenkernel/intern/writeavi.c +++ b/source/blender/blenkernel/intern/writeavi.c @@ -163,8 +163,9 @@ static void filepath_avi(char *string, RenderData *rd, bool preview, const char { int sfra, efra; - if (string == NULL) + if (string == NULL) { return; + } if (preview) { sfra = rd->psfra; @@ -219,10 +220,12 @@ static int start_avi(void *context_v, quality = rd->im_format.quality; framerate = (double)rd->frs_sec / (double)rd->frs_sec_base; - if (rd->im_format.imtype != R_IMF_IMTYPE_AVIJPEG) + if (rd->im_format.imtype != R_IMF_IMTYPE_AVIJPEG) { format = AVI_FORMAT_AVI_RGB; - else + } + else { format = AVI_FORMAT_MJPEG; + } if (AVI_open_compress(name, avi, 1, format) != AVI_ERROR_NONE) { BKE_report(reports, RPT_ERROR, "Cannot open or start AVI movie file"); @@ -256,8 +259,9 @@ static int append_avi(void *context_v, char *cp, rt; AviMovie *avi = context_v; - if (avi == NULL) + if (avi == NULL) { return 0; + } /* note that libavi free's the buffer... stupid interface - zr */ rectot = MEM_mallocN(rectx * recty * sizeof(int), "rectot"); @@ -289,8 +293,9 @@ static void end_avi(void *context_v) { AviMovie *avi = context_v; - if (avi == NULL) + if (avi == NULL) { return; + } AVI_close_compress(avi); } -- cgit v1.2.3