update new sdk

This commit is contained in:
August 2020-07-15 19:27:51 +08:00
parent f33907443a
commit 744c72c133
1643 changed files with 83006 additions and 28021 deletions

View file

@ -27,6 +27,9 @@
*----------------------------------------------------------------------------
*/
#define LOG_TAG "Sonivox"
#include <log/log.h>
#include "eas_data.h"
#include "eas_miditypes.h"
#include "eas_parser.h"
@ -211,6 +214,7 @@ static EAS_RESULT OTA_CheckFileType (S_EAS_DATA *pEASData, EAS_FILE_HANDLE fileH
pData->fileOffset = offset;
pData->state = EAS_STATE_OPEN;
*ppHandle = pData;
ALOGD("%s() OTA file recognized", __func__);
break;
}
@ -360,6 +364,7 @@ static EAS_RESULT OTA_Event (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I
/* check for loop - don't do infinite loops when locating */
if (pData->loopCount && ((parserMode == eParserModePlay) || (pData->loopCount != OTA_INFINITE_LOOP)))
{
ALOGV("%s() loop backwards, loopCount = %d", __func__, pData->loopCount);
/* if not infinite loop, decrement loop count */
if (pData->loopCount != OTA_INFINITE_LOOP)
pData->loopCount--;

View file

@ -27,6 +27,9 @@
*----------------------------------------------------------------------------
*/
#define LOG_TAG "Sonivox"
#include "log/log.h"
#include "eas_synthcfg.h"
#include "eas.h"
#include "eas_config.h"
@ -1245,6 +1248,14 @@ static EAS_RESULT EAS_ParseEvents (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS
EAS_INT yieldCount = YIELD_EVENT_COUNT;
EAS_U32 time = 0;
// This constant is the maximum number of events that can be processed in a single time slice.
// A typical ringtone will contain a few events per time slice.
// Extremely dense ringtones might go up to 50 events.
// If we see this many events then the file is probably stuck in an infinite loop
// and should be aborted.
static const EAS_INT MAX_EVENT_COUNT = 100000;
EAS_INT eventCount = 0;
/* does this parser have a time function? */
pParserModule = pStream->pParserModule;
if (pParserModule->pfTime == NULL)
@ -1291,9 +1302,25 @@ static EAS_RESULT EAS_ParseEvents (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS
{
/* parse the next event */
if (pParserModule->pfEvent)
if ((result = (*pParserModule->pfEvent)(pEASData, pStream->handle, parseMode)) != EAS_SUCCESS)
if (pParserModule->pfEvent) {
if ((result = (*pParserModule->pfEvent)(pEASData, pStream->handle, parseMode))
!= EAS_SUCCESS) {
ALOGE("%s() pfEvent returned %ld", __func__, result);
return result;
}
}
// An infinite loop within a ringtone file can cause this function
// to loop forever. Try to detect that and return an error.
// Only check when playing. Otherwise a very large file could be rejected
// when scanning the entire file in a single call to this function.
// OTA files will only do infinite loops when in eParserModePlay.
if (++eventCount >= MAX_EVENT_COUNT && parseMode == eParserModePlay) {
ALOGE("%s() aborting, %d events. Infinite loop in song file?!",
__func__, eventCount);
android_errorWriteLog(0x534e4554, "68664359");
return EAS_ERROR_FILE_POS;
}
}
/* no more events in this frame, advance time */

View file

@ -29,6 +29,9 @@
*----------------------------------------------------------------------------
*/
#define LOG_TAG "Sonivox"
#include "log/log.h"
#include "eas_data.h"
#include "eas_miditypes.h"
#include "eas_parser.h"
@ -126,7 +129,8 @@ EAS_RESULT SMF_CheckFileType (S_EAS_DATA *pEASData, EAS_FILE_HANDLE fileHandle,
if ((result = EAS_HWReadFile(pEASData->hwInstData, fileHandle, header, sizeof(header), &count)) != EAS_SUCCESS)
return result;
/* check for 'MTrk' - return if no match */
/* check for 'MThd' - If no match then return SUCCESS with NULL handle
* to indicate not an SMF file. */
if ((header[0] != 'M') || (header[1] != 'T') || (header[2] != 'h') || (header[3] != 'd'))
return EAS_SUCCESS;
}
@ -833,6 +837,22 @@ static EAS_RESULT SMF_ParseMetaEvent (S_EAS_DATA *pEASData, S_SMF_DATA *pSMFData
/* get the current file position so we can skip the event */
if ((result = EAS_HWFilePos(pEASData->hwInstData, pSMFStream->fileHandle, &pos)) != EAS_SUCCESS)
return result;
/* prevent a large unsigned length from being treated as a negative length */
if ((EAS_I32) len < 0) {
/* note that EAS_I32 is a long, which can be 64-bits on some computers */
ALOGE("%s() negative len = %ld", __func__, (long) len);
android_errorWriteLog(0x534e4554, "68953854");
return EAS_ERROR_FILE_FORMAT;
}
/* prevent numeric overflow caused by a very large len, assume pos > 0 */
const EAS_I32 EAS_I32_MAX = 0x7FFFFFFF;
if ((EAS_I32) len > (EAS_I32_MAX - pos)) {
ALOGE("%s() too large len = %ld", __func__, (long) len);
android_errorWriteLog(0x534e4554, "68953854");
return EAS_ERROR_FILE_FORMAT;
}
pos += (EAS_I32) len;
/* end of track? */