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
d7420e0a
Commit
d7420e0a
authored
Jan 18, 2012
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mov: Remove dead stores for spherical coordinates for channel position.
parent
ac84f2ed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
mov.c
libavformat/mov.c
+3
-4
No files found.
libavformat/mov.c
View file @
d7420e0a
...
...
@@ -585,12 +585,11 @@ static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
label_mask
=
0
;
for
(
i
=
0
;
i
<
num_descr
;
i
++
)
{
uint32_t
label
,
cflags
;
float
coords
[
3
];
label
=
avio_rb32
(
pb
);
// mChannelLabel
cflags
=
avio_rb32
(
pb
);
// mChannelFlags
AV_WN32
(
&
coords
[
0
],
avio_rl32
(
pb
));
// mCoordinates[0]
AV_WN32
(
&
coords
[
1
],
avio_rl32
(
pb
));
// mCoordinates[1]
AV_WN32
(
&
coords
[
2
],
avio_rl32
(
pb
));
// mCoordinates[2]
avio_rl32
(
pb
);
// mCoordinates[0]
avio_rl32
(
pb
);
// mCoordinates[1]
avio_rl32
(
pb
);
// mCoordinates[2]
if
(
layout_tag
==
0
)
{
uint32_t
mask_incr
=
ff_mov_get_channel_label
(
label
);
if
(
mask_incr
==
0
)
{
...
...
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