Home
last modified time | relevance | path

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

/external/libvpx/vp9/encoder/
Dvp9_encoder.h615 ENCODE_COMMAND *encode_command, GOP_COMMAND gop_command) { in encode_command_set_gop_command() argument
616 encode_command->gop_command = gop_command; in encode_command_set_gop_command()
620 ENCODE_COMMAND *encode_command, int quantize_index) { in encode_command_set_external_quantize_index() argument
621 encode_command->use_external_quantize_index = 1; in encode_command_set_external_quantize_index()
622 encode_command->external_quantize_index = quantize_index; in encode_command_set_external_quantize_index()
626 ENCODE_COMMAND *encode_command) { in encode_command_reset_external_quantize_index() argument
627 encode_command->use_external_quantize_index = 0; in encode_command_reset_external_quantize_index()
628 encode_command->external_quantize_index = -1; in encode_command_reset_external_quantize_index()
632 ENCODE_COMMAND *encode_command, int target_frame_bits, in encode_command_set_target_frame_bits() argument
634 encode_command->use_external_target_frame_bits = 1; in encode_command_set_target_frame_bits()
[all …]
Dvp9_encoder.c2650 encode_command_init(&cpi->encode_command); in vp9_create_compressor()
4495 if (cpi->encode_command.use_external_target_frame_bits) {
4499 if (cpi->encode_command.use_external_quantize_index) {
4500 q = cpi->encode_command.external_quantize_index;
4600 if (cpi->encode_command.use_external_quantize_index) {
4604 if (cpi->encode_command.use_external_target_frame_bits) {
4615 cpi->encode_command.target_frame_bits_error_percent ||
Dvp9_ratectrl.c1723 if (cpi->encode_command.use_external_target_frame_bits) { in vp9_rc_set_frame_target()
1724 rc->this_frame_target = cpi->encode_command.target_frame_bits; in vp9_rc_set_frame_target()
Dvp9_firstpass.c2748 const GOP_COMMAND *gop_command = &cpi->encode_command.gop_command; in define_gf_group()
3749 const GOP_COMMAND *gop_command = &cpi->encode_command.gop_command; in vp9_get_next_group_of_picture()
/external/libvpx/vp9/
Dsimple_encode.cc1070 encode_command_set_gop_command(&impl_ptr_->cpi->encode_command, gop_command); in StartEncode()
1146 encode_command_set_gop_command(&impl_ptr_->cpi->encode_command, in PostUpdateState()
1233 encode_command_set_external_quantize_index(&impl_ptr_->cpi->encode_command, in EncodeFrameWithQuantizeIndex()
1236 encode_command_reset_external_quantize_index(&impl_ptr_->cpi->encode_command); in EncodeFrameWithQuantizeIndex()
1242 encode_command_set_target_frame_bits(&impl_ptr_->cpi->encode_command, in EncodeFrameWithTargetFrameBits()
1245 encode_command_reset_target_frame_bits(&impl_ptr_->cpi->encode_command); in EncodeFrameWithTargetFrameBits()