[vlc-commits] linsys_hdsdi: use the proper FourCC for I420

Steve Lhomme git at videolan.org
Sat Jul 8 18:39:44 CEST 2017


vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Fri Jul  7 12:10:56 2017 +0200| [06eab32669131e6dbf600ff5287fdeb5c66d203f] | committer: Jean-Baptiste Kempf

linsys_hdsdi: use the proper FourCC for I420

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=06eab32669131e6dbf600ff5287fdeb5c66d203f
---

 modules/access/linsys/linsys_hdsdi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/linsys/linsys_hdsdi.c b/modules/access/linsys/linsys_hdsdi.c
index 3870ff5144..3a227b85b1 100644
--- a/modules/access/linsys/linsys_hdsdi.c
+++ b/modules/access/linsys/linsys_hdsdi.c
@@ -506,7 +506,7 @@ static int InitVideo( demux_t *p_demux )
                             + sizeof(struct block_extension_t);
 
     /* Video ES */
-    es_format_Init( &fmt, VIDEO_ES, VLC_FOURCC('I','4','2','0') );
+    es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_I420 );
     fmt.i_id                    = p_sys->i_id_video;
     fmt.video.i_frame_rate      = p_sys->i_frame_rate;
     fmt.video.i_frame_rate_base = p_sys->i_frame_rate_base;



More information about the vlc-commits mailing list