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
f73673a7
Commit
f73673a7
authored
Feb 15, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sh4: Add ff_ prefix to nonstatic symbols
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
efd29844
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
dsputil_sh4.c
libavcodec/sh4/dsputil_sh4.c
+3
-3
dsputil_sh4.h
libavcodec/sh4/dsputil_sh4.h
+1
-1
idct_sh4.c
libavcodec/sh4/idct_sh4.c
+1
-1
No files found.
libavcodec/sh4/dsputil_sh4.c
View file @
f73673a7
...
...
@@ -56,7 +56,7 @@ static void idct_put(uint8_t *dest, int line_size, DCTELEM *block)
{
int
i
;
uint8_t
*
cm
=
ff_cropTbl
+
MAX_NEG_CROP
;
idct_sh4
(
block
);
ff_
idct_sh4
(
block
);
for
(
i
=
0
;
i
<
8
;
i
++
)
{
dest
[
0
]
=
cm
[
block
[
0
]];
dest
[
1
]
=
cm
[
block
[
1
]];
...
...
@@ -74,7 +74,7 @@ static void idct_add(uint8_t *dest, int line_size, DCTELEM *block)
{
int
i
;
uint8_t
*
cm
=
ff_cropTbl
+
MAX_NEG_CROP
;
idct_sh4
(
block
);
ff_
idct_sh4
(
block
);
for
(
i
=
0
;
i
<
8
;
i
++
)
{
dest
[
0
]
=
cm
[
dest
[
0
]
+
block
[
0
]];
dest
[
1
]
=
cm
[
dest
[
1
]
+
block
[
1
]];
...
...
@@ -101,7 +101,7 @@ void ff_dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx)
(
idct_algo
==
FF_IDCT_AUTO
||
idct_algo
==
FF_IDCT_SH4
))
{
c
->
idct_put
=
idct_put
;
c
->
idct_add
=
idct_add
;
c
->
idct
=
idct_sh4
;
c
->
idct
=
ff_
idct_sh4
;
c
->
idct_permutation_type
=
FF_NO_IDCT_PERM
;
}
}
libavcodec/sh4/dsputil_sh4.h
View file @
f73673a7
...
...
@@ -22,7 +22,7 @@
#include "libavcodec/avcodec.h"
#include "libavcodec/dsputil.h"
void
idct_sh4
(
DCTELEM
*
block
);
void
ff_
idct_sh4
(
DCTELEM
*
block
);
void
ff_dsputil_init_align
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
#endif
/* AVCODEC_SH4_DSPUTIL_SH4_H */
libavcodec/sh4/idct_sh4.c
View file @
f73673a7
...
...
@@ -89,7 +89,7 @@ static const float odd_table[] __attribute__ ((aligned(8))) = {
//optimized
void
idct_sh4
(
DCTELEM
*
block
)
void
ff_
idct_sh4
(
DCTELEM
*
block
)
{
DEFREG
;
...
...
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