change DMA buf size for small bufs to be multiple of 128

This commit is contained in:
Ralph Metzler 2016-10-10 00:14:03 +02:00
parent 7d7da35fb5
commit 4ee27ff317
1 changed files with 2 additions and 2 deletions

View File

@ -183,11 +183,11 @@ struct ddb_info {
#ifdef SMALL_DMA_BUFS
#define INPUT_DMA_BUFS 32
#define INPUT_DMA_SIZE (32*47*21)
#define INPUT_DMA_SIZE (128*47*5)
#define INPUT_DMA_IRQ_DIV 1
#define OUTPUT_DMA_BUFS 32
#define OUTPUT_DMA_SIZE (32*47*21)
#define OUTPUT_DMA_SIZE (128*47*5)
#define OUTPUT_DMA_IRQ_DIV 1
#else
#define INPUT_DMA_BUFS 8