From 055c37c7eaff5230d115c9a9e909dbc55feacb37 Mon Sep 17 00:00:00 2001 From: F5OEO Date: Fri, 9 Dec 2016 11:21:12 +0000 Subject: [PATCH] Buffer Size bug.Set fixed for now : need to add a variable and made a calculation depend on bitrate for low delay --- src/rpidatv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rpidatv.c b/src/rpidatv.c index 5f1779e..49556a6 100644 --- a/src/rpidatv.c +++ b/src/rpidatv.c @@ -701,7 +701,8 @@ int InitDTX1() } -#define BIG_BUFFER_SIZE ((int)((NUM_SAMPLES*4*1.5)/188)*188) +//#define BIG_BUFFER_SIZE ((int)((NUM_SAMPLES*4*1.5)/188)*188) +#define BIG_BUFFER_SIZE (18800*8) #define BURST_MEM_SIZE (188) typedef struct circular_buffer {