From c74816ee189ebecc31b9a16a51a976cafae1fa91 Mon Sep 17 00:00:00 2001 From: Steinar Gunderson Date: Fri, 24 Sep 2010 01:55:30 +0200 Subject: [PATCH] Correct the VLC output format to what the drivers actually output. --- modules/access/sdi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/access/sdi.cpp b/modules/access/sdi.cpp index ce593f0b36..35d957da5c 100644 --- a/modules/access/sdi.cpp +++ b/modules/access/sdi.cpp @@ -184,7 +184,7 @@ static int Open( vlc_object_t *p_this ) /*eDeclare elementary streams */ es_format_t fmt; - es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_YUYV ); + es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_UYVY ); fmt.video.i_width = 720; fmt.video.i_height = 576; fmt.video.i_sar_num = 1; -- 2.39.2