aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Janne Grunau <janne-gh@jannau.net>2018-10-08 00:45:31 +0200
committerGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2018-10-07 15:45:31 -0700
commit2cb18963e896b7d6b9dfc56c7346c35f4a213c19 (patch)
tree441112135e31f7ccfceb366dab882c93bd21b548
parent6666f7259cb0a4ee9e9eec344211408130b6c5d8 (diff)
[dav1d] add dav1d project (#1855)
dav1d is an AV1 decoder http://www.jbkempf.com/blog/post/2018/Introducing-dav1d Mozilla is planning to use the decoder in Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1493397
-rw-r--r--projects/dav1d/Dockerfile25
-rwxr-xr-xprojects/dav1d/build.sh43
-rw-r--r--projects/dav1d/project.yaml9
3 files changed, 77 insertions, 0 deletions
diff --git a/projects/dav1d/Dockerfile b/projects/dav1d/Dockerfile
new file mode 100644
index 00000000..39b390be
--- /dev/null
+++ b/projects/dav1d/Dockerfile
@@ -0,0 +1,25 @@
+# Copyright 2018 Google Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+################################################################################
+
+FROM gcr.io/oss-fuzz-base/base-builder
+MAINTAINER janne-vlc@jannau.net
+RUN apt-get update && apt-get install -y curl python3-pip && \
+ pip3 install meson ninja
+RUN curl --silent -O https://storage.googleapis.com/aom-test-data/fuzzer/dec_fuzzer_seed_corpus.zip
+RUN curl --silent -O http://jannau.net/dav1d_fuzzer_seed_corpus.zip
+RUN git clone --depth 1 https://code.videolan.org/videolan/dav1d.git dav1d
+WORKDIR dav1d
+COPY build.sh $SRC/
diff --git a/projects/dav1d/build.sh b/projects/dav1d/build.sh
new file mode 100755
index 00000000..58585421
--- /dev/null
+++ b/projects/dav1d/build.sh
@@ -0,0 +1,43 @@
+#!/bin/bash -eu
+# Copyright 2018 Google Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+################################################################################
+
+# setup
+build=${WORK}/build
+
+# cleanup
+rm -rf ${build}
+mkdir -p ${build}
+
+# build library
+meson -Dbuild_asm=false -Dbuild_tools=false -Dbuild_tests=false \
+ -Db_lundef=false -Ddefault_library=static -Dbuildtype=debug \
+ ${build}
+ninja -j $(nproc) -C ${build}
+
+# build fuzzer
+$CC $CFLAGS -Iinclude \
+ -o ${build}/dav1d_fuzzer.o -c tests/libfuzzer/dav1d_fuzzer.c
+$CXX $CXXFLAGS -lFuzzingEngine \
+ ${build}/dav1d_fuzzer.o -o $OUT/dav1d_fuzzer \
+ ${build}/src/libdav1d.a
+
+# get see corpus
+rm -rf ${WORK}/tmp
+mkdir -p ${WORK}/tmp/testdata
+unzip -q $SRC/dav1d_fuzzer_seed_corpus.zip -d ${WORK}/tmp/testdata
+cp $SRC/dec_fuzzer_seed_corpus.zip $OUT/dav1d_fuzzer_seed_corpus.zip
+(cd ${WORK}/tmp && zip -q -m -r -0 $OUT/dav1d_fuzzer_seed_corpus.zip testdata)
diff --git a/projects/dav1d/project.yaml b/projects/dav1d/project.yaml
new file mode 100644
index 00000000..c7ecce4e
--- /dev/null
+++ b/projects/dav1d/project.yaml
@@ -0,0 +1,9 @@
+homepage: "https://code.videolan.org/videolan/dav1d"
+primary_contact: "janne.grunau@gmail.com"
+auto_ccs:
+ - "rsbultje@gmail.com"
+ - "dav1d-fuzz@videolan.org"
+sanitizers:
+ - address
+ - memory
+experimental: True