Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
01a6703d
Commit
01a6703d
authored
Feb 10, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TS Mux: use calloc
parent
7f3c9cf9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
26 deletions
+1
-26
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+1
-26
No files found.
modules/mux/mpeg/ts.c
View file @
01a6703d
...
@@ -506,13 +506,10 @@ static int Open( vlc_object_t *p_this )
...
@@ -506,13 +506,10 @@ static int Open( vlc_object_t *p_this )
config_ChainParse
(
p_mux
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_mux
->
p_cfg
);
config_ChainParse
(
p_mux
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_mux
->
p_cfg
);
p_sys
=
malloc
(
sizeof
(
sout_mux_sys_t
)
);
p_sys
=
calloc
(
1
,
sizeof
(
sout_mux_sys_t
)
);
if
(
!
p_sys
)
if
(
!
p_sys
)
return
VLC_ENOMEM
;
return
VLC_ENOMEM
;
p_sys
->
i_pmtslots
=
p_sys
->
b_sdt
=
0
;
p_sys
->
i_num_pmt
=
1
;
p_sys
->
i_num_pmt
=
1
;
p_sys
->
dvbpmt
=
NULL
;
memset
(
&
p_sys
->
pmtmap
,
0
,
sizeof
(
p_sys
->
pmtmap
)
);
p_mux
->
pf_control
=
Control
;
p_mux
->
pf_control
=
Control
;
p_mux
->
pf_addstream
=
AddStream
;
p_mux
->
pf_addstream
=
AddStream
;
...
@@ -520,11 +517,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -520,11 +517,6 @@ static int Open( vlc_object_t *p_this )
p_mux
->
pf_mux
=
Mux
;
p_mux
->
pf_mux
=
Mux
;
p_mux
->
p_sys
=
p_sys
;
p_mux
->
p_sys
=
p_sys
;
for
(
int
i
=
0
;
i
<
MAX_PMT
;
i
++
)
p_sys
->
sdt_descriptors
[
i
].
psz_service_name
=
p_sys
->
sdt_descriptors
[
i
].
psz_provider
=
NULL
;
memset
(
p_sys
->
sdt_descriptors
,
0
,
sizeof
(
sdt_desc_t
)
);
p_sys
->
b_es_id_pid
=
var_GetBool
(
p_mux
,
SOUT_CFG_PREFIX
"es-id-pid"
);
p_sys
->
b_es_id_pid
=
var_GetBool
(
p_mux
,
SOUT_CFG_PREFIX
"es-id-pid"
);
/*
/*
...
@@ -581,9 +573,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -581,9 +573,6 @@ static int Open( vlc_object_t *p_this )
unsigned
short
subi
[
3
];
unsigned
short
subi
[
3
];
vlc_rand_bytes
(
subi
,
sizeof
(
subi
));
vlc_rand_bytes
(
subi
,
sizeof
(
subi
));
p_sys
->
i_pat_version_number
=
nrand48
(
subi
)
&
0x1f
;
p_sys
->
i_pat_version_number
=
nrand48
(
subi
)
&
0x1f
;
p_sys
->
pat
.
i_pid
=
0
;
p_sys
->
pat
.
i_continuity_counter
=
0
;
p_sys
->
pat
.
b_discontinuity
=
false
;
vlc_value_t
val
;
vlc_value_t
val
;
var_Get
(
p_mux
,
SOUT_CFG_PREFIX
"tsid"
,
&
val
);
var_Get
(
p_mux
,
SOUT_CFG_PREFIX
"tsid"
,
&
val
);
...
@@ -599,15 +588,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -599,15 +588,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
i_netid
=
val
.
i_int
;
p_sys
->
i_netid
=
val
.
i_int
;
p_sys
->
i_pmt_version_number
=
nrand48
(
subi
)
&
0x1f
;
p_sys
->
i_pmt_version_number
=
nrand48
(
subi
)
&
0x1f
;
for
(
unsigned
i
=
0
;
i
<
p_sys
->
i_num_pmt
;
i
++
)
{
p_sys
->
pmt
[
i
].
i_continuity_counter
=
0
;
p_sys
->
pmt
[
i
].
b_discontinuity
=
false
;
}
p_sys
->
sdt
.
i_pid
=
0x11
;
p_sys
->
sdt
.
i_pid
=
0x11
;
p_sys
->
sdt
.
i_continuity_counter
=
0
;
p_sys
->
sdt
.
b_discontinuity
=
false
;
char
*
sdtdesc
=
var_GetNonEmptyString
(
p_mux
,
SOUT_CFG_PREFIX
"sdtdesc"
);
char
*
sdtdesc
=
var_GetNonEmptyString
(
p_mux
,
SOUT_CFG_PREFIX
"sdtdesc"
);
...
@@ -704,9 +685,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -704,9 +685,6 @@ static int Open( vlc_object_t *p_this )
}
}
p_sys
->
i_pcr_pid
=
0x1fff
;
p_sys
->
i_pcr_pid
=
0x1fff
;
p_sys
->
p_pcr_input
=
NULL
;
p_sys
->
i_mpeg4_streams
=
0
;
/* Allow to create constrained stream */
/* Allow to create constrained stream */
p_sys
->
i_bitrate_min
=
var_GetInteger
(
p_mux
,
SOUT_CFG_PREFIX
"bmin"
);
p_sys
->
i_bitrate_min
=
var_GetInteger
(
p_mux
,
SOUT_CFG_PREFIX
"bmin"
);
...
@@ -756,9 +734,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -756,9 +734,6 @@ static int Open( vlc_object_t *p_this )
p_sys
->
b_use_key_frames
=
var_GetBool
(
p_mux
,
SOUT_CFG_PREFIX
"use-key-frames"
);
p_sys
->
b_use_key_frames
=
var_GetBool
(
p_mux
,
SOUT_CFG_PREFIX
"use-key-frames"
);
/* for TS generation */
p_sys
->
i_pcr
=
0
;
p_sys
->
csa
=
csaSetup
(
p_this
);
p_sys
->
csa
=
csaSetup
(
p_this
);
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
...
...
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