[vlc-commits] access:dshow: the chroma should be a VIDEO_ES

Steve Lhomme git at videolan.org
Sat Jul 8 18:38:19 CEST 2017


vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Thu Jul  6 10:40:43 2017 +0200| [ae2bd337dc1628180cb3d955808ba7d90389017f] | committer: Jean-Baptiste Kempf

access:dshow: the chroma should be a VIDEO_ES

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

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

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

diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp
index a8742eb1eb..0f5a8aa654 100644
--- a/modules/access/dshow/dshow.cpp
+++ b/modules/access/dshow/dshow.cpp
@@ -476,7 +476,7 @@ static int CommonOpen( vlc_object_t *p_this, access_sys_t *p_sys,
 
     /* Chroma */
     psz_val = var_CreateGetString( p_this, CFG_PREFIX "chroma" );
-    i_chroma = vlc_fourcc_GetCodecFromString( UNKNOWN_ES, psz_val );
+    i_chroma = vlc_fourcc_GetCodecFromString( VIDEO_ES, psz_val );
     p_sys->b_chroma = i_chroma != 0;
     free( psz_val );
 



More information about the vlc-commits mailing list