Fix pvq if statement ending

Change-Id: I58232696f29e2570aa5b5e4b020b4dca59be1f5c
diff --git a/av1/encoder/encodemb.c b/av1/encoder/encodemb.c
index b9c5e03..a0bf9bf 100644
--- a/av1/encoder/encodemb.c
+++ b/av1/encoder/encodemb.c
@@ -1042,6 +1042,7 @@
       for (j = 0; j < tx_blk_size; j++)
         for (i = 0; i < tx_blk_size; i++) dst[j * pd->dst.stride + i] = 0;
     }
+#endif  // !CONFIG_PVQ
 #if CONFIG_AOM_HIGHBITDEPTH
     if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
       if (xd->lossless[xd->mi[0]->mbmi.segment_id]) {
@@ -1054,7 +1055,6 @@
       return;
     }
 #endif  //  CONFIG_AOM_HIGHBITDEPTH
-#endif  //  !CONFIG_PVQ
     if (xd->lossless[xd->mi[0]->mbmi.segment_id]) {
       av1_iwht4x4_add(dqcoeff, dst, pd->dst.stride, p->eobs[block]);
     } else {