[vlc-commits] decklink: code cleaning

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


vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Fri Jul  7 12:11:13 2017 +0200| [3e7d83df09b43a0d9a00b5a580407d073a665851] | committer: Jean-Baptiste Kempf

decklink: code cleaning

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

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

 modules/access/decklink.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/decklink.cpp b/modules/access/decklink.cpp
index 0cbbdac3a0..6523bf0f73 100644
--- a/modules/access/decklink.cpp
+++ b/modules/access/decklink.cpp
@@ -185,7 +185,7 @@ static es_format_t GetModeSettings(demux_t *demux, IDeckLinkDisplayMode *m)
     }
 
     es_format_t video_fmt;
-    vlc_fourcc_t chroma; chroma = sys->tenbits ? VLC_CODEC_I422_10L : VLC_CODEC_UYVY;
+    vlc_fourcc_t chroma = sys->tenbits ? VLC_CODEC_I422_10L : VLC_CODEC_UYVY;
     es_format_Init(&video_fmt, VIDEO_ES, chroma);
 
     video_fmt.video.i_width = m->GetWidth();



More information about the vlc-commits mailing list