Merge "When 32-bit offset is used, if the requested max file size is greater than the 32-bit offset limit, set the limit to the max 32-bit offset limit." into gingerbread

This commit is contained in:
James Dong
2010-09-09 10:13:08 -07:00
committed by Android (Google) Code Review

View File

@@ -346,9 +346,10 @@ status_t MPEG4Writer::start(MetaData *param) {
// If file size is set to be larger than the 32 bit file
// size limit, treat it as an error.
if (mMaxFileSizeLimitBytes > kMax32BitFileSize) {
LOGE("32-bit file size limit too big: %lld bytes",
mMaxFileSizeLimitBytes);
return UNKNOWN_ERROR;
LOGW("32-bi file size limit (%lld bytes) too big. "
"It is changed to %lld bytes",
mMaxFileSizeLimitBytes, kMax32BitFileSize);
mMaxFileSizeLimitBytes = kMax32BitFileSize;
}
}