Fix interp filter type bit cost calculation

Fix interp filter type bit cost calculation when dual fitler
is disabled, which is the case for speed >= 2 currently.

Coding gains for speed 2 (150 frames, constant-q mode):
lowres 0.22%
midres 0.15%

STATS_CHANGED for speed >= 2.

Change-Id: I1057cf806b08e0144bdb6902c100de81e190a0aa
(cherry picked from commit 22100852882b21a0972c149789d7468d7f73f8ba)
diff --git a/av1/encoder/rd.h b/av1/encoder/rd.h
index 0f0062b..5e9bfcd 100644
--- a/av1/encoder/rd.h
+++ b/av1/encoder/rd.h
@@ -243,6 +243,9 @@
                           double yl, double *rate_f, double *distbysse_f);
 
 int av1_get_switchable_rate(const MACROBLOCK *x, const MACROBLOCKD *xd,
+#if !CONFIG_REMOVE_DUAL_FILTER
+                            int dual_filter,
+#endif  // !CONFIG_REMOVE_DUAL_FILTER
                             InterpFilter interp_filter);
 
 YV12_BUFFER_CONFIG *av1_get_scaled_ref_frame(const struct AV1_COMP *cpi,