[vlc-commits] chromecast: reduce http fifo size

Thomas Guillem git at videolan.org
Tue Feb 6 12:51:45 CET 2018


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Feb  6 11:01:08 2018 +0100| [2a8ff4d91b77c0f727ef98be83b647bcb07df04e] | committer: Thomas Guillem

chromecast: reduce http fifo size

We can reduce it since the input is now paced.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2a8ff4d91b77c0f727ef98be83b647bcb07df04e
---

 modules/stream_out/chromecast/cast.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/stream_out/chromecast/cast.cpp b/modules/stream_out/chromecast/cast.cpp
index c134d2a79e..71c5448790 100644
--- a/modules/stream_out/chromecast/cast.cpp
+++ b/modules/stream_out/chromecast/cast.cpp
@@ -203,7 +203,7 @@ static const char *const conversion_quality_list_text[] = {
 #define PORT_TEXT N_("Chromecast port")
 #define PORT_LONGTEXT N_("The port used to talk to the Chromecast.")
 
-#define HTTPD_BUFFER_MAX INT64_C(32 * 1024 * 1024) /* 32 MB */
+#define HTTPD_BUFFER_MAX INT64_C(16 * 1024 * 1024) /* 16 MB */
 
 vlc_module_begin ()
 



More information about the vlc-commits mailing list