1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +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

@ -52,8 +52,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
outln("\tTrack #{} with TrackID {}", track_entry.track_number(), track_entry.track_uid());
outln("\tTrack has TrackType {}", static_cast<u8>(track_entry.track_type()));
outln("\tTrack has Language \"{}\"", track_entry.language().characters());
outln("\tTrack has CodecID \"{}\"", track_entry.codec_id().characters());
outln("\tTrack has Language \"{}\"", track_entry.language());
outln("\tTrack has CodecID \"{}\"", track_entry.codec_id());
outln("\tTrack has TrackTimestampScale {}", track_entry.timestamp_scale());
outln("\tTrack has CodecDelay {}", track_entry.codec_delay());