LPF_SB: set row delay to work with intrabc

Intrabc search area can't use pixels of the last 8 rows in the current
superblock row. Add a delay so that lpf_sb can work with intrabc.

Let lpf_sb on with intrabc while other loop filtering off (cdef, loop
restoration).

Change-Id: I98ab093a17096387b6233182da2656f90dfa09eb
diff --git a/av1/encoder/bitstream.c b/av1/encoder/bitstream.c
index 73db844..ba271c7 100644
--- a/av1/encoder/bitstream.c
+++ b/av1/encoder/bitstream.c
@@ -2578,9 +2578,9 @@
 #endif  // CONFIG_LOOP_RESTORATION
 
 static void encode_loopfilter(AV1_COMMON *cm, struct aom_write_bit_buffer *wb) {
-#if CONFIG_INTRABC
+#if CONFIG_INTRABC && !CONFIG_LPF_SB
   if (cm->allow_intrabc && NO_FILTER_FOR_IBC) return;
-#endif  // CONFIG_INTRABC
+#endif  // CONFIG_INTRABC && !CONFIG_LPF_SB
   int i;
   struct loopfilter *lf = &cm->lf;