Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
cog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
If you have an issue with any of our projects. feel free to register.
Open sidebar
Christopher Snowhill
cog
Commits
1d4a7770
Commit
1d4a7770
authored
Nov 23, 2020
by
Dan Leehr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore libFLAC plugin on macOS 10.13 and newer
parent
cd84ec68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
16 deletions
+2
-16
Plugins/Flac/FlacDecoder.m
Plugins/Flac/FlacDecoder.m
+2
-16
No files found.
Plugins/Flac/FlacDecoder.m
View file @
1d4a7770
...
...
@@ -323,26 +323,12 @@ void ErrorCallback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorS
+
(
NSArray
*
)
fileTypes
{
if
(
@available
(
macOS
10
.
13
,
*
))
{
return
[
NSArray
array
];
}
else
{
return
[
NSArray
arrayWithObjects
:
@"flac"
,
nil
];
}
return
[
NSArray
arrayWithObjects
:
@"flac"
,
nil
];
}
+
(
NSArray
*
)
mimeTypes
{
if
(
@available
(
macOS
10
.
13
,
*
))
{
return
[
NSArray
array
];
}
else
{
return
[
NSArray
arrayWithObjects
:
@"audio/x-flac"
,
nil
];
}
return
[
NSArray
arrayWithObjects
:
@"audio/x-flac"
,
nil
];
}
+
(
float
)
priority
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment