LibMedia: Make Track::type() const

This commit is contained in:
Zaggy1024 2025-09-12 16:57:43 -05:00 committed by Jelle Raaijmakers
parent 7e238cd724
commit 31b72c4799

View File

@ -42,7 +42,7 @@ public:
}
}
TrackType type() { return m_type; }
TrackType type() const { return m_type; }
size_t identifier() const { return m_identifier; }
void set_video_data(VideoData data)