浏览代码

video: driver: increase max buffer count

Increase max buffer count to release the buffers,

Change-Id: I34774a8e99c7a5c78f79e8ca101e6135a22e7f30
Signed-off-by: Maheshwar Ajja <[email protected]>
Maheshwar Ajja 4 年之前
父节点
当前提交
30d2ef55b4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      driver/vidc/inc/msm_vidc_internal.h

+ 2 - 2
driver/vidc/inc/msm_vidc_internal.h

@@ -127,14 +127,14 @@
  * threshold is kept as 50 to handle vpp usecases
  * which might have many output buffers.
  */
-#define MAX_MAPPED_OUTPUT_COUNT 50
+#define MAX_MAPPED_OUTPUT_COUNT 64
  /*
   * max dpb count = 16
   * each dpb: 4 words - <base_address, addr_offset, data_offset>
   * dpb list array size = 16 * 4
   * dpb payload size = 16 * 4 * 4
   */
-#define MAX_DPB_COUNT 16
+#define MAX_DPB_COUNT 64
 #define MAX_DPB_LIST_ARRAY_SIZE (MAX_DPB_COUNT * 4)
 #define MAX_DPB_LIST_PAYLOAD_SIZE (MAX_DPB_COUNT * 4 * 4)