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
98be9ffa
Commit
98be9ffa
authored
Apr 05, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wav: cosmetics (alignment, unlikely, locality)
parent
efeb2e71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
modules/demux/wav.c
modules/demux/wav.c
+19
-19
No files found.
modules/demux/wav.c
View file @
98be9ffa
...
...
@@ -100,9 +100,9 @@ static int Open( vlc_object_t * p_this )
demux_sys_t
*
p_sys
;
const
uint8_t
*
p_peek
;
unsigned
int
i_size
;
unsigned
int
i_extended
;
const
char
*
psz_name
;
unsigned
int
i_size
;
unsigned
int
i_extended
;
const
char
*
psz_name
;
WAVEFORMATEXTENSIBLE
*
p_wf_ext
=
NULL
;
WAVEFORMATEX
*
p_wf
=
NULL
;
...
...
@@ -116,13 +116,13 @@ static int Open( vlc_object_t * p_this )
return
VLC_EGENERIC
;
}
p_demux
->
pf_demux
=
Demux
;
p_demux
->
pf_control
=
Control
;
p_demux
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
)
);
if
(
p_sys
==
NULL
)
p_demux
->
pf_demux
=
Demux
;
p_demux
->
pf_control
=
Control
;
p_demux
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
)
);
if
(
unlikely
(
!
p_sys
)
)
return
VLC_ENOMEM
;
p_sys
->
p_es
=
NULL
;
p_sys
->
p_es
=
NULL
;
p_sys
->
b_chan_reorder
=
false
;
p_sys
->
i_channel_mask
=
0
;
...
...
@@ -148,12 +148,12 @@ static int Open( vlc_object_t * p_this )
/* load waveformatex */
p_wf_ext
=
malloc
(
i_size
);
if
(
p_wf_ext
==
NULL
)
if
(
unlikely
(
!
p_wf_ext
)
)
goto
error
;
p_wf
=
&
p_wf_ext
->
Format
;
p_wf
=
&
p_wf_ext
->
Format
;
p_wf
->
cbSize
=
0
;
i_size
-=
2
;
i_size
-=
2
;
if
(
stream_Read
(
p_demux
->
s
,
p_wf
,
i_size
)
!=
(
int
)
i_size
||
(
(
i_size
&
1
)
&&
stream_Read
(
p_demux
->
s
,
NULL
,
1
)
!=
1
)
)
{
...
...
@@ -164,10 +164,10 @@ static int Open( vlc_object_t * p_this )
es_format_Init
(
&
p_sys
->
fmt
,
AUDIO_ES
,
0
);
wf_tag_to_fourcc
(
GetWLE
(
&
p_wf
->
wFormatTag
),
&
p_sys
->
fmt
.
i_codec
,
&
psz_name
);
p_sys
->
fmt
.
audio
.
i_channels
=
GetWLE
(
&
p_wf
->
nChannels
);
p_sys
->
fmt
.
audio
.
i_rate
=
GetDWLE
(
&
p_wf
->
nSamplesPerSec
);
p_sys
->
fmt
.
audio
.
i_blockalign
=
GetWLE
(
&
p_wf
->
nBlockAlign
);
p_sys
->
fmt
.
i_bitrate
=
GetDWLE
(
&
p_wf
->
nAvgBytesPerSec
)
*
8
;
p_sys
->
fmt
.
audio
.
i_channels
=
GetWLE
(
&
p_wf
->
nChannels
);
p_sys
->
fmt
.
audio
.
i_rate
=
GetDWLE
(
&
p_wf
->
nSamplesPerSec
);
p_sys
->
fmt
.
audio
.
i_blockalign
=
GetWLE
(
&
p_wf
->
nBlockAlign
);
p_sys
->
fmt
.
i_bitrate
=
GetDWLE
(
&
p_wf
->
nAvgBytesPerSec
)
*
8
;
p_sys
->
fmt
.
audio
.
i_bitspersample
=
GetWLE
(
&
p_wf
->
wBitsPerSample
);
if
(
i_size
>=
sizeof
(
WAVEFORMATEX
)
)
p_sys
->
fmt
.
i_extra
=
__MIN
(
GetWLE
(
&
p_wf
->
cbSize
),
i_size
-
sizeof
(
WAVEFORMATEX
)
);
...
...
@@ -181,7 +181,7 @@ static int Open( vlc_object_t * p_this )
(
p_sys
->
fmt
.
i_extra
+
sizeof
(
WAVEFORMATEX
)
>=
sizeof
(
WAVEFORMATEXTENSIBLE
)
)
)
{
unsigned
i
,
i
_channel_mask
;
unsigned
i_channel_mask
;
GUID
guid_subformat
;
guid_subformat
=
p_wf_ext
->
SubFormat
;
...
...
@@ -198,7 +198,7 @@ static int Open( vlc_object_t * p_this )
if
(
i_channel_mask
)
{
int
i_match
=
0
;
for
(
i
=
0
;
i
<
sizeof
(
pi_channels_src
)
/
sizeof
(
*
pi_channels_src
);
i
++
)
for
(
unsigned
i
=
0
;
i
<
sizeof
(
pi_channels_src
)
/
sizeof
(
*
pi_channels_src
);
i
++
)
{
if
(
i_channel_mask
&
pi_channels_src
[
i
]
)
{
...
...
@@ -286,7 +286,7 @@ static int Open( vlc_object_t * p_this )
if
(
p_sys
->
fmt
.
i_extra
>
0
)
{
p_sys
->
fmt
.
p_extra
=
malloc
(
p_sys
->
fmt
.
i_extra
);
if
(
!
p_sys
->
fmt
.
p_extra
)
if
(
unlikely
(
!
p_sys
->
fmt
.
p_extra
)
)
{
p_sys
->
fmt
.
i_extra
=
0
;
goto
error
;
...
...
@@ -444,7 +444,7 @@ static int Demux( demux_t *p_demux )
static
void
Close
(
vlc_object_t
*
p_this
)
{
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
free
(
p_sys
);
}
...
...
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