From: Steinar Gunderson Date: Thu, 23 Sep 2010 23:55:30 +0000 (+0200) Subject: Correct the VLC output format to what the drivers actually output. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=c74816ee189ebecc31b9a16a51a976cafae1fa91;p=vlc Correct the VLC output format to what the drivers actually output. --- 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;