Commit Graph

4 Commits

Author SHA1 Message Date
James Zern 2e74eaebf5 [libvpx] update memory limit for msan (#1966)
Reduce VPX_MAX_ALLOCABLE_MEMORY in msan builds as it has a higher overhead causing more frequent OOMs in this configuration. This matches the limits in libaom.
2018-11-21 12:04:23 -08:00
wwcv 7551f34eba libvpx: reorder build directory cleaning (#1963)
Remove the build directory to ensure dot files are deleted.

Skip 'make clean' because the build directory was just cleaned. This removes
a lot of log spam.
2018-11-20 06:17:49 -08:00
wwcv 15a5ccca9a [libvpx] use CXX for linking (#1962)
Fixes a build failure when linking with UBSAN

https://github.com/google/oss-fuzz/issues/1961
2018-11-19 14:47:42 -08:00
Harish Mahendrakar 7a141190cf Add projects/libvpx (#1914)
* libvpx: Add project

Added projects/libvpx

* libvpx: Use local ivf_read_frame

ivf_read_frame inside libvpx results in lot of prints due to invalid
frame size. This clutters output prints.

* libvpx: Do not return error for incomplete frame read in read_frame

* libvpx: Initialize threads using 32nd byte instead of 1st

In most cases, the first byte in corpus of *.ivf files is 'D'.
So using first byte results in same thread count in most cases.
Using 32nd byte in the data (one of the bytes that signals size of
the frame) will help in testing for different thread configurations.

* libvpx: Updated configure options and removed redundant cflags

Removed generic-gnu as target
Added --disable-webm-io as that is not needed here
Added --enable-debug to enable asserts
Removed redundant cflags and cxxflags

* libvpx: Removed threaded mode from build.sh

vpx_dec_fuzzer.cc in libvpx now tests both single and multi-thread
configurations using a single binary.

* libvpx: Removed vpx_dec_fuzzer.cc and README.md

Removed vpx_dec_fuzzer.cc and README.md from projects/libvpx
vpx_dec_fuzzer.cc is now part of libvpx
2018-11-15 16:50:54 +11:00