vdisp/pipe: frame_recv_delegate: Add virtual dtor

Dtor is overriden in subclasses, so it needs to be virtual
This commit is contained in:
Martin Piatka
2025-10-20 15:40:52 +02:00
parent ec48dacebe
commit ea91f802f0

View File

@@ -43,6 +43,7 @@ struct video_frame;
class frame_recv_delegate {
public:
virtual ~frame_recv_delegate() = default;
/**
* Implementing method must release both audio and video frame received
* as parameters with AUDIO_FRAME_DISPOSE() and VIDEO_FRAME_DISPOSE().