-
Notifications
You must be signed in to change notification settings - Fork 164
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
software rate control changes #348
base: master
Are you sure you want to change the base?
Conversation
@@ -685,6 +647,7 @@ static void process_cmdline(int argc, char *argv[]) | |||
{"LDB", no_argument, NULL, 13}, | |||
{"normal_mode", no_argument, NULL, 14}, | |||
{"low_power_mode", no_argument, NULL, 15}, | |||
{"en_sw_brc", required_argument, NULL, 16}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
align?
@@ -712,7 +675,7 @@ static void process_cmdline(int argc, char *argv[]) | |||
break; | |||
case 3: | |||
ips.RateControlMethod = string_to_rc(optarg); //16:cqp 2:CBR 4:VBR | |||
break; | |||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
align
@@ -749,8 +712,15 @@ static void process_cmdline(int argc, char *argv[]) | |||
requested_entrypoint = VAEntrypointEncSlice; | |||
break; | |||
case 15: | |||
requested_entrypoint = VAEntrypointEncSliceLP; | |||
requested_entrypoint = VAEntrypointEncSliceLP; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
align
@@ -2806,7 +2794,7 @@ static int encode_frames(void) | |||
memset(&seq_param, 0, sizeof(seq_param)); | |||
memset(&pic_param, 0, sizeof(pic_param)); | |||
memset(&tile_group_param, 0, sizeof(tile_group_param)); | |||
|
|||
unsigned int baseqp =45; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it a default value?
software based rate control files, aom rc lib is not added. as it created some problem in the chrome os emerge-rex