Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
017996d9
Commit
017996d9
authored
Mar 21, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix avi dts support
parent
a3b0403c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
include/codecs.h
include/codecs.h
+5
-2
No files found.
include/codecs.h
View file @
017996d9
...
...
@@ -2,7 +2,7 @@
* codecs.h: codec related structures needed by the demuxers and decoders
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id
: codecs.h,v 1.12 2004/02/23 23:01:05 gbazin Exp
$
* $Id$
*
* Author: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -133,7 +133,7 @@ typedef struct
#define WAVE_FORMAT_IEEE_FLOAT 0x0003
/* Microsoft Corporation */
#define WAVE_FORMAT_ALAW 0x0006
/* Microsoft Corporation */
#define WAVE_FORMAT_MULAW 0x0007
/* Microsoft Corporation */
#define WAVE_FORMAT_DTS
0x0008
/* Microsoft Corporation */
#define WAVE_FORMAT_DTS
_MS
0x0008
/* Microsoft Corporation */
#define WAVE_FORMAT_IMA_ADPCM 0x0011
/* Intel Corporation */
#define WAVE_FORMAT_GSM610 0x0031
/* Microsoft Corporation */
#define WAVE_FORMAT_MSNAUDIO 0x0032
/* Microsoft Corporation */
...
...
@@ -142,6 +142,7 @@ typedef struct
#define WAVE_FORMAT_DOLBY_AC3_SPDIF 0x0092
/* Sonic Foundry */
#define WAVE_FORMAT_A52 0x2000
#define WAVE_FORMAT_DTS 0x2001
#define WAVE_FORMAT_WMA1 0x0160
#define WAVE_FORMAT_WMA2 0x0161
#define WAVE_FORMAT_WMA3 0x0162
...
...
@@ -197,6 +198,8 @@ wave_format_tag_to_fourcc[] =
{
WAVE_FORMAT_WMA3
,
VLC_FOURCC
(
'w'
,
'm'
,
'a'
,
'3'
),
"Window Media Audio 3"
},
{
WAVE_FORMAT_DK3
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x61
),
"Duck DK3"
},
{
WAVE_FORMAT_DK4
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x62
),
"Duck DK4"
},
{
WAVE_FORMAT_DTS
,
VLC_FOURCC
(
'd'
,
't'
,
's'
,
' '
),
"DTS Coherent Acoustics"
},
{
WAVE_FORMAT_DTS_MS
,
VLC_FOURCC
(
'd'
,
't'
,
's'
,
' '
),
"DTS Coherent Acoustics"
},
{
WAVE_FORMAT_UNKNOWN
,
VLC_FOURCC
(
'u'
,
'n'
,
'd'
,
'f'
),
"Unknown"
}
};
...
...
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