Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
4d7d9ec2
Commit
4d7d9ec2
authored
Feb 14, 2009
by
Laurent Aimar
Browse files
Use calloc when applicable (decoders).
parent
ef13b641
Changes
7
Hide whitespace changes
Inline
Side-by-side
modules/codec/faad.c
View file @
4d7d9ec2
...
...
@@ -123,8 +123,7 @@ static int Open( vlc_object_t *p_this )
}
/* Allocate the memory needed to store the decoder's structure */
if
(
(
p_dec
->
p_sys
=
p_sys
=
(
decoder_sys_t
*
)
malloc
(
sizeof
(
decoder_sys_t
))
)
==
NULL
)
if
(
(
p_dec
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
)
)
)
==
NULL
)
return
VLC_ENOMEM
;
/* Open a faad context */
...
...
modules/codec/fake.c
View file @
4d7d9ec2
...
...
@@ -143,12 +143,9 @@ static int OpenDecoder( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
p_dec
->
p_sys
=
(
decoder_sys_t
*
)
m
alloc
(
sizeof
(
decoder
_sys
_t
)
);
p_dec
->
p_sys
=
c
alloc
(
1
,
sizeof
(
*
p_dec
->
p
_sys
)
);
if
(
!
p_dec
->
p_sys
)
{
return
VLC_ENOMEM
;
}
memset
(
p_dec
->
p_sys
,
0
,
sizeof
(
decoder_sys_t
)
);
psz_file
=
var_CreateGetNonEmptyStringCommand
(
p_dec
,
"fake-file"
);
if
(
!
psz_file
)
...
...
modules/codec/flac.c
View file @
4d7d9ec2
...
...
@@ -214,8 +214,7 @@ static int OpenDecoder( vlc_object_t *p_this )
}
/* Allocate the memory needed to store the decoder's structure */
if
(
(
p_dec
->
p_sys
=
p_sys
=
(
decoder_sys_t
*
)
malloc
(
sizeof
(
decoder_sys_t
))
)
==
NULL
)
if
(
(
p_dec
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
))
)
==
NULL
)
return
VLC_ENOMEM
;
/* Misc init */
...
...
modules/codec/kate.c
View file @
4d7d9ec2
...
...
@@ -360,8 +360,7 @@ static int OpenDecoder( vlc_object_t *p_this )
DecodeBlock
;
/* Allocate the memory needed to store the decoder's structure */
if
(
(
p_dec
->
p_sys
=
p_sys
=
(
decoder_sys_t
*
)
malloc
(
sizeof
(
decoder_sys_t
))
)
==
NULL
)
if
(
(
p_dec
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
))
)
==
NULL
)
return
VLC_ENOMEM
;
vlc_mutex_init
(
&
p_sys
->
lock
);
...
...
@@ -426,8 +425,10 @@ static int OpenDecoder( vlc_object_t *p_this )
#endif
es_format_Init
(
&
p_dec
->
fmt_out
,
SPU_ES
,
0
);
/* add the decoder to the global list */
decoder_t
**
list
=
(
decoder_t
**
)
realloc
(
kate_decoder_list
,
(
kate_decoder_list_size
+
1
)
*
sizeof
(
decoder_t
*
));
decoder_t
**
list
=
realloc
(
kate_decoder_list
,
(
kate_decoder_list_size
+
1
)
*
sizeof
(
*
list
));
if
(
list
)
{
list
[
kate_decoder_list_size
++
]
=
p_dec
;
...
...
modules/codec/realaudio.c
View file @
4d7d9ec2
...
...
@@ -200,10 +200,9 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
p_dec
->
p_sys
=
p_sys
=
m
alloc
(
sizeof
(
decoder
_sys
_t
)
);
p_dec
->
p_sys
=
p_sys
=
c
alloc
(
1
,
sizeof
(
*
p
_sys
)
);
if
(
!
p_sys
)
return
VLC_ENOMEM
;
memset
(
p_sys
,
0
,
sizeof
(
decoder_sys_t
)
);
/* Flavor for SIPR codecs */
p_sys
->
i_codec_flavor
=
-
1
;
...
...
modules/codec/theora.c
View file @
4d7d9ec2
...
...
@@ -139,8 +139,7 @@ static int OpenDecoder( vlc_object_t *p_this )
}
/* Allocate the memory needed to store the decoder's structure */
if
(
(
p_dec
->
p_sys
=
p_sys
=
(
decoder_sys_t
*
)
malloc
(
sizeof
(
decoder_sys_t
))
)
==
NULL
)
if
(
(
p_dec
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
))
)
==
NULL
)
return
VLC_ENOMEM
;
p_dec
->
p_sys
->
b_packetizer
=
false
;
...
...
modules/codec/vorbis.c
View file @
4d7d9ec2
...
...
@@ -235,8 +235,7 @@ static int OpenDecoder( vlc_object_t *p_this )
}
/* Allocate the memory needed to store the decoder's structure */
if
(
(
p_dec
->
p_sys
=
p_sys
=
(
decoder_sys_t
*
)
malloc
(
sizeof
(
decoder_sys_t
))
)
==
NULL
)
if
(
(
p_dec
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
)
)
)
==
NULL
)
return
VLC_ENOMEM
;
/* Misc init */
...
...
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