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
b2a722a8
Commit
b2a722a8
authored
Feb 05, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sh4: drop unused functions
{avg,put}_pixels4_c are not used.
parent
620289a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
28 deletions
+0
-28
dsputil_align.c
libavcodec/sh4/dsputil_align.c
+0
-28
No files found.
libavcodec/sh4/dsputil_align.c
View file @
b2a722a8
...
...
@@ -65,34 +65,6 @@
dest+=stride; \
} while(--height)
#define OP put
static
void
put_pixels4_c
(
uint8_t
*
dest
,
const
uint8_t
*
ref
,
const
int
stride
,
int
height
)
{
switch
((
int
)
ref
&
3
){
case
0
:
OP_C40
();
return
;
case
1
:
OP_C4
(
1
);
return
;
case
2
:
OP_C4
(
2
);
return
;
case
3
:
OP_C4
(
3
);
return
;
}
}
#undef OP
#define OP avg
static
void
avg_pixels4_c
(
uint8_t
*
dest
,
const
uint8_t
*
ref
,
const
int
stride
,
int
height
)
{
switch
((
int
)
ref
&
3
){
case
0
:
OP_C40
();
return
;
case
1
:
OP_C4
(
1
);
return
;
case
2
:
OP_C4
(
2
);
return
;
case
3
:
OP_C4
(
3
);
return
;
}
}
#undef OP
#define OP_C(ofs,sz,avg2) \
{ \
ref-=ofs; \
...
...
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