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
1 change: 1 addition & 0 deletions awcy_server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
7 changes: 7 additions & 0 deletions build_codec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions www/src/stores/Stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ export class Job {
"x264": "x264",
"x265": "x265",
"x265-rt": "x265 Realtime",
"xvc": "xvc",
"vp8": "VP8",
"vp9": "VP9",
"vp10": "VP10",
Expand Down