tcp_timeout prop of rtspsrc is 64-bit.
authorZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Tue, 13 Jan 2009 14:32:21 +0000 (14:32 +0000)
committerZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Tue, 13 Jan 2009 14:32:21 +0000 (14:32 +0000)
Fixes a crash.

svn path=/trunk/; revision=420

src/rygel/rygel-streamer.vala

index 092ee24..4d1f04f 100644 (file)
@@ -221,7 +221,7 @@ public class Rygel.Streamer : GLib.Object {
 
         // For rtspsrc since some RTSP sources takes a while to start
         // transmitting
-        src.tcp_timeout = 60000000;
+        src.tcp_timeout = (int64) 60000000;
 
         // create a stream for it
         var stream = new Stream (this.context.server, msg);