aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2478cc5..1faffcf 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -394,7 +394,7 @@ static pid_t launch_ffmpeg_rtmp_process(const char *url, int *pipe_write_end) {
dup2(pipes[PIPE_READ_END], STDIN_FILENO);
close(pipes[PIPE_WRITE_END]);
- const char *args[] = { "ffmpeg", "-i", "pipe:0", "-c:v", "copy", "-f", "flv", "-max_muxing_queue_size", "4096", "--", url, NULL };
+ const char *args[] = { "ffmpeg", "-i", "pipe:0", "-c:v", "copy", "-f", "flv", "--", url, NULL };
execvp(args[0], (char* const*)args);
perror("failed to launch ffmpeg");
exit(127);