| 497 | } |
| 498 | |
| 499 | void EncoderThread::PrintEncoderConfig(const tc::EncoderConfig& config) { |
| 500 | LOGI("---------------------------------------------------"); |
| 501 | LOGI("Encoder configs:"); |
| 502 | LOGI("width x height:{}x{}", config.width, config.height); |
| 503 | LOGI("gop size: {}", config.gop_size); |
| 504 | LOGI("gop bitrate: {}", config.bitrate); |
| 505 | LOGI("enable full color: {}", config.enable_full_color_mode_); |
| 506 | LOGI("encoder codec_type: {}", static_cast<int>(config.codec_type)); |
| 507 | LOGI("***************************************************"); |
| 508 | } |
| 509 | |
| 510 | } |
nothing calls this directly
no outgoing calls
no test coverage detected