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
Notes: github-actions[bot] 2025-10-28 00:36:03 +00:00

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)