remove 8 bit internal pipeline

this is the first step of the effort to remove the internal 8 bit
pipeline by removing CONFIG_AV1_HIGHBITDEPTH and
FORCE_HIGHBITDEPTH_DECODING compiling flag.

Change-Id: I19579b1781d5510d6c9a2b608a3c5abdfa084ffc
diff --git a/av1/encoder/av1_noise_estimate.c b/av1/encoder/av1_noise_estimate.c
index 1da03d7..d1dceaf 100644
--- a/av1/encoder/av1_noise_estimate.c
+++ b/av1/encoder/av1_noise_estimate.c
@@ -57,9 +57,8 @@
        (cpi->common.width != resize_pending_params->width ||
         cpi->common.height != resize_pending_params->height));
 
-#if CONFIG_AV1_HIGHBITDEPTH
   if (cpi->common.seq_params.use_highbitdepth) return 0;
-#endif
+
 // Enable noise estimation if denoising is on.
 #if CONFIG_AV1_TEMPORAL_DENOISING
   if (cpi->oxcf.noise_sensitivity > 0 && noise_est_svc(cpi) &&