[vlc-commits] commit: asf: Fix WLE->DWLE in codec list object parsing ( Juho Vähä-Herttua )

git at videolan.org git at videolan.org
Sat Jul 17 14:57:38 CEST 2010


vlc | branch: master | Juho Vähä-Herttua <juhovh at iki.fi> | Fri Jul 16 14:50:52 2010 +0300| [f2e9e1493074b89632022946d3f6c319e8e0e522] | committer: Jean-Baptiste Kempf 

asf: Fix WLE->DWLE in codec list object parsing

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

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

 modules/demux/asf/libasf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/demux/asf/libasf.c b/modules/demux/asf/libasf.c
index 386c7a0..296f461 100644
--- a/modules/demux/asf/libasf.c
+++ b/modules/demux/asf/libasf.c
@@ -654,7 +654,7 @@ static int ASF_ReadObject_codec_list( stream_t *s, asf_object_t *p_obj )
        return VLC_EGENERIC;
 
     ASF_GetGUID( &p_cl->i_reserved, p_peek + 24 );
-    p_cl->i_codec_entries_count = GetWLE( p_peek + 40 );
+    p_cl->i_codec_entries_count = GetDWLE( p_peek + 40 );
 
     p_data = p_peek + 44;
 



More information about the vlc-commits mailing list