video: driver: increase max buffer count

Increase max buffer count to release the buffers,

Change-Id: I34774a8e99c7a5c78f79e8ca101e6135a22e7f30
Signed-off-by: Maheshwar Ajja <majja@codeaurora.org>
This commit is contained in:
Maheshwar Ajja
2021-04-19 10:27:22 -07:00
committed by Gerrit - the friendly Code Review server
parent 6b20be1d9b
commit 30d2ef55b4

View File

@@ -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)