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
59c10729
Commit
59c10729
authored
Jun 14, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/jpeg2000: Fix band coords
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
6b08dc39
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
jpeg2000.c
libavcodec/jpeg2000.c
+6
-6
No files found.
libavcodec/jpeg2000.c
View file @
59c10729
...
@@ -333,7 +333,7 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp,
...
@@ -333,7 +333,7 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp,
for
(
i
=
0
;
i
<
2
;
i
++
)
for
(
i
=
0
;
i
<
2
;
i
++
)
for
(
j
=
0
;
j
<
2
;
j
++
)
for
(
j
=
0
;
j
<
2
;
j
++
)
band
->
coord
[
i
][
j
]
=
band
->
coord
[
i
][
j
]
=
ff_jpeg2000_ceildivpow2
(
comp
->
coord_o
[
i
][
j
]
-
comp
->
coord_o
[
i
][
0
]
,
ff_jpeg2000_ceildivpow2
(
comp
->
coord_o
[
i
][
j
],
declvl
-
1
);
declvl
-
1
);
log2_band_prec_width
=
reslevel
->
log2_prec_width
;
log2_band_prec_width
=
reslevel
->
log2_prec_width
;
log2_band_prec_height
=
reslevel
->
log2_prec_height
;
log2_band_prec_height
=
reslevel
->
log2_prec_height
;
...
@@ -349,7 +349,7 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp,
...
@@ -349,7 +349,7 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp,
for
(
j
=
0
;
j
<
2
;
j
++
)
for
(
j
=
0
;
j
<
2
;
j
++
)
/* Formula example for tbx_0 = ceildiv((tcx_0 - 2 ^ (declvl - 1) * x0_b) / declvl) */
/* Formula example for tbx_0 = ceildiv((tcx_0 - 2 ^ (declvl - 1) * x0_b) / declvl) */
band
->
coord
[
i
][
j
]
=
band
->
coord
[
i
][
j
]
=
ff_jpeg2000_ceildivpow2
(
comp
->
coord_o
[
i
][
j
]
-
comp
->
coord_o
[
i
][
0
]
-
ff_jpeg2000_ceildivpow2
(
comp
->
coord_o
[
i
][
j
]
-
(((
bandno
+
1
>>
i
)
&
1
)
<<
declvl
-
1
),
(((
bandno
+
1
>>
i
)
&
1
)
<<
declvl
-
1
),
declvl
);
declvl
);
/* TODO: Manage case of 3 band offsets here or
/* TODO: Manage case of 3 band offsets here or
...
@@ -384,22 +384,22 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp,
...
@@ -384,22 +384,22 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp,
/* Compute P_x0 */
/* Compute P_x0 */
prec
->
coord
[
0
][
0
]
=
(
precno
%
reslevel
->
num_precincts_x
)
*
prec
->
coord
[
0
][
0
]
=
(
precno
%
reslevel
->
num_precincts_x
)
*
(
1
<<
log2_band_prec_width
);
(
1
<<
log2_band_prec_width
);
prec
->
coord
[
0
][
0
]
=
FFMAX
(
prec
->
coord
[
0
][
0
],
band
->
coord
[
0
][
0
]);
prec
->
coord
[
0
][
0
]
=
FFMAX
(
prec
->
coord
[
0
][
0
],
band
->
coord
[
0
][
0
]
-
band
->
coord
[
0
][
0
]
);
/* Compute P_y0 */
/* Compute P_y0 */
prec
->
coord
[
1
][
0
]
=
(
precno
/
reslevel
->
num_precincts_x
)
*
prec
->
coord
[
1
][
0
]
=
(
precno
/
reslevel
->
num_precincts_x
)
*
(
1
<<
log2_band_prec_height
);
(
1
<<
log2_band_prec_height
);
prec
->
coord
[
1
][
0
]
=
FFMAX
(
prec
->
coord
[
1
][
0
],
band
->
coord
[
1
][
0
]);
prec
->
coord
[
1
][
0
]
=
FFMAX
(
prec
->
coord
[
1
][
0
],
band
->
coord
[
1
][
0
]
-
band
->
coord
[
1
][
0
]
);
/* Compute P_x1 */
/* Compute P_x1 */
prec
->
coord
[
0
][
1
]
=
prec
->
coord
[
0
][
0
]
+
prec
->
coord
[
0
][
1
]
=
prec
->
coord
[
0
][
0
]
+
(
1
<<
log2_band_prec_width
);
(
1
<<
log2_band_prec_width
);
prec
->
coord
[
0
][
1
]
=
FFMIN
(
prec
->
coord
[
0
][
1
],
band
->
coord
[
0
][
1
]);
prec
->
coord
[
0
][
1
]
=
FFMIN
(
prec
->
coord
[
0
][
1
],
band
->
coord
[
0
][
1
]
-
band
->
coord
[
0
][
0
]
);
/* Compute P_y1 */
/* Compute P_y1 */
prec
->
coord
[
1
][
1
]
=
prec
->
coord
[
1
][
0
]
+
prec
->
coord
[
1
][
1
]
=
prec
->
coord
[
1
][
0
]
+
(
1
<<
log2_band_prec_height
);
(
1
<<
log2_band_prec_height
);
prec
->
coord
[
1
][
1
]
=
FFMIN
(
prec
->
coord
[
1
][
1
],
band
->
coord
[
1
][
1
]);
prec
->
coord
[
1
][
1
]
=
FFMIN
(
prec
->
coord
[
1
][
1
],
band
->
coord
[
1
][
1
]
-
band
->
coord
[
1
][
0
]
);
prec
->
nb_codeblocks_width
=
prec
->
nb_codeblocks_width
=
ff_jpeg2000_ceildivpow2
(
prec
->
coord
[
0
][
1
]
-
ff_jpeg2000_ceildivpow2
(
prec
->
coord
[
0
][
1
]
-
...
...
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