Remove unnecessary initialization
authorYaowu Xu <yaowu@google.com>
Wed, 4 Feb 2015 02:03:51 +0000 (18:03 -0800)
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>
Wed, 4 Feb 2015 21:56:16 +0000 (13:56 -0800)
loop_filter_level is always reset in loop_filter_frame() later in
encoder.

Change-Id: I608e03d905a6b23e7d5025ca747e4784c665007e

vp9/encoder/vp9_encodeframe.c

index 776e1fe..d17b051 100644 (file)
@@ -3700,10 +3700,8 @@ static void encode_frame_internal(VP9_COMP *cpi) {
 #endif  // CONFIG_VP9_HIGHBITDEPTH
   x->itxm_add = xd->lossless ? vp9_iwht4x4_add : vp9_idct4x4_add;
 
-  if (xd->lossless) {
+  if (xd->lossless)
     x->optimize = 0;
-    cm->lf.filter_level = 0;
-  }
 
   cm->tx_mode = select_tx_mode(cpi, xd);