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
3583d7cf
Commit
3583d7cf
authored
Apr 20, 2011
by
Alex Converse
Committed by
Alex Converse
Apr 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix mov debug (u)int64_t format strings.
parent
15919ee4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mov.c
libavformat/mov.c
+3
-3
No files found.
libavformat/mov.c
View file @
3583d7cf
...
...
@@ -588,7 +588,7 @@ static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
static
int
mov_read_moof
(
MOVContext
*
c
,
AVIOContext
*
pb
,
MOVAtom
atom
)
{
c
->
fragment
.
moof_offset
=
avio_tell
(
pb
)
-
8
;
av_dlog
(
c
->
fc
,
"moof offset %
llx
\n
"
,
c
->
fragment
.
moof_offset
);
av_dlog
(
c
->
fc
,
"moof offset %
"
PRIx64
"
\n
"
,
c
->
fragment
.
moof_offset
);
return
mov_read_default
(
c
,
pb
,
atom
);
}
...
...
@@ -2367,7 +2367,7 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
av_log
(
s
,
AV_LOG_ERROR
,
"moov atom not found
\n
"
);
return
-
1
;
}
av_dlog
(
mov
->
fc
,
"on_parse_exit_offset=%
lld
\n
"
,
avio_tell
(
pb
));
av_dlog
(
mov
->
fc
,
"on_parse_exit_offset=%
"
PRId64
"
\n
"
,
avio_tell
(
pb
));
if
(
pb
->
seekable
&&
mov
->
chapter_track
>
0
)
mov_read_chapters
(
s
);
...
...
@@ -2416,7 +2416,7 @@ static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
mov_read_default
(
mov
,
s
->
pb
,
(
MOVAtom
){
AV_RL32
(
"root"
),
INT64_MAX
})
<
0
||
s
->
pb
->
eof_reached
)
return
AVERROR_EOF
;
av_dlog
(
s
,
"read fragments, offset 0x%
llx
\n
"
,
avio_tell
(
s
->
pb
));
av_dlog
(
s
,
"read fragments, offset 0x%
"
PRIx64
"
\n
"
,
avio_tell
(
s
->
pb
));
goto
retry
;
}
sc
=
st
->
priv_data
;
...
...
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