summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-16 13:09:52 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-16 13:09:52 +0200
commit4710337f4b60d653eecdc8bf3f47a0db8315a4f0 (patch)
treef97d16408283f740dbd069dab3ad1c35c4841440 /package
parentf6fed079c91dfc85deb834038dcc71b9695fecad (diff)
remove patch
Diffstat (limited to 'package')
-rw-r--r--package/ffmpeg/patches/patch-libavcodec_arm_fft_init_arm_c.orig22
1 files changed, 0 insertions, 22 deletions
diff --git a/package/ffmpeg/patches/patch-libavcodec_arm_fft_init_arm_c.orig b/package/ffmpeg/patches/patch-libavcodec_arm_fft_init_arm_c.orig
deleted file mode 100644
index a7d9ff0ac..000000000
--- a/package/ffmpeg/patches/patch-libavcodec_arm_fft_init_arm_c.orig
+++ /dev/null
@@ -1,22 +0,0 @@
---- ffmpeg-2.0.1.orig/libavcodec/arm/fft_init_arm.c 2013-08-11 01:23:24.000000000 +0200
-+++ ffmpeg-2.0.1/libavcodec/arm/fft_init_arm.c 2013-10-14 17:45:32.000000000 +0200
-@@ -32,6 +32,12 @@ void ff_mdct_calc_neon(FFTContext *s, FF
-
- void ff_rdft_calc_neon(struct RDFTContext *s, FFTSample *z);
-
-+void ff_synth_filter_float_vfp(FFTContext *imdct,
-+ float *synth_buf_ptr, int *synth_buf_offset,
-+ float synth_buf2[32], const float window[512],
-+ float out[32], const float in[32],
-+ float scale);
-+
- void ff_synth_filter_float_neon(FFTContext *imdct,
- float *synth_buf_ptr, int *synth_buf_offset,
- float synth_buf2[32], const float window[512],
-@@ -73,5 +79,6 @@ av_cold void ff_synth_filter_init_arm(Sy
-
- if (have_neon(cpu_flags))
- s->synth_filter_float = ff_synth_filter_float_neon;
-+ s->synth_filter_float = ff_synth_filter_float_vfp;
- }
- #endif