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
874a06bd
Commit
874a06bd
authored
May 26, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
j2k: cosmetics from jpeg2000
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
6e16321d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
53 deletions
+54
-53
j2k.c
libavcodec/j2k.c
+50
-49
jpeg2000.c
libavcodec/jpeg2000.c
+4
-4
No files found.
libavcodec/j2k.c
View file @
874a06bd
This diff is collapsed.
Click to expand it.
libavcodec/jpeg2000.c
View file @
874a06bd
...
...
@@ -96,11 +96,11 @@ static int getsigctxno(int flag, int bandno)
((
flag
&
JPEG2000_T1_SIG_SE
)
?
1
:
0
)
+
((
flag
&
JPEG2000_T1_SIG_SW
)
?
1
:
0
);
if
(
bandno
<
3
){
if
(
bandno
<
3
)
{
if
(
bandno
==
1
)
FFSWAP
(
int
,
h
,
v
);
if
(
h
==
2
)
return
8
;
if
(
h
==
1
){
if
(
h
==
1
)
{
if
(
v
>=
1
)
return
7
;
if
(
d
>=
1
)
return
6
;
return
5
;
...
...
@@ -111,11 +111,11 @@ static int getsigctxno(int flag, int bandno)
if
(
d
==
1
)
return
1
;
}
else
{
if
(
d
>=
3
)
return
8
;
if
(
d
==
2
){
if
(
d
==
2
)
{
if
(
h
+
v
>=
1
)
return
7
;
return
6
;
}
if
(
d
==
1
){
if
(
d
==
1
)
{
if
(
h
+
v
>=
2
)
return
5
;
if
(
h
+
v
==
1
)
return
4
;
return
3
;
...
...
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