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
8e2410ec
Commit
8e2410ec
authored
Apr 08, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/audio_output/waveout.c: compilation fix for builtins only build.
parent
31a59387
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
modules/audio_output/waveout.c
modules/audio_output/waveout.c
+7
-7
No files found.
modules/audio_output/waveout.c
View file @
8e2410ec
...
...
@@ -2,7 +2,7 @@
* waveout.c : Windows waveOut plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: waveout.c,v 1.2
2 2003/04/07 16:02:08
gbazin Exp $
* $Id: waveout.c,v 1.2
3 2003/04/08 21:26:22
gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -93,9 +93,9 @@ typedef struct {
#endif
#include <initguid.h>
DEFINE_GUID
(
_KSDATAFORMAT_SUBTYPE_IEEE_FLOAT
,
WAVE_FORMAT_IEEE_FLOAT
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
_KSDATAFORMAT_SUBTYPE_PCM
,
WAVE_FORMAT_PCM
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
_KSDATAFORMAT_SUBTYPE_DOLBY_AC3_SPDIF
,
WAVE_FORMAT_DOLBY_AC3_SPDIF
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
_
_
KSDATAFORMAT_SUBTYPE_IEEE_FLOAT
,
WAVE_FORMAT_IEEE_FLOAT
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
_
_
KSDATAFORMAT_SUBTYPE_PCM
,
WAVE_FORMAT_PCM
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
_
_
KSDATAFORMAT_SUBTYPE_DOLBY_AC3_SPDIF
,
WAVE_FORMAT_DOLBY_AC3_SPDIF
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
/*****************************************************************************
* Local prototypes
...
...
@@ -474,7 +474,7 @@ static int OpenWaveOut( aout_instance_t *p_aout, int i_format,
waveformat
.
Samples
.
wValidBitsPerSample
=
waveformat
.
Format
.
wBitsPerSample
;
waveformat
.
Format
.
wFormatTag
=
WAVE_FORMAT_DOLBY_AC3_SPDIF
;
waveformat
.
SubFormat
=
_KSDATAFORMAT_SUBTYPE_DOLBY_AC3_SPDIF
;
waveformat
.
SubFormat
=
_
_
KSDATAFORMAT_SUBTYPE_DOLBY_AC3_SPDIF
;
break
;
case
VLC_FOURCC
(
'f'
,
'l'
,
'3'
,
'2'
):
...
...
@@ -482,7 +482,7 @@ static int OpenWaveOut( aout_instance_t *p_aout, int i_format,
waveformat
.
Samples
.
wValidBitsPerSample
=
waveformat
.
Format
.
wBitsPerSample
;
waveformat
.
Format
.
wFormatTag
=
WAVE_FORMAT_IEEE_FLOAT
;
waveformat
.
SubFormat
=
_KSDATAFORMAT_SUBTYPE_IEEE_FLOAT
;
waveformat
.
SubFormat
=
_
_
KSDATAFORMAT_SUBTYPE_IEEE_FLOAT
;
break
;
case
VLC_FOURCC
(
's'
,
'1'
,
'6'
,
'l'
):
...
...
@@ -490,7 +490,7 @@ static int OpenWaveOut( aout_instance_t *p_aout, int i_format,
waveformat
.
Samples
.
wValidBitsPerSample
=
waveformat
.
Format
.
wBitsPerSample
;
waveformat
.
Format
.
wFormatTag
=
WAVE_FORMAT_PCM
;
waveformat
.
SubFormat
=
_KSDATAFORMAT_SUBTYPE_PCM
;
waveformat
.
SubFormat
=
_
_
KSDATAFORMAT_SUBTYPE_PCM
;
break
;
}
...
...
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