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
168bc5f2
Commit
168bc5f2
authored
Sep 19, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mov: fix 32/64 format type
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
36c2694d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mov.c
libavformat/mov.c
+2
-2
No files found.
libavformat/mov.c
View file @
168bc5f2
...
@@ -1219,7 +1219,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
...
@@ -1219,7 +1219,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
avio_rb16
(
pb
);
/* reserved */
avio_rb16
(
pb
);
/* reserved */
dref_id
=
avio_rb16
(
pb
);
dref_id
=
avio_rb16
(
pb
);
}
else
if
(
size
<=
7
){
}
else
if
(
size
<=
7
){
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"invalid size %
d
in stsd
\n
"
,
size
);
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"invalid size %
"
PRId64
"
in stsd
\n
"
,
size
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
...
@@ -1264,7 +1264,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
...
@@ -1264,7 +1264,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
}
}
}
}
av_dlog
(
c
->
fc
,
"size=%
d
4CC= %c%c%c%c codec_type=%d
\n
"
,
size
,
av_dlog
(
c
->
fc
,
"size=%
"
PRId64
"
4CC= %c%c%c%c codec_type=%d
\n
"
,
size
,
(
format
>>
0
)
&
0xff
,
(
format
>>
8
)
&
0xff
,
(
format
>>
16
)
&
0xff
,
(
format
>>
0
)
&
0xff
,
(
format
>>
8
)
&
0xff
,
(
format
>>
16
)
&
0xff
,
(
format
>>
24
)
&
0xff
,
st
->
codec
->
codec_type
);
(
format
>>
24
)
&
0xff
,
st
->
codec
->
codec_type
);
...
...
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