1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:17:35 +00:00

LibVideo: Replace DeprecatedFlyString with FlyString

This commit is contained in:
Kevin Meyer 2024-01-02 15:45:53 +01:00 committed by Andrew Kaster
parent 8b2144c8e6
commit 284f14d046
5 changed files with 13 additions and 13 deletions

View file

@ -71,7 +71,7 @@ DecoderErrorOr<MatroskaDemuxer::TrackStatus*> MatroskaDemuxer::get_track_status(
return &m_track_statuses.get(track).release_value();
}
CodecID MatroskaDemuxer::get_codec_id_for_string(DeprecatedFlyString const& codec_id)
CodecID MatroskaDemuxer::get_codec_id_for_string(FlyString const& codec_id)
{
dbgln_if(MATROSKA_DEBUG, "Codec ID: {}", codec_id);
if (codec_id == "V_VP8")