From c5a837e03410753118bcc80fda899c91287d2c59 Mon Sep 17 00:00:00 2001 From: Steinar Gunderson Date: Fri, 24 Sep 2010 02:16:25 +0200 Subject: [PATCH] Set frame rate (locked to 25fps for now). --- modules/access/sdi.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/access/sdi.cpp b/modules/access/sdi.cpp index f5b5af624d..b326e7ee8f 100644 --- a/modules/access/sdi.cpp +++ b/modules/access/sdi.cpp @@ -190,6 +190,8 @@ static int Open( vlc_object_t *p_this ) fmt.video.i_height = 576; fmt.video.i_sar_num = 16 * fmt.video.i_height; fmt.video.i_sar_den = 9 * fmt.video.i_width; + fmt.video.i_frame_rate = 25; + fmt.video.i_frame_rate_base = 1; msg_Dbg( p_demux, "added new video es %4.4s %dx%d", (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height ); -- 2.39.2