Index: core/src/fxcodec/codec/fx_codec_jpeg.cpp |
diff --git a/core/src/fxcodec/codec/fx_codec_jpeg.cpp b/core/src/fxcodec/codec/fx_codec_jpeg.cpp |
index 52f83586be48ad141b025f43a459c1f6019b6823..e8e075e6b01b00e7ce1a7cfd4a9e78f7205e5d70 100644 |
--- a/core/src/fxcodec/codec/fx_codec_jpeg.cpp |
+++ b/core/src/fxcodec/codec/fx_codec_jpeg.cpp |
@@ -493,9 +493,11 @@ extern "C" { |
int ratio = (iratio_w > iratio_h) ? iratio_h : iratio_w; |
if (ratio >= 8) { |
return 8; |
- } else if (ratio >= 4) { |
+ } |
+ if (ratio >= 4) { |
return 4; |
- } else if (ratio >= 2) { |
+ } |
+ if (ratio >= 2) { |
return 2; |
} |
return 1; |