Merge pull request #95 from ethanhugg/travis2

Add release builds (ASM) to Travis
This commit is contained in:
ekr 2014-01-05 20:00:45 -08:00
commit 42389008a3
2 changed files with 7 additions and 3 deletions

View File

@ -7,7 +7,7 @@ branches:
- gh-pages
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev
- sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev
install: make gtest-bootstrap
script: make && make test && make clean && make ENABLE64BIT=Yes && make test
script: make && make test && make clean && make ENABLE64BIT=Yes && make test && make clean && make BUILDTYPE=Release && make test && make BUILDTYPE=Release clean && make ENABLE64BIT=Yes BUILDTYPE=Release && make test

View File

@ -141,7 +141,11 @@ void_t H264DecodeInstance (ISVCDecoder* pDecoder, const char* kpH264FileName, co
goto label_exit;
}
fread (pBuf, 1, iFileSize, pH264File);
if (fread (pBuf, 1, iFileSize, pH264File) != iFileSize) {
fprintf (stderr, "Unable to read whole file\n");
goto label_exit;
}
memcpy (pBuf + iFileSize, &uiStartCode[0], 4); //confirmed_safe_unsafe_usage
if (pDecoder->SetOption (DECODER_OPTION_DATAFORMAT, &iColorFormat)) {