Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-Android
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Casanowow Life for love
VLC-Android
Commits
e77b1122
Commit
e77b1122
authored
Aug 04, 2012
by
Edward Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update line numbers in the ARM/NEON channel mixer patch
parent
aea28f48
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
compile.sh
compile.sh
+1
-1
patches/0004-add-ARM-NEON-version-of-simple-channel-mixer.patch
...s/0004-add-ARM-NEON-version-of-simple-channel-mixer.patch
+11
-11
No files found.
compile.sh
View file @
e77b1122
...
@@ -88,7 +88,7 @@ export PLATFORM_SHORT_ARCH
...
@@ -88,7 +88,7 @@ export PLATFORM_SHORT_ARCH
export
PATH
=
${
ANDROID_NDK
}
/toolchains/
${
PATH_HOST
}
-
${
GCCVER
}
/prebuilt/
`
uname
|tr A-Z a-z
`
-x86
/bin:
${
PATH
}
export
PATH
=
${
ANDROID_NDK
}
/toolchains/
${
PATH_HOST
}
-
${
GCCVER
}
/prebuilt/
`
uname
|tr A-Z a-z
`
-x86
/bin:
${
PATH
}
# 1/ libvlc, libvlccore and its plugins
# 1/ libvlc, libvlccore and its plugins
TESTED_HASH
=
17fbcd4ed8
TESTED_HASH
=
b089c84
if
[
!
-d
"vlc"
]
;
then
if
[
!
-d
"vlc"
]
;
then
echo
"VLC source not found, cloning"
echo
"VLC source not found, cloning"
git clone git://git.videolan.org/vlc.git vlc
git clone git://git.videolan.org/vlc.git vlc
...
...
patches/0004-add-ARM-NEON-version-of-simple-channel-mixer.patch
View file @
e77b1122
From
bffbcd26576f6cd169abcc974dc9a66671cfd19f
Mon Sep 17 00:00:00 2001
From
d8ba9cd813625fb4cfecd1d4207ea3d27cd0e4a8
Mon Sep 17 00:00:00 2001
From: David Geldreich <david.geldreich@free.fr>
From: David Geldreich <david.geldreich@free.fr>
Date: Sun, 20 May 2012 11:16:31 +0200
Date: Sun, 20 May 2012 11:16:31 +0200
Subject: [PATCH] add ARM/NEON version of simple channel mixer
Subject: [PATCH] add ARM/NEON version of simple channel mixer
...
@@ -6,17 +6,17 @@ Subject: [PATCH] add ARM/NEON version of simple channel mixer
...
@@ -6,17 +6,17 @@ Subject: [PATCH] add ARM/NEON version of simple channel mixer
---
---
modules/LIST | 1 +
modules/LIST | 1 +
modules/arm_neon/Modules.am | 8 +
modules/arm_neon/Modules.am | 8 +
modules/arm_neon/simple_channel_mixer.S | 2
95
+++++++++++++++++++++++++++++++
modules/arm_neon/simple_channel_mixer.S | 2
79
+++++++++++++++++++++++++++++++
modules/arm_neon/simple_channel_mixer.c | 171 ++++++++++++++++++
modules/arm_neon/simple_channel_mixer.c | 171 ++++++++++++++++++
+
4 files changed, 4
75 insertions(+
)
4 files changed, 4
59 insertions(+), 0 deletions(-
)
create mode 100644 modules/arm_neon/simple_channel_mixer.S
create mode 100644 modules/arm_neon/simple_channel_mixer.S
create mode 100644 modules/arm_neon/simple_channel_mixer.c
create mode 100644 modules/arm_neon/simple_channel_mixer.c
diff --git a/modules/LIST b/modules/LIST
diff --git a/modules/LIST b/modules/LIST
index
4eb07e9..b1e3398
100644
index
f6dda85..a586069
100644
--- a/modules/LIST
--- a/modules/LIST
+++ b/modules/LIST
+++ b/modules/LIST
@@ -29
7,6 +297
,7 @@
$Id$
@@ -29
1,6 +291
,7 @@
$Id$
* shine: MP3 encoder using Shine, a fixed point implementation
* shine: MP3 encoder using Shine, a fixed point implementation
* sid: Sidplay demuxer
* sid: Sidplay demuxer
* simple_channel_mixer: channel mixer
* simple_channel_mixer: channel mixer
...
@@ -25,7 +25,7 @@ index 4eb07e9..b1e3398 100644
...
@@ -25,7 +25,7 @@ index 4eb07e9..b1e3398 100644
* smf: Standard MIDI file demuxer
* smf: Standard MIDI file demuxer
* sndio: OpenBSD sndio audio output
* sndio: OpenBSD sndio audio output
diff --git a/modules/arm_neon/Modules.am b/modules/arm_neon/Modules.am
diff --git a/modules/arm_neon/Modules.am b/modules/arm_neon/Modules.am
index
9dfd4ab..c430913
100644
index
b60011b..ca6c2ff
100644
--- a/modules/arm_neon/Modules.am
--- a/modules/arm_neon/Modules.am
+++ b/modules/arm_neon/Modules.am
+++ b/modules/arm_neon/Modules.am
@@ -9,6 +9,13 @@
libaudio_format_neon_plugin_la_CFLAGS = $(AM_CFLAGS)
@@ -9,6 +9,13 @@
libaudio_format_neon_plugin_la_CFLAGS = $(AM_CFLAGS)
...
@@ -42,17 +42,17 @@ index 9dfd4ab..c430913 100644
...
@@ -42,17 +42,17 @@ index 9dfd4ab..c430913 100644
libchroma_yuv_neon_plugin_la_SOURCES = \
libchroma_yuv_neon_plugin_la_SOURCES = \
i420_yuyv.S \
i420_yuyv.S \
i422_yuyv.S \
i422_yuyv.S \
@@ -
29,6 +36
,7 @@
libyuv_rgb_neon_plugin_la_DEPENDENCIES =
@@ -
34,6 +41
,7 @@
libyuv_rgb_neon_plugin_la_DEPENDENCIES =
libvlc_LTLIBRARIES += \
libvlc_LTLIBRARIES += \
libaudio_format_neon_plugin.la \
libaudio_format_neon_plugin.la \
+ libsimple_channel_mixer_neon_plugin.la \
+ libsimple_channel_mixer_neon_plugin.la \
libchroma_yuv_neon_plugin.la \
libchroma_yuv_neon_plugin.la \
libvolume_neon_plugin.la \
libyuv_rgb_neon_plugin.la \
libyuv_rgb_neon_plugin.la \
$(NULL)
diff --git a/modules/arm_neon/simple_channel_mixer.S b/modules/arm_neon/simple_channel_mixer.S
diff --git a/modules/arm_neon/simple_channel_mixer.S b/modules/arm_neon/simple_channel_mixer.S
new file mode 100644
new file mode 100644
index 0000000..
6842f73
index 0000000..
16d6702
--- /dev/null
--- /dev/null
+++ b/modules/arm_neon/simple_channel_mixer.S
+++ b/modules/arm_neon/simple_channel_mixer.S
@@ -0,0 +1,279 @@
@@ -0,0 +1,279 @@
...
@@ -513,5 +513,5 @@ index 0000000..515a390
...
@@ -513,5 +513,5 @@ index 0000000..515a390
+ return VLC_EGENERIC;
+ return VLC_EGENERIC;
+}
+}
--
--
1.7.
9.5
1.7.
5.4
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