diff --git a/awcy_server.ts b/awcy_server.ts index 6409700..ad15c8d 100644 --- a/awcy_server.ts +++ b/awcy_server.ts @@ -97,6 +97,7 @@ const binaries = { 'thor': ['build/Thorenc','build/Thordec','config_HDB16_high_efficiency.txt','config_LDB_high_efficiency.txt'], 'thor-rt': ['build/Thorenc','build/Thordec','config_HDB16_high_efficiency.txt','config_LDB_high_efficiency.txt'], 'rav1e': ['target/release/rav1e'], + 'rav1e-bitrate': ['target/release/rav1e'], 'svt-av1': ['Bin/Release/SvtAv1EncApp'], 'svt-av1-ra': ['Bin/Release/SvtAv1EncApp'], 'svt-av1-ra-crf': ['Bin/Release/SvtAv1EncApp'], diff --git a/build_codec.sh b/build_codec.sh index af725fc..266e74c 100755 --- a/build_codec.sh +++ b/build_codec.sh @@ -117,7 +117,7 @@ case "${CODEC}" in CONFIG_DIR=${CODECS_SRC_DIR}/vp9/ make ;; - rav1e) + rav1e*) cd ${CODECS_SRC_DIR}/rav1e cargo build --release ${BUILD_OPTIONS} ;; diff --git a/www/src/stores/Stores.ts b/www/src/stores/Stores.ts index 9a04af7..8685405 100644 --- a/www/src/stores/Stores.ts +++ b/www/src/stores/Stores.ts @@ -609,6 +609,7 @@ export class Job { "thor": "Thor", "thor-rt": "Thor Realtime", "rav1e": "rav1e", + "rav1e-bitrate": "rav1e bitrate mode", "vvc-vtm": "VVC VTM", "vvc-vtm-ra": "VVC VTM Random Access (RA) GOP Parallel", "vvc-vtm-ra-ctc": "VVC VTM AOM Random Access (RA) GOP Parallel",