Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
3a68b7ea
Commit
3a68b7ea
authored
Oct 27, 2002
by
Eric Petit
Browse files
vlc_threads_func.h : skip a useless BeOS warning
faad/decoder.c : minor compile fix
parent
cdf5edf7
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc_threads_funcs.h
View file @
3a68b7ea
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* This header provides a portable threads implementation.
* This header provides a portable threads implementation.
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2002 VideoLAN
* Copyright (C) 1999, 2002 VideoLAN
* $Id: vlc_threads_funcs.h,v 1.
6
2002/10/
15 08:35:24 sam
Exp $
* $Id: vlc_threads_funcs.h,v 1.
7
2002/10/
27 17:23:17 titer
Exp $
*
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
@@ -315,6 +315,7 @@ static inline int __vlc_cond_signal( char * psz_file, int i_line,
...
@@ -315,6 +315,7 @@ static inline int __vlc_cond_signal( char * psz_file, int i_line,
return
0
;
return
0
;
}
}
}
}
i_result
=
0
;
}
}
#endif
#endif
...
@@ -450,6 +451,7 @@ static inline int __vlc_cond_broadcast( char * psz_file, int i_line,
...
@@ -450,6 +451,7 @@ static inline int __vlc_cond_broadcast( char * psz_file, int i_line,
return
0
;
return
0
;
}
}
}
}
i_result
=
0
;
}
}
#endif
#endif
...
...
modules/codec/faad/decoder.c
View file @
3a68b7ea
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* decoder.c: AAC decoder using libfaad2
* decoder.c: AAC decoder using libfaad2
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* Copyright (C) 2001, 2002 VideoLAN
* $Id: decoder.c,v 1.
8
2002/10/27 1
6:58:13 gbazin
Exp $
* $Id: decoder.c,v 1.
9
2002/10/27 1
7:23:17 titer
Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -172,7 +172,7 @@ static inline void __GetFrame( adec_thread_t *p_adec )
...
@@ -172,7 +172,7 @@ static inline void __GetFrame( adec_thread_t *p_adec )
input_ExtractPES
(
p_adec
->
p_fifo
,
&
p_pes
);
input_ExtractPES
(
p_adec
->
p_fifo
,
&
p_pes
);
if
(
!
p_pes
)
if
(
!
p_pes
)
{
{
p_
v
dec
->
p_framedata
=
NULL
;
p_
a
dec
->
p_framedata
=
NULL
;
return
;
return
;
}
}
}
}
...
@@ -212,7 +212,7 @@ static inline void __GetFrame( adec_thread_t *p_adec )
...
@@ -212,7 +212,7 @@ static inline void __GetFrame( adec_thread_t *p_adec )
static
inline
void
__NextFrame
(
adec_thread_t
*
p_adec
)
static
inline
void
__NextFrame
(
adec_thread_t
*
p_adec
)
{
{
input_ExtractPES
(
p_
v
dec
->
p_fifo
,
NULL
);
input_ExtractPES
(
p_
a
dec
->
p_fifo
,
NULL
);
}
}
...
...
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