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
117f79de
Commit
117f79de
authored
Dec 23, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
truemotion2: Sanitize tm2_read_header()
Also give a variable a more sensible name.
parent
5e6ee38b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
23 deletions
+21
-23
truemotion2.c
libavcodec/truemotion2.c
+21
-23
No files found.
libavcodec/truemotion2.c
View file @
117f79de
...
...
@@ -200,27 +200,23 @@ static inline int tm2_get_token(GetBitContext *gb, TM2Codes *code)
return
code
->
recode
[
val
];
}
#define TM2_OLD_HEADER_MAGIC 0x00000100
#define TM2_NEW_HEADER_MAGIC 0x00000101
static
inline
int
tm2_read_header
(
TM2Context
*
ctx
,
const
uint8_t
*
buf
)
{
uint32_t
magic
;
const
uint8_t
*
obuf
;
obuf
=
buf
;
magic
=
AV_RL32
(
buf
);
buf
+=
4
;
uint32_t
magic
=
AV_RL32
(
buf
);
if
(
magic
==
0x00000100
)
{
/* old header */
switch
(
magic
)
{
case
TM2_OLD_HEADER_MAGIC
:
av_log_missing_feature
(
ctx
->
avctx
,
"TM2 old header"
,
1
);
return
4
0
;
}
else
if
(
magic
==
0x00000101
)
{
/* new header */
return
4
0
;
}
else
{
av_log
(
ctx
->
avctx
,
AV_LOG_ERROR
,
"Not a TM2 header: 0x%08X
\n
"
,
magic
);
return
-
1
;
return
0
;
case
TM2_NEW_HEADER_MAGIC
:
return
0
;
default:
av_log
(
ctx
->
avctx
,
AV_LOG_ERROR
,
"Not a TM2 header: 0x%08X
\n
"
,
magic
);
return
AVERROR_INVALIDDATA
;
}
return
buf
-
obuf
;
}
static
int
tm2_read_deltas
(
TM2Context
*
ctx
,
int
stream_id
)
{
...
...
@@ -810,6 +806,8 @@ static const int tm2_stream_order[TM2_NUM_STREAMS] = {
TM2_C_HI
,
TM2_C_LO
,
TM2_L_HI
,
TM2_L_LO
,
TM2_UPD
,
TM2_MOT
,
TM2_TYPE
};
#define TM2_HEADER_SIZE 40
static
int
decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame
,
AVPacket
*
avpkt
)
...
...
@@ -818,7 +816,7 @@ static int decode_frame(AVCodecContext *avctx,
int
buf_size
=
avpkt
->
size
&
~
3
;
TM2Context
*
const
l
=
avctx
->
priv_data
;
AVFrame
*
const
p
=
&
l
->
pic
;
int
i
,
skip
,
t
;
int
i
,
offset
=
TM2_HEADER_SIZE
,
t
,
re
t
;
uint8_t
*
swbuf
;
swbuf
=
av_malloc
(
buf_size
+
FF_INPUT_BUFFER_PADDING_SIZE
);
...
...
@@ -835,24 +833,24 @@ static int decode_frame(AVCodecContext *avctx,
}
l
->
dsp
.
bswap_buf
((
uint32_t
*
)
swbuf
,
(
const
uint32_t
*
)
buf
,
buf_size
>>
2
);
skip
=
tm2_read_header
(
l
,
swbuf
);
if
(
skip
==
-
1
)
{
if
((
ret
=
tm2_read_header
(
l
,
swbuf
))
<
0
)
{
av_free
(
swbuf
);
return
-
1
;
return
ret
;
}
for
(
i
=
0
;
i
<
TM2_NUM_STREAMS
;
i
++
){
if
(
skip
>=
buf_size
)
{
if
(
offset
>=
buf_size
)
{
av_free
(
swbuf
);
return
AVERROR_INVALIDDATA
;
}
t
=
tm2_read_stream
(
l
,
swbuf
+
skip
,
tm2_stream_order
[
i
],
buf_size
-
skip
);
t
=
tm2_read_stream
(
l
,
swbuf
+
offset
,
tm2_stream_order
[
i
],
buf_size
-
offset
);
if
(
t
<
0
){
av_free
(
swbuf
);
return
t
;
}
skip
+=
t
;
offset
+=
t
;
}
p
->
key_frame
=
tm2_decode_blocks
(
l
,
p
);
if
(
p
->
key_frame
)
...
...
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