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
d44952d7
Commit
d44952d7
authored
Nov 08, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* araw.c: prevent segfault with ulaw/alaw.
parent
d2d96bbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/codec/araw.c
modules/codec/araw.c
+3
-1
No files found.
modules/codec/araw.c
View file @
d44952d7
...
...
@@ -2,7 +2,7 @@
* araw.c: Pseudo audio decoder; for raw pcm data
*****************************************************************************
* Copyright (C) 2001, 2003 VideoLAN
* $Id: araw.c,v 1.2
2 2003/11/05 01:47:40
fenrir Exp $
* $Id: araw.c,v 1.2
3 2003/11/08 04:57:56
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -319,11 +319,13 @@ static int DecoderInit( decoder_t *p_dec )
{
p_sys
->
output_format
.
i_format
=
AOUT_FMT_S16_NE
;
p_sys
->
p_logtos16
=
alawtos16
;
p_wf
->
wBitsPerSample
=
8
;
}
else
if
(
p_dec
->
p_fifo
->
i_fourcc
==
VLC_FOURCC
(
'u'
,
'l'
,
'a'
,
'w'
)
)
{
p_sys
->
output_format
.
i_format
=
AOUT_FMT_S16_NE
;
p_sys
->
p_logtos16
=
ulawtos16
;
p_wf
->
wBitsPerSample
=
8
;
}
}
p_sys
->
output_format
.
i_rate
=
p_wf
->
nSamplesPerSec
;
...
...
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