Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
3a68b7ea
Commit
3a68b7ea
authored
Oct 27, 2002
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_threads_func.h : skip a useless BeOS warning
faad/decoder.c : minor compile fix
parent
cdf5edf7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
include/vlc_threads_funcs.h
include/vlc_threads_funcs.h
+3
-1
modules/codec/faad/decoder.c
modules/codec/faad/decoder.c
+3
-3
No files found.
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 16:58:13 gbazin
Exp $
* $Id: decoder.c,v 1.
9 2002/10/27 17: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