vlc | branch: master | Steve Lhomme <[email protected]> | Fri Jul 7 12:11:13 2017 +0200| [3e7d83df09b43a0d9a00b5a580407d073a665851] | committer: Jean-Baptiste Kempf
decklink: code cleaning Signed-off-by: Jean-Baptiste Kempf <[email protected]> > 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(); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
