]> git.sesse.net Git - ffmpeg/commitdiff
lavf/sr: Refine the coding style for init
authorJun Zhao <barryjzhao@tencent.com>
Sat, 1 Jun 2019 03:28:56 +0000 (11:28 +0800)
committerJun Zhao <barryjzhao@tencent.com>
Mon, 3 Jun 2019 05:04:23 +0000 (13:04 +0800)
We perfer the coding style like:

/* some stuff */
if (error) {
    /* error handling */
    return -(errorcode);
}
/* normal actions */
do_something()

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
libavfilter/vf_sr.c

index 0be572ff9d1d01ed03669c14aad086d9b8dc2ab1..0433246e26516c8a18869ceea4ac213699fb9681 100644 (file)
@@ -72,17 +72,16 @@ static av_cold int init(AVFilterContext *context)
         av_log(context, AV_LOG_ERROR, "could not create DNN module for requested backend\n");
         return AVERROR(ENOMEM);
     }
+
     if (!sr_context->model_filename){
         av_log(context, AV_LOG_ERROR, "model file for network was not specified\n");
         return AVERROR(EIO);
-    } else {
-        if (!sr_context->dnn_module->load_model) {
-            av_log(context, AV_LOG_ERROR, "load_model for network was not specified\n");
-            return AVERROR(EIO);
-        } else {
-            sr_context->model = (sr_context->dnn_module->load_model)(sr_context->model_filename);
-        }
     }
+    if (!sr_context->dnn_module->load_model) {
+        av_log(context, AV_LOG_ERROR, "load_model for network was not specified\n");
+        return AVERROR(EIO);
+    }
+    sr_context->model = (sr_context->dnn_module->load_model)(sr_context->model_filename);
     if (!sr_context->model){
         av_log(context, AV_LOG_ERROR, "could not load DNN model\n");
         return AVERROR(EIO);