Skip to content

Commit

Permalink
[libultrahdr] Initial Integration
Browse files Browse the repository at this point in the history
This is initial integration of libultrahdr codecs.
  • Loading branch information
harishdm committed Oct 4, 2023
1 parent c91ca27 commit 13630b5
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
21 changes: 21 additions & 0 deletions projects/libultrahdr/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2023 Google LLC
#
# 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
RUN apt-get update && apt-get install -y wget cmake
RUN git clone https://github.com/google/libultrahdr.git
COPY build.sh $SRC/
WORKDIR libultrahdr
18 changes: 18 additions & 0 deletions projects/libultrahdr/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash -eu
# Copyright 2023 Google LLC
#
# 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.
#
################################################################################
# Run the OSS-Fuzz script in the project.
$SRC/libultrahdr/fuzzer/ossfuzz.sh
18 changes: 18 additions & 0 deletions projects/libultrahdr/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
homepage: "https://github.com/google/libultrahdr"
language: c++
primary_contact: "[email protected]"
sanitizers:
- address
- memory
- undefined:
experimental: True
auto_ccs:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
architectures:
- x86_64
- i386
main_repo: 'https://github.com/google/libultrahdr.git'

0 comments on commit 13630b5

Please sign in to comment.