From 10bcbf0e8daf38e3f3569ba84050f85fd46dd2d0 Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Sun, 19 May 2013 10:30:31 +0400 Subject: [PATCH] increased hls buffer up to 16M --- hls/ngx_rtmp_hls_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hls/ngx_rtmp_hls_module.c b/hls/ngx_rtmp_hls_module.c index 32efc50..3364fc6 100644 --- a/hls/ngx_rtmp_hls_module.c +++ b/hls/ngx_rtmp_hls_module.c @@ -22,7 +22,7 @@ static char * ngx_rtmp_hls_merge_app_conf(ngx_conf_t *cf, static ngx_int_t ngx_rtmp_hls_flush_audio(ngx_rtmp_session_t *s); -#define NGX_RTMP_HLS_BUFSIZE (1024*1024) +#define NGX_RTMP_HLS_BUFSIZE (16*1024*1024) #define NGX_RTMP_HLS_DIR_ACCESS 0744