Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f09bbb8f
Commit
f09bbb8f
authored
Nov 25, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/ac3dec: always skip junk bytes before sync bytes
Fixes #7278.
parent
67cdfcf6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
ac3dec.c
libavcodec/ac3dec.c
+17
-3
ac3dec.c
libavformat/ac3dec.c
+1
-1
No files found.
libavcodec/ac3dec.c
View file @
f09bbb8f
...
...
@@ -1467,7 +1467,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data,
int
buf_size
,
full_buf_size
=
avpkt
->
size
;
AC3DecodeContext
*
s
=
avctx
->
priv_data
;
int
blk
,
ch
,
err
,
offset
,
ret
;
int
got_independent_frame
=
0
;
int
skip
=
0
,
got_independent_frame
=
0
;
const
uint8_t
*
channel_map
;
uint8_t
extended_channel_map
[
EAC3_MAX_CHANNELS
];
const
SHORTFLOAT
*
output
[
AC3_MAX_CHANNELS
];
...
...
@@ -1477,6 +1477,14 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data,
s
->
superframe_size
=
0
;
buf_size
=
full_buf_size
;
while
(
buf_size
>
2
)
{
if
(
AV_RB16
(
buf
)
!=
0x770B
&&
AV_RL16
(
buf
)
!=
0x770B
)
{
buf
+=
1
;
buf_size
-=
1
;
continue
;
}
break
;
}
/* copy input buffer to decoder context to avoid reading past the end
of the buffer, which can be caused by a damaged input stream. */
if
(
buf_size
>=
2
&&
AV_RB16
(
buf
)
==
0x770B
)
{
...
...
@@ -1637,6 +1645,11 @@ dependent_frame:
AC3HeaderInfo
hdr
;
int
err
;
if
(
buf_size
-
s
->
frame_size
<=
16
)
{
skip
=
buf_size
-
s
->
frame_size
;
goto
skip
;
}
if
((
ret
=
init_get_bits8
(
&
s
->
gbc
,
buf
+
s
->
frame_size
,
buf_size
-
s
->
frame_size
))
<
0
)
return
ret
;
...
...
@@ -1657,6 +1670,7 @@ dependent_frame:
}
}
}
skip:
frame
->
decode_error_flags
=
err
?
FF_DECODE_ERROR_INVALID_BITSTREAM
:
0
;
...
...
@@ -1796,9 +1810,9 @@ dependent_frame:
*
got_frame_ptr
=
1
;
if
(
!
s
->
superframe_size
)
return
FFMIN
(
full_buf_size
,
s
->
frame_size
);
return
FFMIN
(
full_buf_size
,
s
->
frame_size
+
skip
);
return
FFMIN
(
full_buf_size
,
s
->
superframe_size
);
return
FFMIN
(
full_buf_size
,
s
->
superframe_size
+
skip
);
}
/**
...
...
libavformat/ac3dec.c
View file @
f09bbb8f
...
...
@@ -47,7 +47,7 @@ static int ac3_eac3_probe(AVProbeData *p, enum AVCodecID expected_codec_id)
uint16_t
frame_size
;
int
i
,
ret
;
if
(
!
memcmp
(
buf2
,
"\x1
\x10
\0\0\0\0\0\0
"
,
8
))
{
if
(
!
memcmp
(
buf2
,
"\x1
\x10
"
,
2
))
{
if
(
buf2
+
16
>
end
)
break
;
buf2
+=
16
;
...
...
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