Fixed crash in VOIP by initializing member _image_capture in constructor of QVideoInputDevice

This commit is contained in:
thunder2 2025-07-19 14:51:33 +02:00
parent eaf2861cd0
commit 9f607765bc

View file

@ -37,6 +37,7 @@ QVideoInputDevice::QVideoInputDevice(QWidget *parent)
_capture_device = NULL ;
_video_processor = NULL ;
_echo_output_device = NULL ;
_image_capture = NULL;
}
QVideoInputDevice::~QVideoInputDevice()