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
c9118e87
Commit
c9118e87
authored
Aug 09, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix truespeech in wav files
parent
67b2f035
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
include/vlc_codecs.h
include/vlc_codecs.h
+1
-1
modules/demux/wav.c
modules/demux/wav.c
+1
-0
No files found.
include/vlc_codecs.h
View file @
c9118e87
...
...
@@ -350,7 +350,7 @@ wave_format_tag_to_fourcc[] =
{
WAVE_FORMAT_MULAW
,
VLC_CODEC_MULAW
,
"Mu-Law"
},
{
WAVE_FORMAT_IMA_ADPCM
,
VLC_CODEC_ADPCM_IMA_WAV
,
"Ima-ADPCM"
},
{
WAVE_FORMAT_YAMAHA_ADPCM
,
VLC_CODEC_ADPCM_YAMAHA
,
"Yamaha ADPCM"
},
{
WAVE_FORMAT_TRUESPEECH
,
VLC_
FOURCC
(
0x22
,
0x0
,
0x0
,
0x0
),
"Truespeech"
},
{
WAVE_FORMAT_TRUESPEECH
,
VLC_
CODEC_TRUESPEECH
,
"Truespeech"
},
{
WAVE_FORMAT_GSM610
,
VLC_CODEC_GSM_MS
,
"Microsoft WAV GSM"
},
{
WAVE_FORMAT_G726
,
VLC_CODEC_ADPCM_G726
,
"G.726 ADPCM"
},
{
WAVE_FORMAT_MPEGLAYER3
,
VLC_CODEC_MPGA
,
"Mpeg Audio"
},
...
...
modules/demux/wav.c
View file @
c9118e87
...
...
@@ -341,6 +341,7 @@ static int Open( vlc_object_t * p_this )
goto
error
;
case
VLC_CODEC_GSM_MS
:
case
VLC_CODEC_ADPCM_G726
:
case
VLC_CODEC_TRUESPEECH
:
if
(
FrameInfo_MSGSM
(
&
p_sys
->
i_frame_size
,
&
p_sys
->
i_frame_samples
,
&
p_sys
->
fmt
)
)
goto
error
;
...
...
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