Commit 531c40d5 authored by Steve Lhomme's avatar Steve Lhomme

mkv.cpp: allow reading segments bigger than 4GB

parent 8969b155
...@@ -1896,7 +1896,7 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( EbmlStream *p_estream ) ...@@ -1896,7 +1896,7 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( EbmlStream *p_estream )
delete p_l0; delete p_l0;
// find all segments in this file // find all segments in this file
p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL); p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFFLL);
if (p_l0 == NULL) if (p_l0 == NULL)
{ {
return NULL; return NULL;
......
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