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

LibAudio: Detect and read FLAC metadata

FLAC uses the very simple vorbis comment metadata format, which we can
now read most standard and non-standard fields from.
This commit is contained in:
kleines Filmröllchen 2023-03-07 16:58:01 +01:00 committed by Tim Flynn
parent d8e8ddedf3
commit a8963a270f
5 changed files with 160 additions and 1 deletions

View file

@ -9,6 +9,7 @@ set(SOURCES
QOALoader.cpp
QOATypes.cpp
UserSampleQueue.cpp
VorbisComment.cpp
)
if (SERENITYOS)
@ -20,4 +21,4 @@ if (SERENITYOS)
endif()
serenity_lib(LibAudio audio)
target_link_libraries(LibAudio PRIVATE LibCore LibIPC LibThreading)
target_link_libraries(LibAudio PRIVATE LibCore LibIPC LibThreading LibUnicode)