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
6fb79c1a
Commit
6fb79c1a
authored
May 17, 2020
by
Andreas Rheinhardt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/xiph: Return better error codes
Signed-off-by:
Andreas Rheinhardt
<
andreas.rheinhardt@gmail.com
>
parent
b7d334e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
xiph.c
libavcodec/xiph.c
+2
-2
No files found.
libavcodec/xiph.c
View file @
6fb79c1a
...
...
@@ -35,7 +35,7 @@ int avpriv_split_xiph_headers(const uint8_t *extradata, int extradata_size,
header_start
[
i
]
=
extradata
;
extradata
+=
header_len
[
i
];
if
(
overall_len
>
extradata_size
-
header_len
[
i
])
return
-
1
;
return
AVERROR_INVALIDDATA
;
overall_len
+=
header_len
[
i
];
}
}
else
if
(
extradata_size
>=
3
&&
extradata_size
<
INT_MAX
-
0x1ff
&&
extradata
[
0
]
==
2
)
{
...
...
@@ -50,7 +50,7 @@ int avpriv_split_xiph_headers(const uint8_t *extradata, int extradata_size,
header_len
[
i
]
+=
*
extradata
;
overall_len
+=
*
extradata
;
if
(
overall_len
>
extradata_size
)
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
header_len
[
2
]
=
extradata_size
-
overall_len
;
header_start
[
0
]
=
extradata
;
...
...
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