Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e72ecce9
Commit
e72ecce9
authored
Jun 11, 2008
by
Felix Paul Kühne
Browse files
Fix logic error pointed by Meuuh
parent
59e0425d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/quicktime.c
View file @
e72ecce9
...
...
@@ -268,10 +268,10 @@ static int Open( vlc_object_t *p_this )
#ifdef __APPLE__
case
VLC_FOURCC
(
'I'
,
'L'
,
'B'
,
'C'
):
/* iLBC */
if
((
err
=
=
noErr
)
||
(
qtVersion
<
0x07500000
))
if
((
err
!
=
noErr
)
||
(
qtVersion
<
0x07500000
))
return
VLC_EGENERIC
;
case
VLC_FOURCC
(
'i'
,
'l'
,
'b'
,
'c'
):
/* iLBC */
if
((
err
=
=
noErr
)
||
(
qtVersion
<
0x07500000
))
if
((
err
!
=
noErr
)
||
(
qtVersion
<
0x07500000
))
return
VLC_EGENERIC
;
#endif
case
VLC_FOURCC
(
's'
,
'a'
,
'm'
,
'r'
):
/* 3GPP AMR audio */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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