[vlc-commits] aiff: initialize the ES as AUDIO_ES category
    Steve Lhomme 
    git at videolan.org
       
    Fri Jul  7 19:18:27 CEST 2017
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Wed Jul  5 17:00:21 2017 +0200| [8d15a130a14e9c96543f84598052f9821a4fbf76] | committer: Rémi Denis-Courmont
aiff: initialize the ES as AUDIO_ES category
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8d15a130a14e9c96543f84598052f9821a4fbf76
---
 modules/demux/aiff.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/aiff.c b/modules/demux/aiff.c
index c4a50a1fed..e100cb41a1 100644
--- a/modules/demux/aiff.c
+++ b/modules/demux/aiff.c
@@ -118,7 +118,7 @@ static int Open( vlc_object_t *p_this )
 
     /* Fill p_demux field */
     DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
-    es_format_Init( &p_sys->fmt, UNKNOWN_ES, 0 );
+    es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
     p_sys->i_time = 0;
     p_sys->i_ssnd_pos = -1;
 
    
    
More information about the vlc-commits
mailing list