fix video leak, toav audio
This commit is contained in:
parent
42c7ab8571
commit
697611ff55
@ -206,6 +206,60 @@ struct ToxAVCallVideoSink : public FrameStream2SinkI<SDLVideoFrame> {
|
||||
}
|
||||
};
|
||||
|
||||
struct ToxAVCallAudioSink : public FrameStream2SinkI<AudioFrame> {
|
||||
ToxAV& _toxav;
|
||||
|
||||
// bitrate for enabled state
|
||||
uint32_t _audio_bitrate {32};
|
||||
|
||||
uint32_t _fid;
|
||||
std::shared_ptr<QueuedFrameStream2<AudioFrame>> _writer;
|
||||
|
||||
ToxAVCallAudioSink(ToxAV& toxav, uint32_t fid) : _toxav(toxav), _fid(fid) {}
|
||||
~ToxAVCallAudioSink(void) {
|
||||
if (_writer) {
|
||||
_writer = nullptr;
|
||||
_toxav.toxavAudioSetBitRate(_fid, 0);
|
||||
}
|
||||
}
|
||||
|
||||
// sink
|
||||
std::shared_ptr<FrameStream2I<AudioFrame>> subscribe(void) override {
|
||||
if (_writer) {
|
||||
// max 1 (exclusive for now)
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto err = _toxav.toxavAudioSetBitRate(_fid, _audio_bitrate);
|
||||
if (err != TOXAV_ERR_BIT_RATE_SET_OK) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
_writer = std::make_shared<QueuedFrameStream2<AudioFrame>>(10, false);
|
||||
|
||||
return _writer;
|
||||
}
|
||||
|
||||
bool unsubscribe(const std::shared_ptr<FrameStream2I<AudioFrame>>& sub) override {
|
||||
if (!sub || !_writer) {
|
||||
// nah
|
||||
return false;
|
||||
}
|
||||
|
||||
if (sub == _writer) {
|
||||
_writer = nullptr;
|
||||
|
||||
/*auto err = */_toxav.toxavAudioSetBitRate(_fid, 0);
|
||||
// print warning? on error?
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// what
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
DebugToxCall::DebugToxCall(ObjectStore2& os, ToxAV& toxav, TextureUploaderI& tu) : _os(os), _toxav(toxav), _tu(tu) {
|
||||
_toxav.subscribe(this, ToxAV_Event::friend_call);
|
||||
_toxav.subscribe(this, ToxAV_Event::friend_call_state);
|
||||
@ -243,29 +297,55 @@ void DebugToxCall::tick(float) {
|
||||
continue;
|
||||
}
|
||||
|
||||
auto new_frame_opt = vsink->_writer->pop();
|
||||
if (!new_frame_opt.has_value()) {
|
||||
for (size_t i = 0; i < 10; i++) {
|
||||
auto new_frame_opt = vsink->_writer->pop();
|
||||
if (!new_frame_opt.has_value()) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (!new_frame_opt.value().surface) {
|
||||
// wtf?
|
||||
continue;
|
||||
}
|
||||
|
||||
// conversion is done in the sinks stream
|
||||
SDL_Surface* surf = new_frame_opt.value().surface.get();
|
||||
assert(surf != nullptr);
|
||||
|
||||
SDL_LockSurface(surf);
|
||||
_toxav.toxavVideoSendFrame(
|
||||
vsink->_fid,
|
||||
surf->w, surf->h,
|
||||
static_cast<const uint8_t*>(surf->pixels),
|
||||
static_cast<const uint8_t*>(surf->pixels) + surf->w * surf->h,
|
||||
static_cast<const uint8_t*>(surf->pixels) + surf->w * surf->h + (surf->w/2) * (surf->h/2)
|
||||
);
|
||||
SDL_UnlockSurface(surf);
|
||||
}
|
||||
}
|
||||
|
||||
for (const auto& [oc, asink] : _os.registry().view<ToxAVCallAudioSink*>().each()) {
|
||||
if (!asink->_writer) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!new_frame_opt.value().surface) {
|
||||
// wtf?
|
||||
continue;
|
||||
for (size_t i = 0; i < 10; i++) {
|
||||
auto new_frame_opt = asink->_writer->pop();
|
||||
if (!new_frame_opt.has_value()) {
|
||||
break;
|
||||
}
|
||||
const auto& new_frame = new_frame_opt.value();
|
||||
assert(new_frame.isS16());
|
||||
|
||||
// TODO: error code
|
||||
_toxav.toxavAudioSendFrame(
|
||||
asink->_fid,
|
||||
new_frame.getSpan<int16_t>().ptr,
|
||||
new_frame.getSpan<int16_t>().size / new_frame.channels,
|
||||
new_frame.channels,
|
||||
new_frame.sample_rate
|
||||
);
|
||||
}
|
||||
|
||||
// conversion is done in the sinks stream
|
||||
SDL_Surface* surf = new_frame_opt.value().surface.get();
|
||||
assert(surf != nullptr);
|
||||
|
||||
SDL_LockSurface(surf);
|
||||
_toxav.toxavVideoSendFrame(
|
||||
vsink->_fid,
|
||||
surf->w, surf->h,
|
||||
static_cast<const uint8_t*>(surf->pixels),
|
||||
static_cast<const uint8_t*>(surf->pixels) + surf->w * surf->h,
|
||||
static_cast<const uint8_t*>(surf->pixels) + surf->w * surf->h + (surf->w/2) * (surf->h/2)
|
||||
);
|
||||
SDL_UnlockSurface(surf);
|
||||
}
|
||||
}
|
||||
|
||||
@ -297,6 +377,13 @@ float DebugToxCall::render(void) {
|
||||
call.outgoing_vsink.emplace<Components::FrameStream2Sink<SDLVideoFrame>>(std::move(new_vsink));
|
||||
call.outgoing_vsink.emplace<Components::StreamSink>("ToxAV friend call video", std::string{entt::type_name<SDLVideoFrame>::value()});
|
||||
}
|
||||
call.outgoing_asink = {_os.registry(), _os.registry().create()};
|
||||
{
|
||||
auto new_asink = std::make_unique<ToxAVCallAudioSink>(_toxav, fid);
|
||||
call.outgoing_asink.emplace<ToxAVCallAudioSink*>(new_asink.get());
|
||||
call.outgoing_asink.emplace<Components::FrameStream2Sink<AudioFrame>>(std::move(new_asink));
|
||||
call.outgoing_asink.emplace<Components::StreamSink>("ToxAV friend call audio", std::string{entt::type_name<AudioFrame>::value()});
|
||||
}
|
||||
|
||||
// create sources
|
||||
if (call.incoming_v) {
|
||||
@ -484,6 +571,8 @@ bool DebugToxCall::onEvent(const Events::FriendVideoFrame& e) {
|
||||
new_surf
|
||||
});
|
||||
|
||||
SDL_DestroySurface(new_surf);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -210,7 +210,7 @@ void ToxAV::cb_video_bit_rate(uint32_t friend_number, uint32_t video_bit_rate) {
|
||||
}
|
||||
|
||||
void ToxAV::cb_audio_receive_frame(uint32_t friend_number, const int16_t pcm[], size_t sample_count, uint8_t channels, uint32_t sampling_rate) {
|
||||
std::cerr << "TOXAV: audio frame f:" << friend_number << " sc:" << sample_count << " ch:" << (int)channels << " sr:" << sampling_rate << "\n";
|
||||
//std::cerr << "TOXAV: audio frame f:" << friend_number << " sc:" << sample_count << " ch:" << (int)channels << " sr:" << sampling_rate << "\n";
|
||||
|
||||
dispatch(
|
||||
ToxAV_Event::friend_audio_frame,
|
||||
@ -231,7 +231,7 @@ void ToxAV::cb_video_receive_frame(
|
||||
const uint8_t v[/*! max(width/2, abs(vstride)) * (height/2) */],
|
||||
int32_t ystride, int32_t ustride, int32_t vstride
|
||||
) {
|
||||
std::cerr << "TOXAV: video frame f:" << friend_number << " w:" << width << " h:" << height << "\n";
|
||||
//std::cerr << "TOXAV: video frame f:" << friend_number << " w:" << width << " h:" << height << "\n";
|
||||
|
||||
dispatch(
|
||||
ToxAV_Event::friend_video_frame,
|
||||
|
Loading…
Reference in New Issue
Block a user