Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
0a64e3e4
Commit
0a64e3e4
authored
May 02, 2011
by
Juha Jeronen
Committed by
Jean-Baptiste Kempf
May 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deinterlace: a small factoring to DarkenField() in the Phosphor algorithm
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
a6456dc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
29 deletions
+17
-29
modules/video_filter/deinterlace/algo_phosphor.c
modules/video_filter/deinterlace/algo_phosphor.c
+17
-29
No files found.
modules/video_filter/deinterlace/algo_phosphor.c
View file @
0a64e3e4
...
@@ -109,12 +109,14 @@ static void DarkenField( picture_t *p_dst, const int i_field,
...
@@ -109,12 +109,14 @@ static void DarkenField( picture_t *p_dst, const int i_field,
for
(
;
p_out
<
p_out_end
;
p_out
+=
2
*
p_dst
->
p
[
i_plane
].
i_pitch
)
for
(
;
p_out
<
p_out_end
;
p_out
+=
2
*
p_dst
->
p
[
i_plane
].
i_pitch
)
{
{
uint64_t
*
po
=
(
uint64_t
*
)
p_out
;
uint64_t
*
po
=
(
uint64_t
*
)
p_out
;
int
x
=
0
;
#ifdef CAN_COMPILE_MMXEXT
#ifdef CAN_COMPILE_MMXEXT
if
(
u_cpu
&
CPU_CAPABILITY_MMXEXT
)
if
(
u_cpu
&
CPU_CAPABILITY_MMXEXT
)
{
{
movq_m2r
(
i_strength_u64
,
mm1
);
movq_m2r
(
i_strength_u64
,
mm1
);
movq_m2r
(
remove_high_u64
,
mm2
);
movq_m2r
(
remove_high_u64
,
mm2
);
for
(
int
x
=
0
;
x
<
w8
;
x
+=
8
)
for
(
;
x
<
w8
;
x
+=
8
)
{
{
movq_m2r
(
(
*
po
),
mm0
);
movq_m2r
(
(
*
po
),
mm0
);
...
@@ -127,18 +129,16 @@ static void DarkenField( picture_t *p_dst, const int i_field,
...
@@ -127,18 +129,16 @@ static void DarkenField( picture_t *p_dst, const int i_field,
else
else
{
{
#endif
#endif
for
(
int
x
=
0
;
x
<
w8
;
x
+=
8
,
++
po
)
for
(
;
x
<
w8
;
x
+=
8
,
++
po
)
(
*
po
)
=
(
((
*
po
)
>>
i_strength
)
&
remove_high_u64
);
(
*
po
)
=
(
((
*
po
)
>>
i_strength
)
&
remove_high_u64
);
#ifdef CAN_COMPILE_MMXEXT
#ifdef CAN_COMPILE_MMXEXT
}
}
#endif
#endif
/* handle the width remainder */
/* handle the width remainder */
if
(
wm8
)
uint8_t
*
po_temp
=
(
uint8_t
*
)
po
;
{
for
(
;
x
<
w
;
++
x
,
++
po_temp
)
uint8_t
*
po_temp
=
(
uint8_t
*
)
po
;
(
*
po_temp
)
=
(
((
*
po_temp
)
>>
i_strength
)
&
remove_high_u8
);
for
(
int
x
=
0
;
x
<
wm8
;
++
x
,
++
po_temp
)
(
*
po_temp
)
=
(
((
*
po_temp
)
>>
i_strength
)
&
remove_high_u8
);
}
}
}
/* Process chroma if the field chromas are independent.
/* Process chroma if the field chromas are independent.
...
@@ -170,6 +170,8 @@ static void DarkenField( picture_t *p_dst, const int i_field,
...
@@ -170,6 +170,8 @@ static void DarkenField( picture_t *p_dst, const int i_field,
for
(
;
p_out
<
p_out_end
;
p_out
+=
2
*
p_dst
->
p
[
i_plane
].
i_pitch
)
for
(
;
p_out
<
p_out_end
;
p_out
+=
2
*
p_dst
->
p
[
i_plane
].
i_pitch
)
{
{
int
x
=
0
;
#ifdef CAN_COMPILE_MMXEXT
#ifdef CAN_COMPILE_MMXEXT
/* See also easy-to-read C version below. */
/* See also easy-to-read C version below. */
if
(
u_cpu
&
CPU_CAPABILITY_MMXEXT
)
if
(
u_cpu
&
CPU_CAPABILITY_MMXEXT
)
...
@@ -180,7 +182,7 @@ static void DarkenField( picture_t *p_dst, const int i_field,
...
@@ -180,7 +182,7 @@ static void DarkenField( picture_t *p_dst, const int i_field,
movq_m2r
(
remove_high_u64
,
mm7
);
movq_m2r
(
remove_high_u64
,
mm7
);
uint64_t
*
po
=
(
uint64_t
*
)
p_out
;
uint64_t
*
po
=
(
uint64_t
*
)
p_out
;
for
(
int
x
=
0
;
x
<
w8
;
x
+=
8
)
for
(
;
x
<
w8
;
x
+=
8
)
{
{
movq_m2r
(
(
*
po
),
mm0
);
movq_m2r
(
(
*
po
),
mm0
);
...
@@ -201,28 +203,14 @@ static void DarkenField( picture_t *p_dst, const int i_field,
...
@@ -201,28 +203,14 @@ static void DarkenField( picture_t *p_dst, const int i_field,
movq_r2m
(
mm1
,
(
*
po
++
)
);
movq_r2m
(
mm1
,
(
*
po
++
)
);
}
}
/* handle the width remainder */
if
(
wm8
)
{
/* The output is closer to 128 than the input;
the result always fits in uint8. */
uint8_t
*
po8
=
(
uint8_t
*
)
po
;
for
(
int
x
=
0
;
x
<
wm8
;
++
x
,
++
po8
)
(
*
po8
)
=
128
+
(
((
*
po8
)
-
128
)
/
(
1
<<
i_strength
)
);
}
}
else
{
#endif
/* 4:2:2 chroma handler, C version */
uint8_t
*
po
=
p_out
;
for
(
int
x
=
0
;
x
<
w
;
++
x
,
++
po
)
(
*
po
)
=
128
+
(
((
*
po
)
-
128
)
/
(
1
<<
i_strength
)
);
#ifdef CAN_COMPILE_MMXEXT
}
}
#endif
#endif
/* C version - handle the width remainder
(or everything if no MMX) */
uint8_t
*
po
=
p_out
;
for
(
;
x
<
w
;
++
x
,
++
po
)
(
*
po
)
=
128
+
(
((
*
po
)
-
128
)
/
(
1
<<
i_strength
)
);
}
/* for p_out... */
}
/* for p_out... */
}
/* for i_plane... */
}
/* for i_plane... */
}
/* if b_i422 */
}
/* if b_i422 */
...
...
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