Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
entrypoint: '/src/scripts/fuzz.sh'
command: [
'/src/ImageMagick/ImageMagick-fuzzer',
'-rss_limit_mb=4096',
#'-rss_limit_mb=4096',
'-detect_leaks=0',
'-exact_artifact_path=/dev/shm/repro-file',
'-max_len=1000',
Expand Down
4 changes: 2 additions & 2 deletions stubs/libav/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# libav
# libav (under development)

# Purpose

Libav is a library that provides cross-platform tools and libraries to convert, manipulate and stream different multimedia formats and protocols. Purpose is to do fuzz testing to dirreferent codecs included in libav.

Libav stub is currently under development and it's not working correctly at the moment. See [Issue #18](https://github.com/ouspg/libfuzzerfication/issues/18)
TODO:Libav stub is currently under development and it's not working correctly at the moment. See [Issue #18](https://github.com/ouspg/libfuzzerfication/issues/18)

What is included?

Expand Down
2 changes: 1 addition & 1 deletion stubs/libav/libav-fuzzer.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {

av_init_packet(&avpkt);

codec = avcodec_find_decoder(AV_CODEC_ID_MP2);
codec = avcodec_find_decoder(AV_CODEC_ID_H264);
if (!codec) {
fprintf(stderr, "codec not found\n");
exit(1);
Expand Down