Home
last modified time | relevance | path

Searched refs:encode_command (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/libvpx/vp9/encoder/
H A Dvp9_encoder.h618 ENCODE_COMMAND *encode_command, GOP_COMMAND gop_command) { in encode_command_set_gop_command() argument
619 encode_command->gop_command = gop_command; in encode_command_set_gop_command()
623 ENCODE_COMMAND *encode_command, int quantize_index) { in encode_command_set_external_quantize_index() argument
624 encode_command->use_external_quantize_index = 1; in encode_command_set_external_quantize_index()
625 encode_command->external_quantize_index = quantize_index; in encode_command_set_external_quantize_index()
629 ENCODE_COMMAND *encode_command) { in encode_command_reset_external_quantize_index() argument
630 encode_command->use_external_quantize_index = 0; in encode_command_reset_external_quantize_index()
631 encode_command->external_quantize_index = -1; in encode_command_reset_external_quantize_index()
635 ENCODE_COMMAND *encode_command, int target_frame_bits, in encode_command_set_target_frame_bits() argument
637 encode_command->use_external_target_frame_bits = 1; in encode_command_set_target_frame_bits()
[all …]
H A Dvp9_encoder.c2757 encode_command_init(&cpi->encode_command); in vp9_create_compressor()
4631 if (cpi->encode_command.use_external_target_frame_bits) {
4635 if (cpi->encode_command.use_external_quantize_index) {
4636 q = cpi->encode_command.external_quantize_index;
4714 if (cpi->encode_command.use_external_quantize_index) {
4718 if (cpi->encode_command.use_external_target_frame_bits) {
4729 cpi->encode_command.target_frame_bits_error_percent ||
H A Dvp9_ratectrl.c1715 if (cpi->encode_command.use_external_target_frame_bits) { in vp9_rc_set_frame_target()
1716 rc->this_frame_target = cpi->encode_command.target_frame_bits; in vp9_rc_set_frame_target()
H A Dvp9_firstpass.c2918 const GOP_COMMAND *gop_command = &cpi->encode_command.gop_command; in define_gf_group()
3944 const GOP_COMMAND *gop_command = &cpi->encode_command.gop_command; in vp9_get_next_group_of_picture()
/aosp_15_r20/external/libvpx/vp9/
H A Dsimple_encode.cc1084 encode_command_set_gop_command(&impl_ptr_->cpi->encode_command, gop_command); in StartEncode()
1160 encode_command_set_gop_command(&impl_ptr_->cpi->encode_command, in PostUpdateState()
1246 encode_command_set_external_quantize_index(&impl_ptr_->cpi->encode_command, in EncodeFrameWithQuantizeIndex()
1249 encode_command_reset_external_quantize_index(&impl_ptr_->cpi->encode_command); in EncodeFrameWithQuantizeIndex()
1255 encode_command_set_target_frame_bits(&impl_ptr_->cpi->encode_command, in EncodeFrameWithTargetFrameBits()
1258 encode_command_reset_target_frame_bits(&impl_ptr_->cpi->encode_command); in EncodeFrameWithTargetFrameBits()