Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Camilo Celis Guzman
gst-plugins-good
Commits
6525abfc
Commit
6525abfc
authored
Dec 17, 2018
by
Nicola Murino
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
osxcoreaudio: fix typo
kAudioFormatFlagIsSignedInteger is a format flags Closes #394
parent
3d708a5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
sys/osxaudio/gstosxcoreaudio.c
sys/osxaudio/gstosxcoreaudio.c
+1
-1
No files found.
sys/osxaudio/gstosxcoreaudio.c
View file @
6525abfc
...
...
@@ -504,7 +504,7 @@ gst_core_audio_asbd_to_caps (AudioStreamBasicDescription * asbd,
bps
=
asbd
->
mBitsPerChannel
;
endianness
=
asbd
->
mFormatFlags
&
kAudioFormatFlagIsBigEndian
?
G_BIG_ENDIAN
:
G_LITTLE_ENDIAN
;
sign
=
asbd
->
mFormat
ID
&
kAudioFormatFlagIsSignedInteger
?
TRUE
:
FALSE
;
sign
=
asbd
->
mFormat
Flags
&
kAudioFormatFlagIsSignedInteger
?
TRUE
:
FALSE
;
interleaved
=
asbd
->
mFormatFlags
&
kAudioFormatFlagIsNonInterleaved
?
TRUE
:
FALSE
;
...
...
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