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
873bcee7
Commit
873bcee7
authored
Feb 27, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed potential invalid access with too short packetized data.
parent
fe82dccc
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
10 deletions
+22
-10
modules/packetizer/h264.c
modules/packetizer/h264.c
+2
-2
modules/packetizer/mpeg4video.c
modules/packetizer/mpeg4video.c
+1
-1
modules/packetizer/mpegvideo.c
modules/packetizer/mpegvideo.c
+2
-2
modules/packetizer/packetizer_helper.h
modules/packetizer/packetizer_helper.h
+16
-4
modules/packetizer/vc1.c
modules/packetizer/vc1.c
+1
-1
No files found.
modules/packetizer/h264.c
View file @
873bcee7
...
...
@@ -202,7 +202,7 @@ static int Open( vlc_object_t *p_this )
packetizer_Init
(
&
p_sys
->
packetizer
,
p_h264_startcode
,
sizeof
(
p_h264_startcode
),
p_h264_startcode
,
1
,
p_h264_startcode
,
1
,
5
,
PacketizeReset
,
PacketizeParse
,
PacketizeValidate
,
p_dec
);
p_sys
->
b_slice
=
false
;
...
...
@@ -520,7 +520,7 @@ static block_t *PacketizeParse( void *p_private, bool *pb_ts_used, block_t *p_bl
decoder_t
*
p_dec
=
p_private
;
/* Remove trailing 0 bytes */
while
(
p_block
->
i_buffer
&&
p_block
->
p_buffer
[
p_block
->
i_buffer
-
1
]
==
0x00
)
while
(
p_block
->
i_buffer
>
5
&&
p_block
->
p_buffer
[
p_block
->
i_buffer
-
1
]
==
0x00
)
p_block
->
i_buffer
--
;
return
ParseNALBlock
(
p_dec
,
pb_ts_used
,
p_block
);
...
...
modules/packetizer/mpeg4video.c
View file @
873bcee7
...
...
@@ -142,7 +142,7 @@ static int Open( vlc_object_t *p_this )
/* Misc init */
packetizer_Init
(
&
p_sys
->
packetizer
,
p_mp4v_startcode
,
sizeof
(
p_mp4v_startcode
),
NULL
,
0
,
NULL
,
0
,
4
,
PacketizeReset
,
PacketizeParse
,
PacketizeValidate
,
p_dec
);
p_sys
->
p_frame
=
NULL
;
...
...
modules/packetizer/mpegvideo.c
View file @
873bcee7
...
...
@@ -170,7 +170,7 @@ static int Open( vlc_object_t *p_this )
/* Misc init */
packetizer_Init
(
&
p_sys
->
packetizer
,
p_mp2v_startcode
,
sizeof
(
p_mp2v_startcode
),
NULL
,
0
,
NULL
,
0
,
4
,
PacketizeReset
,
PacketizeParse
,
PacketizeValidate
,
p_dec
);
p_sys
->
p_seq
=
NULL
;
...
...
@@ -305,7 +305,7 @@ static block_t *PacketizeParse( void *p_private, bool *pb_ts_used, block_t *p_bl
decoder_t
*
p_dec
=
p_private
;
/* Check if we have a picture start code */
*
pb_ts_used
=
p_block
->
i_buffer
>=
4
&&
p_block
->
p_buffer
[
3
]
==
0x00
;
*
pb_ts_used
=
p_block
->
p_buffer
[
3
]
==
0x00
;
return
ParseMPEGBlock
(
p_dec
,
p_block
);
}
...
...
modules/packetizer/packetizer_helper.h
View file @
873bcee7
...
...
@@ -49,6 +49,8 @@ typedef struct
int
i_au_prepend
;
const
uint8_t
*
p_au_prepend
;
unsigned
i_au_min_size
;
void
*
p_private
;
packetizer_reset_t
pf_reset
;
packetizer_parse_t
pf_parse
;
...
...
@@ -59,6 +61,7 @@ typedef struct
static
inline
void
packetizer_Init
(
packetizer_t
*
p_pack
,
const
uint8_t
*
p_startcode
,
int
i_startcode
,
const
uint8_t
*
p_au_prepend
,
int
i_au_prepend
,
unsigned
i_au_min_size
,
packetizer_reset_t
pf_reset
,
packetizer_parse_t
pf_parse
,
packetizer_validate_t
pf_validate
,
...
...
@@ -71,6 +74,7 @@ static inline void packetizer_Init( packetizer_t *p_pack,
p_pack
->
i_au_prepend
=
i_au_prepend
;
p_pack
->
p_au_prepend
=
p_au_prepend
;
p_pack
->
i_au_min_size
=
i_au_min_size
;
p_pack
->
i_startcode
=
i_startcode
;
p_pack
->
p_startcode
=
p_startcode
;
...
...
@@ -167,12 +171,20 @@ static inline block_t *packetizer_Packetize( packetizer_t *p_pack, block_t **pp_
p_pack
->
i_offset
=
0
;
/* Parse the NAL */
if
(
p_pic
->
i_buffer
<
p_pack
->
i_au_min_size
)
{
block_Release
(
p_pic
);
p_pic
=
NULL
;
}
else
{
p_pic
=
p_pack
->
pf_parse
(
p_pack
->
p_private
,
&
b_used_ts
,
p_pic
);
if
(
b_used_ts
)
{
p_block_bytestream
->
i_dts
=
VLC_TS_INVALID
;
p_block_bytestream
->
i_pts
=
VLC_TS_INVALID
;
}
}
if
(
!
p_pic
)
{
...
...
modules/packetizer/vc1.c
View file @
873bcee7
...
...
@@ -143,7 +143,7 @@ static int Open( vlc_object_t *p_this )
packetizer_Init
(
&
p_sys
->
packetizer
,
p_vc1_startcode
,
sizeof
(
p_vc1_startcode
),
NULL
,
0
,
NULL
,
0
,
4
,
PacketizeReset
,
PacketizeParse
,
PacketizeValidate
,
p_dec
);
p_sys
->
b_sequence_header
=
false
;
...
...
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