Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
4c2c599e
Commit
4c2c599e
authored
Aug 09, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./include/audio_output.h: small compilation fix.
parent
9000920a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
include/audio_output.h
include/audio_output.h
+8
-8
No files found.
include/audio_output.h
View file @
4c2c599e
...
...
@@ -2,7 +2,7 @@
* audio_output.h : audio output interface
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: audio_output.h,v 1.5
4 2002/08/09 23:46:53 massiot
Exp $
* $Id: audio_output.h,v 1.5
5 2002/08/09 23:52:31 sam
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -49,10 +49,10 @@ struct audio_sample_format_t
#define AOUT_FMT_DTS 0x00200000
#define AOUT_FMTS_IDENTICAL( p_first, p_second ) ( \
(
p_first->i_format == p_second->i_format)
\
&& (
p_first->i_rate == p_second->i_rate)
\
&& (
p_first->i_channels == p_second->i_channels
\
||
p_first->i_channels == -1 || p_second
->i_channels == -1) )
(
(p_first)->i_format == (p_second)->i_format)
\
&& (
(p_first)->i_rate == (p_second)->i_rate)
\
&& (
(p_first)->i_channels == (p_second)->i_channels
\
||
(p_first)->i_channels == -1 || (p_second)
->i_channels == -1) )
#ifdef WORDS_BIGENDIAN
# define AOUT_FMT_S16_NE AOUT_FMT_S16_BE
...
...
@@ -63,9 +63,9 @@ struct audio_sample_format_t
#endif
#define AOUT_FMT_IS_SPDIF( p_format ) \
( (
p_format->i_format == AOUT_FMT_SPDIF)
\
|| (
p_format->i_format == AOUT_FMT_A52)
\
|| (
p_format
->i_format == AOUT_FMT_DTS) )
( (
(p_format)->i_format == AOUT_FMT_SPDIF)
\
|| (
(p_format)->i_format == AOUT_FMT_A52)
\
|| (
(p_format)
->i_format == AOUT_FMT_DTS) )
/*****************************************************************************
* aout_buffer_t : audio output buffer
...
...
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