Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
1bbb46ff
Commit
1bbb46ff
authored
May 27, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
j2k_dwt: fix scaling of 9/7 dwt
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
ee189701
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
16 deletions
+16
-16
j2k_dwt.c
libavcodec/j2k_dwt.c
+8
-8
vsynth1-j2k-97
tests/ref/vsynth/vsynth1-j2k-97
+4
-4
vsynth2-j2k-97
tests/ref/vsynth/vsynth2-j2k-97
+4
-4
No files found.
libavcodec/j2k_dwt.c
View file @
1bbb46ff
...
@@ -160,9 +160,9 @@ static void dwt_encode97(DWTContext *s, int *t)
...
@@ -160,9 +160,9 @@ static void dwt_encode97(DWTContext *s, int *t)
// copy back and deinterleave
// copy back and deinterleave
for
(
i
=
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
for
(
i
=
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
t
[
w
*
lp
+
j
]
=
scale97
[
mh
]
*
l
[
i
]
/
2
;
t
[
w
*
lp
+
j
]
=
scale97
[
0
]
*
l
[
i
]
/
2
;
for
(
i
=
1
-
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
for
(
i
=
1
-
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
t
[
w
*
lp
+
j
]
=
scale97
[
mh
]
*
l
[
i
]
/
2
;
t
[
w
*
lp
+
j
]
=
scale97
[
1
]
*
l
[
i
]
/
2
;
}
}
// VER_SD
// VER_SD
...
@@ -177,9 +177,9 @@ static void dwt_encode97(DWTContext *s, int *t)
...
@@ -177,9 +177,9 @@ static void dwt_encode97(DWTContext *s, int *t)
// copy back and deinterleave
// copy back and deinterleave
for
(
i
=
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
for
(
i
=
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
t
[
w
*
j
+
lp
]
=
scale97
[
mv
]
*
l
[
i
]
/
2
;
t
[
w
*
j
+
lp
]
=
scale97
[
0
]
*
l
[
i
]
/
2
;
for
(
i
=
1
-
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
for
(
i
=
1
-
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
t
[
w
*
j
+
lp
]
=
scale97
[
mv
]
*
l
[
i
]
/
2
;
t
[
w
*
j
+
lp
]
=
scale97
[
1
]
*
l
[
i
]
/
2
;
}
}
}
}
}
}
...
@@ -288,9 +288,9 @@ static void dwt_decode97(DWTContext *s, int *t)
...
@@ -288,9 +288,9 @@ static void dwt_decode97(DWTContext *s, int *t)
int
i
,
j
=
0
;
int
i
,
j
=
0
;
// copy with interleaving
// copy with interleaving
for
(
i
=
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
for
(
i
=
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
l
[
i
]
=
scale97
[
1
-
mh
]
*
t
[
w
*
lp
+
j
];
l
[
i
]
=
scale97
[
1
]
*
t
[
w
*
lp
+
j
];
for
(
i
=
1
-
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
for
(
i
=
1
-
mh
;
i
<
lh
;
i
+=
2
,
j
++
)
l
[
i
]
=
scale97
[
1
-
mh
]
*
t
[
w
*
lp
+
j
];
l
[
i
]
=
scale97
[
0
]
*
t
[
w
*
lp
+
j
];
sr_1d97
(
line
,
mh
,
mh
+
lh
);
sr_1d97
(
line
,
mh
,
mh
+
lh
);
...
@@ -304,9 +304,9 @@ static void dwt_decode97(DWTContext *s, int *t)
...
@@ -304,9 +304,9 @@ static void dwt_decode97(DWTContext *s, int *t)
int
i
,
j
=
0
;
int
i
,
j
=
0
;
// copy with interleaving
// copy with interleaving
for
(
i
=
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
for
(
i
=
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
l
[
i
]
=
scale97
[
1
-
mv
]
*
t
[
w
*
j
+
lp
];
l
[
i
]
=
scale97
[
1
]
*
t
[
w
*
j
+
lp
];
for
(
i
=
1
-
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
for
(
i
=
1
-
mv
;
i
<
lv
;
i
+=
2
,
j
++
)
l
[
i
]
=
scale97
[
1
-
mv
]
*
t
[
w
*
j
+
lp
];
l
[
i
]
=
scale97
[
0
]
*
t
[
w
*
j
+
lp
];
sr_1d97
(
line
,
mv
,
mv
+
lv
);
sr_1d97
(
line
,
mv
,
mv
+
lv
);
...
...
tests/ref/vsynth/vsynth1-j2k-97
View file @
1bbb46ff
a8e2db2dc6fcd4c9ea3150dc8d6d761
9 *tests/data/fate/vsynth1-j2k-97.avi
fc02bacb438c091a96ab327ab7aca5f
9 *tests/data/fate/vsynth1-j2k-97.avi
2
963264
tests/data/fate/vsynth1-j2k-97.avi
2
034146
tests/data/fate/vsynth1-j2k-97.avi
68f26a8d366fce47cbd003cadc861cd8
*tests/data/fate/vsynth1-j2k-97.out.rawvideo
5975c315f9fd79e57e26bda1f749e8f6
*tests/data/fate/vsynth1-j2k-97.out.rawvideo
stddev:
7.66 PSNR: 30.44 MAXDIFF: 58
bytes: 7603200/ 7603200
stddev:
8.77 PSNR: 29.26 MAXDIFF: 104
bytes: 7603200/ 7603200
tests/ref/vsynth/vsynth2-j2k-97
View file @
1bbb46ff
245c0ab429b553b39cac5989bb23c0ce
*tests/data/fate/vsynth2-j2k-97.avi
316ae4cce1ba8cf0b359c9d25322711f
*tests/data/fate/vsynth2-j2k-97.avi
1
444170
tests/data/fate/vsynth2-j2k-97.avi
1
005146
tests/data/fate/vsynth2-j2k-97.avi
61c52045d566b70886113e2aeb8ddde4
*tests/data/fate/vsynth2-j2k-97.out.rawvideo
b7826bc75f9c04754d12fa01b3e69a4a
*tests/data/fate/vsynth2-j2k-97.out.rawvideo
stddev: 7.
13 PSNR: 31.06 MAXDIFF: 53
bytes: 7603200/ 7603200
stddev: 7.
91 PSNR: 30.16 MAXDIFF: 64
bytes: 7603200/ 7603200
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