Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rate controlled rav1e codec option. #350

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 @@ -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'],
Expand Down
2 changes: 1 addition & 1 deletion build_codec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
;;
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 @@ -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",
Expand Down