encoder: increase the input buffer count from 9 to 12

This is to reduce the chance of frame drops during high speed recording
or with high system load.

Bug: 24227252
Change-Id: I353a9ea5427eb7dc3f7a153abc75bc7f1514e455
diff --git a/mm-video-v4l2/vidc/venc/src/video_encoder_device_v4l2.cpp b/mm-video-v4l2/vidc/venc/src/video_encoder_device_v4l2.cpp
index 7ad8ca2..8266ee0 100644
--- a/mm-video-v4l2/vidc/venc/src/video_encoder_device_v4l2.cpp
+++ b/mm-video-v4l2/vidc/venc/src/video_encoder_device_v4l2.cpp
@@ -1202,6 +1202,8 @@
         if (m_sVenc_cfg.input_height * m_sVenc_cfg.input_width >= 3840*2160) {
             DEBUG_PRINT_LOW("Increasing buffer count = %d to 11", bufreq.count);
             bufreq.count = 11;
+        } else {
+            bufreq.count = 12;
         }
 
         bufreq.type=V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;