Home
last modified time | relevance | path

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

/external/libvpx/vp9/encoder/
Dvp9_encoder.h614 ENCODE_COMMAND *encode_command, GOP_COMMAND gop_command) { in encode_command_set_gop_command() argument
615 encode_command->gop_command = gop_command; in encode_command_set_gop_command()
619 ENCODE_COMMAND *encode_command, int quantize_index) { in encode_command_set_external_quantize_index() argument
620 encode_command->use_external_quantize_index = 1; in encode_command_set_external_quantize_index()
621 encode_command->external_quantize_index = quantize_index; in encode_command_set_external_quantize_index()
625 ENCODE_COMMAND *encode_command) { in encode_command_reset_external_quantize_index() argument
626 encode_command->use_external_quantize_index = 0; in encode_command_reset_external_quantize_index()
627 encode_command->external_quantize_index = -1; in encode_command_reset_external_quantize_index()
631 ENCODE_COMMAND *encode_command, int target_frame_bits, in encode_command_set_target_frame_bits() argument
633 encode_command->use_external_target_frame_bits = 1; in encode_command_set_target_frame_bits()
[all …]
Dvp9_encoder.c2753 encode_command_init(&cpi->encode_command); in vp9_create_compressor()
4607 if (cpi->encode_command.use_external_target_frame_bits) {
4611 if (cpi->encode_command.use_external_quantize_index) {
4612 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 ||
Dvp9_ratectrl.c1728 if (cpi->encode_command.use_external_target_frame_bits) { in vp9_rc_set_frame_target()
1729 rc->this_frame_target = cpi->encode_command.target_frame_bits; in vp9_rc_set_frame_target()
Dvp9_firstpass.c2764 const GOP_COMMAND *gop_command = &cpi->encode_command.gop_command; in define_gf_group()
3766 const GOP_COMMAND *gop_command = &cpi->encode_command.gop_command; in vp9_get_next_group_of_picture()
/external/libvpx/vp9/
Dsimple_encode.cc1072 encode_command_set_gop_command(&impl_ptr_->cpi->encode_command, gop_command); in StartEncode()
1148 encode_command_set_gop_command(&impl_ptr_->cpi->encode_command, in PostUpdateState()
1234 encode_command_set_external_quantize_index(&impl_ptr_->cpi->encode_command, in EncodeFrameWithQuantizeIndex()
1237 encode_command_reset_external_quantize_index(&impl_ptr_->cpi->encode_command); in EncodeFrameWithQuantizeIndex()
1243 encode_command_set_target_frame_bits(&impl_ptr_->cpi->encode_command, in EncodeFrameWithTargetFrameBits()
1246 encode_command_reset_target_frame_bits(&impl_ptr_->cpi->encode_command); in EncodeFrameWithTargetFrameBits()