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
11733202
Commit
11733202
authored
Jul 08, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsputil: Drop unused bit_depth parameter from all init functions
parent
df2aa222
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
18 additions
and
32 deletions
+18
-32
dsputil_arm.h
libavcodec/arm/dsputil_arm.h
+1
-2
dsputil_init_arm.c
libavcodec/arm/dsputil_init_arm.c
+2
-3
dsputil_init_armv6.c
libavcodec/arm/dsputil_init_armv6.c
+1
-2
dsputil.c
libavcodec/dsputil.c
+3
-5
dsputil.h
libavcodec/dsputil.h
+3
-6
dsputil_altivec.c
libavcodec/ppc/dsputil_altivec.c
+1
-2
dsputil_altivec.h
libavcodec/ppc/dsputil_altivec.h
+1
-2
dsputil_ppc.c
libavcodec/ppc/dsputil_ppc.c
+2
-3
dsputil_init.c
libavcodec/x86/dsputil_init.c
+2
-3
dsputil_x86.h
libavcodec/x86/dsputil_x86.h
+1
-2
dsputilenc_mmx.c
libavcodec/x86/dsputilenc_mmx.c
+1
-2
No files found.
libavcodec/arm/dsputil_arm.h
View file @
11733202
...
...
@@ -24,7 +24,6 @@
#include "libavcodec/avcodec.h"
#include "libavcodec/dsputil.h"
void
ff_dsputil_init_armv6
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
);
void
ff_dsputil_init_armv6
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
#endif
/* AVCODEC_ARM_DSPUTIL_ARM_H */
libavcodec/arm/dsputil_init_arm.c
View file @
11733202
...
...
@@ -28,11 +28,10 @@
#include "libavcodec/dsputil.h"
#include "dsputil_arm.h"
av_cold
void
ff_dsputil_init_arm
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
)
av_cold
void
ff_dsputil_init_arm
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
int
cpu_flags
=
av_get_cpu_flags
();
if
(
have_armv6
(
cpu_flags
))
ff_dsputil_init_armv6
(
c
,
avctx
,
high_bit_depth
);
ff_dsputil_init_armv6
(
c
,
avctx
);
}
libavcodec/arm/dsputil_init_armv6.c
View file @
11733202
...
...
@@ -39,8 +39,7 @@ int ff_pix_abs8_armv6(MpegEncContext *s, uint8_t *blk1, uint8_t *blk2,
int
ff_sse16_armv6
(
MpegEncContext
*
s
,
uint8_t
*
blk1
,
uint8_t
*
blk2
,
int
line_size
,
int
h
);
av_cold
void
ff_dsputil_init_armv6
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
)
av_cold
void
ff_dsputil_init_armv6
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
c
->
pix_abs
[
0
][
0
]
=
ff_pix_abs16_armv6
;
c
->
pix_abs
[
0
][
1
]
=
ff_pix_abs16_x2_armv6
;
...
...
libavcodec/dsputil.c
View file @
11733202
...
...
@@ -902,8 +902,6 @@ av_cold void ff_dsputil_static_init(void)
av_cold
void
ff_dsputil_init
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
const
unsigned
high_bit_depth
=
avctx
->
bits_per_raw_sample
>
8
;
c
->
sum_abs_dctelem
=
sum_abs_dctelem_c
;
/* TODO [0] 16 [1] 8 */
...
...
@@ -946,9 +944,9 @@ av_cold void ff_dsputil_init(DSPContext *c, AVCodecContext *avctx)
c
->
nsse
[
1
]
=
nsse8_c
;
if
(
ARCH_ARM
)
ff_dsputil_init_arm
(
c
,
avctx
,
high_bit_depth
);
ff_dsputil_init_arm
(
c
,
avctx
);
if
(
ARCH_PPC
)
ff_dsputil_init_ppc
(
c
,
avctx
,
high_bit_depth
);
ff_dsputil_init_ppc
(
c
,
avctx
);
if
(
ARCH_X86
)
ff_dsputil_init_x86
(
c
,
avctx
,
high_bit_depth
);
ff_dsputil_init_x86
(
c
,
avctx
);
}
libavcodec/dsputil.h
View file @
11733202
...
...
@@ -78,11 +78,8 @@ void ff_dsputil_init(DSPContext *p, AVCodecContext *avctx);
void
ff_set_cmp
(
DSPContext
*
c
,
me_cmp_func
*
cmp
,
int
type
);
void
ff_dsputil_init_arm
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
);
void
ff_dsputil_init_ppc
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
);
void
ff_dsputil_init_x86
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
);
void
ff_dsputil_init_arm
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
void
ff_dsputil_init_ppc
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
void
ff_dsputil_init_x86
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
#endif
/* AVCODEC_DSPUTIL_H */
libavcodec/ppc/dsputil_altivec.c
View file @
11733202
...
...
@@ -741,8 +741,7 @@ static int hadamard8_diff16_altivec(MpegEncContext *s, uint8_t *dst,
return
score
;
}
av_cold
void
ff_dsputil_init_altivec
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
)
av_cold
void
ff_dsputil_init_altivec
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
c
->
pix_abs
[
0
][
1
]
=
sad16_x2_altivec
;
c
->
pix_abs
[
0
][
2
]
=
sad16_y2_altivec
;
...
...
libavcodec/ppc/dsputil_altivec.h
View file @
11733202
...
...
@@ -27,7 +27,6 @@
#include "libavcodec/dsputil.h"
void
ff_dsputil_init_altivec
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
);
void
ff_dsputil_init_altivec
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
#endif
/* AVCODEC_PPC_DSPUTIL_ALTIVEC_H */
libavcodec/ppc/dsputil_ppc.c
View file @
11733202
...
...
@@ -29,10 +29,9 @@
#include "libavcodec/dsputil.h"
#include "dsputil_altivec.h"
av_cold
void
ff_dsputil_init_ppc
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
)
av_cold
void
ff_dsputil_init_ppc
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
if
(
PPC_ALTIVEC
(
av_get_cpu_flags
()))
{
ff_dsputil_init_altivec
(
c
,
avctx
,
high_bit_depth
);
ff_dsputil_init_altivec
(
c
,
avctx
);
}
}
libavcodec/x86/dsputil_init.c
View file @
11733202
...
...
@@ -24,9 +24,8 @@
#include "libavcodec/dsputil.h"
#include "dsputil_x86.h"
av_cold
void
ff_dsputil_init_x86
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
)
av_cold
void
ff_dsputil_init_x86
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
if
(
CONFIG_ENCODERS
)
ff_dsputilenc_init_mmx
(
c
,
avctx
,
high_bit_depth
);
ff_dsputilenc_init_mmx
(
c
,
avctx
);
}
libavcodec/x86/dsputil_x86.h
View file @
11733202
...
...
@@ -27,8 +27,7 @@
#include "libavcodec/avcodec.h"
#include "libavcodec/dsputil.h"
void
ff_dsputilenc_init_mmx
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
);
void
ff_dsputilenc_init_mmx
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
void
ff_dsputil_init_pix_mmx
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
#endif
/* AVCODEC_X86_DSPUTIL_X86_H */
libavcodec/x86/dsputilenc_mmx.c
View file @
11733202
...
...
@@ -813,8 +813,7 @@ hadamard_func(mmxext)
hadamard_func
(
sse2
)
hadamard_func
(
ssse3
)
av_cold
void
ff_dsputilenc_init_mmx
(
DSPContext
*
c
,
AVCodecContext
*
avctx
,
unsigned
high_bit_depth
)
av_cold
void
ff_dsputilenc_init_mmx
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
int
cpu_flags
=
av_get_cpu_flags
();
...
...
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