Skip to content

Commit

Permalink
Add depth image parsing for emscripten
Browse files Browse the repository at this point in the history
  • Loading branch information
Dakantz committed Nov 4, 2023
1 parent 8bc6fce commit 862415e
Show file tree
Hide file tree
Showing 3 changed files with 302 additions and 193 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ third-party/SVT-AV1/
third-party/dav1d/
third-party/libwebp/
third-party/rav1e/
buildjs*
5 changes: 3 additions & 2 deletions build-emscripten.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DIR=$PWD

if [[ $# -ne 1 ]] ; then
echo "Usage: $0 SRCDIR"
Expand All @@ -27,7 +27,7 @@ STANDALONE="${STANDALONE:-0}"
DEBUG="${DEBUG:-0}"
USE_WASM="${USE_WASM:-1}"

echo "Build using ${CORES} CPU cores"
echo "Build using ${CORES} CPU cores in dir ${DIR}"

LIBRARY_LINKER_FLAGS=""
LIBRARY_INCLUDE_FLAGS=""
Expand All @@ -50,6 +50,7 @@ if [ "$ENABLE_LIBDE265" = "1" ]; then
LIBRARY_LINKER_FLAGS="$LIBRARY_LINKER_FLAGS -lde265"
LIBRARY_INCLUDE_FLAGS="$LIBRARY_INCLUDE_FLAGS -L${DIR}/libde265-${LIBDE265_VERSION}/libde265/.libs"
fi
echo "libde265: $CONFIGURE_ARGS_LIBDE265"

CONFIGURE_ARGS_AOM=""
if [ "$ENABLE_AOM" = "1" ]; then
Expand Down
Loading

0 comments on commit 862415e

Please sign in to comment.