acap/aes67: Mark method as const

This commit is contained in:
Martin Piatka
2025-11-18 11:16:58 +01:00
parent e37e969ad3
commit 779ec4b030

View File

@@ -104,7 +104,7 @@ struct Allocated_audio_frame{
frame.data = data.data();
}
bool is_desc_same(const audio_desc& desc){
[[nodiscard]] bool is_desc_same(const audio_desc& desc) const{
return frame.ch_count == desc.ch_count
&& frame.bps == desc.bps
&& frame.sample_rate == desc.sample_rate;