[vlc-commits] xa: Fix fourcc mismatch
    Hugo Beauzée-Luyssen 
    git at videolan.org
       
    Thu Jul 13 09:48:13 CEST 2017
    
    
  
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Thu Jul 13 09:47:35 2017 +0200| [b5b2cdd1750cb63372fb3b028b2bf5532cd1a676] | committer: Hugo Beauzée-Luyssen
xa: Fix fourcc mismatch
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b5b2cdd1750cb63372fb3b028b2bf5532cd1a676
---
 modules/demux/xa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/xa.c b/modules/demux/xa.c
index ee50663f14..6d43e55b3c 100644
--- a/modules/demux/xa.c
+++ b/modules/demux/xa.c
@@ -115,7 +115,7 @@ static int Open( vlc_object_t * p_this )
     }
 
     es_format_t fmt;
-    es_format_Init( &fmt, AUDIO_ES, VLC_CODEC_ADPCM_EA );
+    es_format_Init( &fmt, AUDIO_ES, VLC_CODEC_ADPCM_XA_EA );
 
     msg_Dbg( p_demux, "assuming EA ADPCM audio codec" );
     fmt.audio.i_rate = GetDWLE( &xa.nSamplesPerSec );
    
    
More information about the vlc-commits
mailing list