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
00931991
Commit
00931991
authored
May 25, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale: Remove commented-out printf cruft.
parent
478455d6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
10 deletions
+0
-10
swscale-test.c
libswscale/swscale-test.c
+0
-6
swscale_template.c
libswscale/swscale_template.c
+0
-2
utils.c
libswscale/utils.c
+0
-1
swscale_template.c
libswscale/x86/swscale_template.c
+0
-1
No files found.
libswscale/swscale-test.c
View file @
00931991
...
...
@@ -58,15 +58,11 @@ static uint64_t getSSD(uint8_t *src1, uint8_t *src2, int stride1, int stride2, i
int
x
,
y
;
uint64_t
ssd
=
0
;
//printf("%d %d\n", w, h);
for
(
y
=
0
;
y
<
h
;
y
++
)
{
for
(
x
=
0
;
x
<
w
;
x
++
)
{
int
d
=
src1
[
x
+
y
*
stride1
]
-
src2
[
x
+
y
*
stride2
];
ssd
+=
d
*
d
;
//printf("%d", abs(src1[x + y*stride1] - src2[x + y*stride2])/26 );
}
//printf("\n");
}
return
ssd
;
}
...
...
@@ -162,8 +158,6 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h,
goto
end
;
}
// printf("test %X %X %X -> %X %X %X\n", (int)ref[0], (int)ref[1], (int)ref[2],
// (int)src[0], (int)src[1], (int)src[2]);
printf
(
" %s %dx%d -> %s %3dx%3d flags=%2d"
,
av_pix_fmt_descriptors
[
srcFormat
].
name
,
srcW
,
srcH
,
...
...
libswscale/swscale_template.c
View file @
00931991
...
...
@@ -353,9 +353,7 @@ static inline void hScale_c(int16_t *dst, int dstW, const uint8_t *src,
int
j
;
int
srcPos
=
filterPos
[
i
];
int
val
=
0
;
//printf("filterPos: %d\n", filterPos[i]);
for
(
j
=
0
;
j
<
filterSize
;
j
++
)
{
//printf("filter: %d, src: %d\n", filter[i], src[srcPos + j]);
val
+=
((
int
)
src
[
srcPos
+
j
])
*
filter
[
filterSize
*
i
+
j
];
}
//filter += hFilterSize;
...
...
libswscale/utils.c
View file @
00931991
...
...
@@ -171,7 +171,6 @@ const char *sws_format_name(enum PixelFormat format)
static
double
getSplineCoeff
(
double
a
,
double
b
,
double
c
,
double
d
,
double
dist
)
{
// printf("%f %f %f %f %f\n", a,b,c,d,dist);
if
(
dist
<=
1
.
0
)
return
((
d
*
dist
+
c
)
*
dist
+
b
)
*
dist
+
a
;
else
return
getSplineCoeff
(
0
.
0
,
b
+
2
.
0
*
c
+
3
.
0
*
d
,
...
...
libswscale/x86/swscale_template.c
View file @
00931991
...
...
@@ -2036,7 +2036,6 @@ static inline void RENAME(hcscale_fast)(SwsContext *c, int16_t *dst,
#endif
);
for
(
i
=
dstWidth
-
1
;
(
i
*
xInc
)
>>
16
>=
srcW
-
1
;
i
--
)
{
//printf("%d %d %d\n", dstWidth, i, srcW);
dst
[
i
]
=
src1
[
srcW
-
1
]
*
128
;
dst
[
i
+
VOFW
]
=
src2
[
srcW
-
1
]
*
128
;
}
...
...
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