Fix push mode buffering sanity check to actually fit the description.

This commit is contained in:
Mark Nauwelaerts 2009-04-20 13:45:32 +02:00
parent 1183015954
commit cfcf76df11

View file

@ -2512,7 +2512,7 @@ gst_qtdemux_chain (GstPad * sinkpad, GstBuffer * inbuf)
demux->neededbytes = next_entry_size (demux);
} else {
/* sanity check */
if (size > 10 * (2 << 20))
if (size > 10 * (1 << 20))
goto no_moov;
demux->state = QTDEMUX_STATE_BUFFER_MDAT;
demux->neededbytes = size;