From 64d04a775cdf9538424d3fbf2e85c64abc9e15fc Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Sat, 28 Nov 2009 18:22:41 +0100 Subject: [PATCH] Our cameras gives only 15 fps default frame size was lowered to have lower bandwidth --- streamer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/streamer.c b/streamer.c index 72cfaeb..8df5efa 100644 --- a/streamer.c +++ b/streamer.c @@ -35,9 +35,9 @@ static const char *sdp_file = "sdp.txt"; static const char *vdev = "/dev/video0"; static const char *dst = "127.0.0.1"; static int dport = 20000; -static int width = 640; -static int height = 480; -int fps = 25; +static int width = 320; +static int height = 240; +int fps = 15; static const char *impform = "video4linux2"; AVFormatContext *s, *os; -- 2.39.2