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
b189e670
Commit
b189e670
authored
Apr 20, 2008
by
Reimar Döffinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify ff_split_xiph_headers
Originally committed as revision 12914 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
58720ebd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
xiph.c
libavcodec/xiph.c
+7
-8
No files found.
libavcodec/xiph.c
View file @
b189e670
...
...
@@ -24,7 +24,7 @@ int ff_split_xiph_headers(uint8_t *extradata, int extradata_size,
int
first_header_size
,
uint8_t
*
header_start
[
3
],
int
header_len
[
3
])
{
int
i
,
j
;
int
i
;
if
(
extradata_size
>=
6
&&
AV_RB16
(
extradata
)
==
first_header_size
)
{
int
overall_len
=
6
;
...
...
@@ -39,20 +39,19 @@ int ff_split_xiph_headers(uint8_t *extradata, int extradata_size,
}
}
else
if
(
extradata_size
>=
3
&&
extradata_size
<
INT_MAX
-
0x1ff
&&
extradata
[
0
]
==
2
)
{
int
overall_len
=
3
;
for
(
i
=
0
,
j
=
1
;
i
<
2
;
i
++
,
j
++
)
{
extradata
++
;
for
(
i
=
0
;
i
<
2
;
i
++
,
extradata
++
)
{
header_len
[
i
]
=
0
;
for
(;
overall_len
<
extradata_size
&&
extradata
[
j
]
==
0xff
;
j
++
)
{
for
(;
overall_len
<
extradata_size
&&
*
extradata
==
0xff
;
extradata
++
)
{
header_len
[
i
]
+=
0xff
;
overall_len
+=
0xff
+
1
;
}
overall_len
+=
extradata
[
j
];
header_len
[
i
]
+=
*
extradata
;
overall_len
+=
*
extradata
;
if
(
overall_len
>
extradata_size
)
return
-
1
;
header_len
[
i
]
+=
extradata
[
j
];
}
header_len
[
2
]
=
extradata_size
-
header_len
[
0
]
-
header_len
[
1
]
-
j
;
extradata
+=
j
;
header_len
[
2
]
=
extradata_size
-
overall_len
;
header_start
[
0
]
=
extradata
;
header_start
[
1
]
=
header_start
[
0
]
+
header_len
[
0
];
header_start
[
2
]
=
header_start
[
1
]
+
header_len
[
1
];
...
...
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