diff --git a/awcy_server.ts b/awcy_server.ts index 5a96880e..0c3cd231 100644 --- a/awcy_server.ts +++ b/awcy_server.ts @@ -70,6 +70,7 @@ const binaries = { 'daala':['examples/encoder_example','examples/dump_video'], 'x264': ['x264'], 'x265': ['build/linux/x265'], + 'xvc': ['build/app/xvcenc', 'build/app/xvcdec'], 'vp8': ['vpxenc','vpxdec'], 'vp9': ['vpxenc','vpxdec'], 'vp10': ['vpxenc','vpxdec'], diff --git a/build_codec.sh b/build_codec.sh index b5db914f..d2852977 100755 --- a/build_codec.sh +++ b/build_codec.sh @@ -28,6 +28,13 @@ case $CODEC in make popd ;; + xvc) + mkdir -p xvc/build + pushd xvc/build + cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF -DENABLE_ASSERTIONS=OFF $BUILD_OPTIONS .. + make -j4 + popd + ;; vp10 | vp10-rt) pushd $CODEC ./configure --enable-vp10 $BUILD_OPTIONS diff --git a/www/src/stores/Stores.ts b/www/src/stores/Stores.ts index 69044075..a0a1760d 100644 --- a/www/src/stores/Stores.ts +++ b/www/src/stores/Stores.ts @@ -498,6 +498,7 @@ export class Job { "x264": "x264", "x265": "x265", "x265-rt": "x265 Realtime", + "xvc": "xvc", "vp8": "VP8", "vp9": "VP9", "vp10": "VP10",