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
3572b281
Commit
3572b281
authored
Sep 21, 2009
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: remove broken IPP support
Originally committed as revision 19935 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ee3d7f58
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
36 deletions
+1
-36
dsputil_arm.c
libavcodec/arm/dsputil_arm.c
+1
-36
No files found.
libavcodec/arm/dsputil_arm.c
View file @
3572b281
...
...
@@ -20,9 +20,6 @@
*/
#include "libavcodec/dsputil.h"
#if HAVE_IPP
#include <ipp.h>
#endif
void
dsputil_init_iwmmxt
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
void
ff_float_init_arm_vfp
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
...
...
@@ -97,29 +94,6 @@ static void simple_idct_ARM_add(uint8_t *dest, int line_size, DCTELEM *block)
ff_add_pixels_clamped
(
block
,
dest
,
line_size
);
}
#if HAVE_IPP
static
void
simple_idct_ipp
(
DCTELEM
*
block
)
{
ippiDCT8x8Inv_Video_16s_C1I
(
block
);
}
static
void
simple_idct_ipp_put
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
)
{
ippiDCT8x8Inv_Video_16s8u_C1R
(
block
,
dest
,
line_size
);
}
void
add_pixels_clamped_iwmmxt
(
const
DCTELEM
*
block
,
uint8_t
*
pixels
,
int
line_size
);
static
void
simple_idct_ipp_add
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
)
{
ippiDCT8x8Inv_Video_16s_C1I
(
block
);
#if HAVE_IWMMXT
add_pixels_clamped_iwmmxt
(
block
,
dest
,
line_size
);
#else
ff_add_pixels_clamped_ARM
(
block
,
dest
,
line_size
);
#endif
}
#endif
int
mm_support
(
void
)
{
return
HAVE_IWMMXT
*
FF_MM_IWMMXT
;
...
...
@@ -134,9 +108,7 @@ void dsputil_init_arm(DSPContext* c, AVCodecContext *avctx)
if
(
avctx
->
lowres
==
0
)
{
if
(
idct_algo
==
FF_IDCT_AUTO
){
#if HAVE_IPP
idct_algo
=
FF_IDCT_IPP
;
#elif HAVE_NEON
#if HAVE_NEON
idct_algo
=
FF_IDCT_SIMPLENEON
;
#elif HAVE_ARMV6
idct_algo
=
FF_IDCT_SIMPLEARMV6
;
...
...
@@ -171,13 +143,6 @@ void dsputil_init_arm(DSPContext* c, AVCodecContext *avctx)
c
->
idct
=
simple_idct_armv5te
;
c
->
idct_permutation_type
=
FF_NO_IDCT_PERM
;
#endif
#if HAVE_IPP
}
else
if
(
idct_algo
==
FF_IDCT_IPP
){
c
->
idct_put
=
simple_idct_ipp_put
;
c
->
idct_add
=
simple_idct_ipp_add
;
c
->
idct
=
simple_idct_ipp
;
c
->
idct_permutation_type
=
FF_NO_IDCT_PERM
;
#endif
#if HAVE_NEON
}
else
if
(
idct_algo
==
FF_IDCT_SIMPLENEON
){
c
->
idct_put
=
ff_simple_idct_put_neon
;
...
...
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