[vlc-commits] chromecast: reduce http fifo size

Thomas Guillem git at videolan.org
Tue Feb 6 19:33:16 CET 2018


vlc/vlc-3.0 | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Feb  6 11:01:08 2018 +0100| [7b8c723c4fb5b66490d0e52bf992649c0f90aa8c] | committer: Jean-Baptiste Kempf

chromecast: reduce http fifo size

We can reduce it since the input is now paced.

(cherry picked from commit 2a8ff4d91b77c0f727ef98be83b647bcb07df04e)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=7b8c723c4fb5b66490d0e52bf992649c0f90aa8c
---

 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 5653ff01b0..c2385e7235 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