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
2b48d8ba
Commit
2b48d8ba
authored
Sep 05, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add a 8 taps filter for testing
Originally committed as revision 10394 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
c08bbe6c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
snow.c
libavcodec/snow.c
+8
-0
No files found.
libavcodec/snow.c
View file @
2b48d8ba
...
@@ -2159,7 +2159,11 @@ START_TIMER
...
@@ -2159,7 +2159,11 @@ START_TIMER
int
a6
=
src
[
x
+
HTAPS
/
2
+
3
];
int
a6
=
src
[
x
+
HTAPS
/
2
+
3
];
int
a7
=
src
[
x
+
HTAPS
/
2
+
4
];
int
a7
=
src
[
x
+
HTAPS
/
2
+
4
];
// int am= 9*(a1+a2) - (a0+a3);
// int am= 9*(a1+a2) - (a0+a3);
#if HTAPS==6
int
am
=
20
*
(
a2
+
a3
)
-
5
*
(
a1
+
a4
)
+
(
a0
+
a5
);
int
am
=
20
*
(
a2
+
a3
)
-
5
*
(
a1
+
a4
)
+
(
a0
+
a5
);
#else
int
am
=
21
*
(
a2
+
a3
)
-
7
*
(
a1
+
a4
)
+
3
*
(
a0
+
a5
)
-
(
a_1
+
a6
);
#endif
// int am= 18*(a2+a3) - 2*(a1+a4);
// int am= 18*(a2+a3) - 2*(a1+a4);
// int aL= (-7*a0 + 105*a1 + 35*a2 - 5*a3)>>3;
// int aL= (-7*a0 + 105*a1 + 35*a2 - 5*a3)>>3;
// int aR= (-7*a3 + 105*a2 + 35*a1 - 5*a0)>>3;
// int aR= (-7*a3 + 105*a2 + 35*a1 - 5*a0)>>3;
...
@@ -2196,7 +2200,11 @@ START_TIMER
...
@@ -2196,7 +2200,11 @@ START_TIMER
int
a5
=
tmp
[
x
+
(
HTAPS
/
2
+
2
)
*
stride
];
int
a5
=
tmp
[
x
+
(
HTAPS
/
2
+
2
)
*
stride
];
int
a6
=
tmp
[
x
+
(
HTAPS
/
2
+
3
)
*
stride
];
int
a6
=
tmp
[
x
+
(
HTAPS
/
2
+
3
)
*
stride
];
int
a7
=
tmp
[
x
+
(
HTAPS
/
2
+
4
)
*
stride
];
int
a7
=
tmp
[
x
+
(
HTAPS
/
2
+
4
)
*
stride
];
#if HTAPS==6
int
am
=
20
*
(
a2
+
a3
)
-
5
*
(
a1
+
a4
)
+
(
a0
+
a5
);
int
am
=
20
*
(
a2
+
a3
)
-
5
*
(
a1
+
a4
)
+
(
a0
+
a5
);
#else
int
am
=
21
*
(
a2
+
a3
)
-
7
*
(
a1
+
a4
)
+
3
*
(
a0
+
a5
)
-
(
a_1
+
a6
);
#endif
// int am= 18*(a2+a3) - 2*(a1+a4);
// int am= 18*(a2+a3) - 2*(a1+a4);
/* int aL= (-7*a0 + 105*a1 + 35*a2 - 5*a3)>>3;
/* int aL= (-7*a0 + 105*a1 + 35*a2 - 5*a3)>>3;
int aR= (-7*a3 + 105*a2 + 35*a1 - 5*a0)>>3;*/
int aR= (-7*a3 + 105*a2 + 35*a1 - 5*a0)>>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