print video bitrate suggestion again
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousDelivery / dumpsyms (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
ContinuousIntegration / linux (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled

This commit is contained in:
Green Sky 2025-04-03 15:07:48 +02:00
parent c7be863daf
commit fa7a77ca14
No known key found for this signature in database
GPG Key ID: DBE05085D874AB4A

View File

@ -367,7 +367,7 @@ void ToxAVVoIPModel::audio_thread_tick(void) {
new_frame.sample_rate new_frame.sample_rate
); );
if (err != TOXAV_ERR_SEND_FRAME_OK) { if (err != TOXAV_ERR_SEND_FRAME_OK) {
std::cerr << "DTC: failed to send audio frame " << err << "\n"; std::cerr << "TAVVOIP: failed to send audio frame " << err << "\n";
} }
} }
} }
@ -732,7 +732,11 @@ bool ToxAVVoIPModel::onEvent(const Events::FriendAudioBitrate&) {
return false; return false;
} }
bool ToxAVVoIPModel::onEvent(const Events::FriendVideoBitrate&) { bool ToxAVVoIPModel::onEvent(const Events::FriendVideoBitrate& e) {
std::cout << "TAVVOIP: event suggests new video bitrate: " << e.video_bit_rate << " for " << e.friend_number << "\n";
//_video_sinks.front()->_video_bitrate
// TODO: use this info // TODO: use this info
return false; return false;
} }