Commit f2e9e149 authored by Juho Vähä-Herttua's avatar Juho Vähä-Herttua Committed by Jean-Baptiste Kempf

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

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent ebf5468e
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment