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
a6c0d629
Commit
a6c0d629
authored
Feb 09, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TS mux: use calloc, don't rename i_extra/p_extra
parent
3915ce75
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
42 deletions
+31
-42
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+31
-42
No files found.
modules/mux/mpeg/ts.c
View file @
a6c0d629
...
@@ -339,8 +339,8 @@ typedef struct ts_stream_t
...
@@ -339,8 +339,8 @@ typedef struct ts_stream_t
/* Specific to mpeg4 in mpeg2ts */
/* Specific to mpeg4 in mpeg2ts */
int
i_es_id
;
int
i_es_id
;
int
i_
decoder_specific_info
;
int
i_
extra
;
uint8_t
*
p_
decoder_specific_info
;
uint8_t
*
p_
extra
;
/* language is iso639-2T */
/* language is iso639-2T */
int
i_langs
;
int
i_langs
;
...
@@ -917,25 +917,20 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -917,25 +917,20 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
sout_mux_sys_t
*
p_sys
=
p_mux
->
p_sys
;
sout_mux_sys_t
*
p_sys
=
p_mux
->
p_sys
;
ts_stream_t
*
p_stream
;
ts_stream_t
*
p_stream
;
p_input
->
p_sys
=
p_stream
=
malloc
(
sizeof
(
ts_stream_t
)
);
p_input
->
p_sys
=
p_stream
=
calloc
(
1
,
sizeof
(
ts_stream_t
)
);
if
(
!
p_input
->
p_sys
)
if
(
!
p_input
->
p_sys
)
return
VLC_ENOMEM
;
return
VLC_ENOMEM
;
/* Init this new stream */
if
(
p_sys
->
b_es_id_pid
)
if
(
p_sys
->
b_es_id_pid
)
p_stream
->
i_pid
=
p_input
->
p_fmt
->
i_id
&
0x1fff
;
p_stream
->
i_pid
=
p_input
->
p_fmt
->
i_id
&
0x1fff
;
else
else
p_stream
->
i_pid
=
AllocatePID
(
p_sys
,
p_input
->
p_fmt
->
i_cat
);
p_stream
->
i_pid
=
AllocatePID
(
p_sys
,
p_input
->
p_fmt
->
i_cat
);
p_stream
->
i_codec
=
p_input
->
p_fmt
->
i_codec
;
p_stream
->
i_codec
=
p_input
->
p_fmt
->
i_codec
;
p_stream
->
i_continuity_counter
=
0
;
p_stream
->
b_discontinuity
=
false
;
p_stream
->
i_decoder_specific_info
=
0
;
p_stream
->
p_decoder_specific_info
=
NULL
;
msg_Dbg
(
p_mux
,
"adding input codec=%4.4s pid=%d"
,
msg_Dbg
(
p_mux
,
"adding input codec=%4.4s pid=%d"
,
(
char
*
)
&
p_
input
->
p_fmt
->
i_codec
,
p_stream
->
i_pid
);
(
char
*
)
&
p_
stream
->
i_codec
,
p_stream
->
i_pid
);
/* All others fields depand on codec */
switch
(
p_input
->
p_fmt
->
i_cat
)
switch
(
p_input
->
p_fmt
->
i_cat
)
{
{
case
VIDEO_ES
:
case
VIDEO_ES
:
...
@@ -1060,7 +1055,6 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -1060,7 +1055,6 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
p_stream
->
lang
=
malloc
(
p_stream
->
i_langs
*
3
);
p_stream
->
lang
=
malloc
(
p_stream
->
i_langs
*
3
);
if
(
!
p_stream
->
lang
)
if
(
!
p_stream
->
lang
)
{
{
p_stream
->
i_langs
=
0
;
free
(
p_stream
);
free
(
p_stream
);
return
VLC_ENOMEM
;
return
VLC_ENOMEM
;
}
}
...
@@ -1130,13 +1124,11 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -1130,13 +1124,11 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
/* Create decoder specific info for subt */
/* Create decoder specific info for subt */
if
(
p_stream
->
i_codec
==
VLC_CODEC_SUBT
)
if
(
p_stream
->
i_codec
==
VLC_CODEC_SUBT
)
{
{
uint8_t
*
p
;
p_stream
->
i_extra
=
55
;
p_stream
->
p_extra
=
malloc
(
p_stream
->
i_extra
);
p_stream
->
i_decoder_specific_info
=
55
;
if
(
p_stream
->
p_extra
)
p_stream
->
p_decoder_specific_info
=
p
=
malloc
(
p_stream
->
i_decoder_specific_info
);
if
(
p
)
{
{
uint8_t
*
p
=
p_stream
->
p_extra
;
p
[
0
]
=
0x10
;
/* textFormat, 0x10 for 3GPP TS 26.245 */
p
[
0
]
=
0x10
;
/* textFormat, 0x10 for 3GPP TS 26.245 */
p
[
1
]
=
0x00
;
/* flags: 1b: associated video info flag
p
[
1
]
=
0x00
;
/* flags: 1b: associated video info flag
3b: reserved
3b: reserved
...
@@ -1175,32 +1167,29 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -1175,32 +1167,29 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
*
p
++
=
9
;
/* font name length */
*
p
++
=
9
;
/* font name length */
memcpy
(
p
,
"Helvetica"
,
9
);
/* font name */
memcpy
(
p
,
"Helvetica"
,
9
);
/* font name */
}
}
else
p_stream
->
i_decoder_specific_info
=
0
;
else
p_stream
->
i_extra
=
0
;
}
}
else
else
{
{
/* Copy extra data (VOL for MPEG-4 and extra BitMapInfoHeader for VFW */
/* Copy extra data (VOL for MPEG-4 and extra BitMapInfoHeader for VFW */
p_stream
->
i_
decoder_specific_info
=
p_input
->
p_fmt
->
i_extra
;
p_stream
->
i_
extra
=
p_input
->
p_fmt
->
i_extra
;
if
(
p_stream
->
i_
decoder_specific_info
>
0
)
if
(
p_stream
->
i_
extra
>
0
)
{
{
p_stream
->
p_decoder_specific_info
=
p_stream
->
p_extra
=
malloc
(
p_stream
->
i_extra
);
malloc
(
p_stream
->
i_decoder_specific_info
);
if
(
p_stream
->
p_extra
)
if
(
p_stream
->
p_decoder_specific_info
)
{
{
memcpy
(
p_stream
->
p_
decoder_specific_info
,
memcpy
(
p_stream
->
p_
extra
,
p_input
->
p_fmt
->
p_extra
,
p_input
->
p_fmt
->
p_extra
,
p_input
->
p_fmt
->
i_extra
);
p_input
->
p_fmt
->
i_extra
);
}
}
else
p_stream
->
i_decoder_specific_info
=
0
;
else
p_stream
->
i_extra
=
0
;
}
}
}
}
/* Init pes chain */
/* Init pes chain */
BufferChainInit
(
&
p_stream
->
chain_pes
);
BufferChainInit
(
&
p_stream
->
chain_pes
);
p_stream
->
i_pes_dts
=
0
;
p_stream
->
i_pes_length
=
0
;
p_stream
->
i_pes_used
=
0
;
p_stream
->
b_key_frame
=
0
;
/* We only change PMT version (PAT isn't changed) */
/* We only change PMT version (PAT isn't changed) */
p_sys
->
i_pmt_version_number
=
(
p_sys
->
i_pmt_version_number
+
1
)
%
32
;
p_sys
->
i_pmt_version_number
=
(
p_sys
->
i_pmt_version_number
+
1
)
%
32
;
...
@@ -1273,7 +1262,7 @@ static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -1273,7 +1262,7 @@ static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
BufferChainClean
(
&
p_stream
->
chain_pes
);
BufferChainClean
(
&
p_stream
->
chain_pes
);
free
(
p_stream
->
lang
);
free
(
p_stream
->
lang
);
free
(
p_stream
->
p_
decoder_specific_info
);
free
(
p_stream
->
p_
extra
);
if
(
p_stream
->
i_stream_id
==
0xfa
||
if
(
p_stream
->
i_stream_id
==
0xfa
||
p_stream
->
i_stream_id
==
0xfb
||
p_stream
->
i_stream_id
==
0xfb
||
p_stream
->
i_stream_id
==
0xfe
)
p_stream
->
i_stream_id
==
0xfe
)
...
@@ -2390,17 +2379,17 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
...
@@ -2390,17 +2379,17 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
bits_write
(
&
bits
,
32
,
0x7fffffff
);
/* maxBitrate */
bits_write
(
&
bits
,
32
,
0x7fffffff
);
/* maxBitrate */
bits_write
(
&
bits
,
32
,
0
);
/* avgBitrate */
bits_write
(
&
bits
,
32
,
0
);
/* avgBitrate */
if
(
p_stream
->
i_
decoder_specific_info
>
0
)
if
(
p_stream
->
i_
extra
>
0
)
{
{
/* DecoderSpecificInfo */
/* DecoderSpecificInfo */
bits_align
(
&
bits
);
bits_align
(
&
bits
);
bits_write
(
&
bits
,
8
,
0x05
);
/* tag */
bits_write
(
&
bits
,
8
,
0x05
);
/* tag */
bits_write
(
&
bits
,
24
,
GetDescriptorLength24b
(
bits_write
(
&
bits
,
24
,
GetDescriptorLength24b
(
p_stream
->
i_
decoder_specific_info
)
);
p_stream
->
i_
extra
)
);
for
(
int
i
=
0
;
i
<
p_stream
->
i_
decoder_specific_info
;
i
++
)
for
(
int
i
=
0
;
i
<
p_stream
->
i_
extra
;
i
++
)
{
{
bits_write
(
&
bits
,
8
,
bits_write
(
&
bits
,
8
,
((
uint8_t
*
)
p_stream
->
p_
decoder_specific_info
)[
i
]
);
((
uint8_t
*
)
p_stream
->
p_
extra
)[
i
]
);
}
}
}
}
/* fix Decoder length */
/* fix Decoder length */
...
@@ -2466,7 +2455,7 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
...
@@ -2466,7 +2455,7 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
else
if
(
p_stream
->
i_stream_type
==
0xa0
)
else
if
(
p_stream
->
i_stream_type
==
0xa0
)
{
{
uint8_t
data
[
512
];
uint8_t
data
[
512
];
int
i_extra
=
__MIN
(
p_stream
->
i_
decoder_specific_info
,
502
);
int
i_extra
=
__MIN
(
p_stream
->
i_
extra
,
502
);
/* private DIV3 descripor */
/* private DIV3 descripor */
memcpy
(
&
data
[
0
],
&
p_stream
->
i_bih_codec
,
4
);
memcpy
(
&
data
[
0
],
&
p_stream
->
i_bih_codec
,
4
);
...
@@ -2478,7 +2467,7 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
...
@@ -2478,7 +2467,7 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
data
[
9
]
=
(
i_extra
)
&
0xff
;
data
[
9
]
=
(
i_extra
)
&
0xff
;
if
(
i_extra
>
0
)
if
(
i_extra
>
0
)
{
{
memcpy
(
&
data
[
10
],
p_stream
->
p_
decoder_specific_info
,
i_extra
);
memcpy
(
&
data
[
10
],
p_stream
->
p_
extra
,
i_extra
);
}
}
/* 0xa0 is private */
/* 0xa0 is private */
...
@@ -2513,23 +2502,23 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
...
@@ -2513,23 +2502,23 @@ static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
}
}
else
if
(
p_stream
->
i_codec
==
VLC_CODEC_TELETEXT
)
else
if
(
p_stream
->
i_codec
==
VLC_CODEC_TELETEXT
)
{
{
if
(
p_stream
->
i_
decoder_specific_info
)
if
(
p_stream
->
i_
extra
)
{
{
dvbpsi_PMTESAddDescriptor
(
p_es
,
0x56
,
dvbpsi_PMTESAddDescriptor
(
p_es
,
0x56
,
p_stream
->
i_
decoder_specific_info
,
p_stream
->
i_
extra
,
p_stream
->
p_
decoder_specific_info
);
p_stream
->
p_
extra
);
}
}
continue
;
continue
;
}
}
else
if
(
p_stream
->
i_codec
==
VLC_CODEC_DVBS
)
else
if
(
p_stream
->
i_codec
==
VLC_CODEC_DVBS
)
{
{
/* DVB subtitles */
/* DVB subtitles */
if
(
p_stream
->
i_
decoder_specific_info
)
if
(
p_stream
->
i_
extra
)
{
{
/* pass-through from the TS demux */
/* pass-through from the TS demux */
dvbpsi_PMTESAddDescriptor
(
p_es
,
0x59
,
dvbpsi_PMTESAddDescriptor
(
p_es
,
0x59
,
p_stream
->
i_
decoder_specific_info
,
p_stream
->
i_
extra
,
p_stream
->
p_
decoder_specific_info
);
p_stream
->
p_
extra
);
}
}
else
else
{
{
...
...
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