-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #794 from Samt43/flac_lossless_streaming
Flac lossless streaming
- Loading branch information
Showing
11 changed files
with
298 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!-- | ||
Thank you for your interest in contributing to welle.io, it's highly appreciated! | ||
Please send PRs only against the branch "next". | ||
Describe your PR further using the template provided below. | ||
The more details the better, but please delete unsed sections! | ||
--> | ||
|
||
#### What does this PR do and why is it necessary? | ||
|
||
#### How was it tested? How can it be tested by the reviewer? | ||
|
||
#### Any background context you want to provide? | ||
|
||
#### What are the relevant tickets if any? | ||
|
||
#### Screenshots (if appropriate) | ||
|
||
#### Further notes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# - Find libFLAC++ | ||
# | ||
# This module defines | ||
# FLACPP_FOUND - True if libFLAC++ has been found. | ||
# FLACPP_LIBRARIES - List of libraries when using libFLAC++. | ||
# FLACPP_INCLUDE_DIRS - libFLAC++ include directories. | ||
|
||
# Look for the header file. | ||
find_path(FLACPP_INCLUDE_DIRS | ||
NAMES FLAC++/all.h FLAC++/decoder.h FLAC++/encoder.h FLAC++/export.h FLAC++/metadata.h) | ||
|
||
# Find the library. | ||
find_library(FLACPP_LIBRARIES | ||
NAMES FLAC++) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(FLACPP DEFAULT_MSG FLACPP_LIBRARIES FLACPP_INCLUDE_DIRS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.