Fix divide by zero.

Change-Id: I3113234aa5936965424dde5b24e448df1be0b603
This commit is contained in:
Marco Nelissen
2010-08-04 15:29:26 -07:00
parent 8dc16c27e2
commit 0fc9f34d94

View File

@@ -361,7 +361,7 @@ status_t MyVorbisExtractor::readNextPacket(MediaBuffer **out) {
memcpy(tmp->data(), buffer->data(), buffer->range_length());
tmp->set_range(0, buffer->range_length());
buffer->release();
} else {
} else if (mVi.rate) {
// XXX Not only is this not technically the correct time for
// this packet, we also stamp every packet in this page
// with the same time. This needs fixing later.