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
9e4f0cfc
Commit
9e4f0cfc
authored
May 16, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/mov: Print reason of loci parsing failure
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
77cc0d5b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
mov.c
libavformat/mov.c
+9
-3
No files found.
libavformat/mov.c
View file @
9e4f0cfc
...
...
@@ -211,8 +211,10 @@ static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
double
longitude
,
latitude
;
const
char
*
key
=
"location"
;
if
(
len
<
4
+
2
+
1
+
1
+
4
+
4
+
4
)
if
(
len
<
4
+
2
+
1
+
1
+
4
+
4
+
4
)
{
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"loci too short
\n
"
);
return
AVERROR_INVALIDDATA
;
}
avio_skip
(
pb
,
4
);
// version+flags
langcode
=
avio_rb16
(
pb
);
...
...
@@ -220,13 +222,17 @@ static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
len
-=
6
;
len
-=
avio_get_str
(
pb
,
len
,
buf
,
sizeof
(
buf
));
// place name
if
(
len
<
1
)
if
(
len
<
1
)
{
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"place name too long
\n
"
);
return
AVERROR_INVALIDDATA
;
}
avio_skip
(
pb
,
1
);
// role
len
-=
1
;
if
(
len
<
14
)
if
(
len
<
14
)
{
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"no space for coordinates left (%d)
\n
"
,
len
);
return
AVERROR_INVALIDDATA
;
}
longitude
=
((
int32_t
)
avio_rb32
(
pb
))
/
(
float
)
(
1
<<
16
);
latitude
=
((
int32_t
)
avio_rb32
(
pb
))
/
(
float
)
(
1
<<
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