Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc-gpu
Commits
1ac73b15
Commit
1ac73b15
authored
Nov 06, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: add libmpeg2
parent
cfceecdd
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
418 additions
and
0 deletions
+418
-0
contrib/src/libmpeg2/SHA512SUMS
contrib/src/libmpeg2/SHA512SUMS
+1
-0
contrib/src/libmpeg2/libmpeg2-arm-pld.patch
contrib/src/libmpeg2/libmpeg2-arm-pld.patch
+20
-0
contrib/src/libmpeg2/libmpeg2-mc-neon.patch
contrib/src/libmpeg2/libmpeg2-mc-neon.patch
+373
-0
contrib/src/libmpeg2/rules.mak
contrib/src/libmpeg2/rules.mak
+24
-0
No files found.
contrib/src/libmpeg2/SHA512SUMS
0 → 100644
View file @
1ac73b15
3648a2b3d7e2056d5adb328acd2fb983a1fa9a05ccb6f9388cc686c819445421811f42e8439418a0491a13080977f074a0d8bf8fa6bc101ff245ddea65a46fbc libmpeg2-0.5.1.tar.gz
contrib/src/libmpeg2/libmpeg2-arm-pld.patch
0 → 100644
View file @
1ac73b15
diff -urNp libmpeg2.orig/libmpeg2/motion_comp_arm_s.S libmpeg2/libmpeg2/motion_comp_arm_s.S
--- libmpeg2.orig/libmpeg2/motion_comp_arm_s.S 2008-07-09 21:16:05.000000000 +0200
+++ libmpeg2/libmpeg2/motion_comp_arm_s.S 2009-11-20 19:55:22.000000000 +0100
@@ -19,6 +19,16 @@
@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+@ Data preload is supported only by ARM V5TE and above
+
+#if (defined (__ARM_ARCH_2__) || defined (__ARM_ARCH_3__) \
+ || defined (__ARM_ARCH_3M__) || defined (__ARM_ARCH_4__) \
+ || defined (__ARM_ARCH_4T__) || defined (__ARM_ARCH_5__) \
+ || defined (__ARM_ARCH_5T__))
+.macro pld reg
+.endm
+#endif
+
.text
@ ----------------------------------------------------------------
contrib/src/libmpeg2/libmpeg2-mc-neon.patch
0 → 100644
View file @
1ac73b15
This diff is collapsed.
Click to expand it.
contrib/src/libmpeg2/rules.mak
0 → 100644
View file @
1ac73b15
# libmpeg2
LIBMPEG2_VERSION
=
0.5.1
LIBMPEG2_URL
:=
http://libmpeg2.sourceforge.net/files/libmpeg2-
$(LIBMPEG2_VERSION)
.tar.gz
PKGS
+=
libmpeg2
ifeq
($(call need_pkg,"libmpeg2"),)
PKGS_FOUND
+=
libmpeg2
endif
$(TARBALLS)/libmpeg2-$(LIBMPEG2_VERSION).tar.gz
:
$(
call
download,
$(LIBMPEG2_URL)
)
.sum-libmpeg2
:
libmpeg2-$(LIBMPEG2_VERSION).tar.gz
libmpeg2
:
libmpeg2-$(LIBMPEG2_VERSION).tar.gz .sum-libmpeg2
$(UNPACK)
$(MOVE)
.libmpeg2
:
libmpeg2
cd
$<
&&
$(HOSTVARS)
./configure
$(HOSTCONF)
--without-x
--disable-sdl
cd
$<
/libmpeg2
&&
make
&&
make
install
cd
$<
/include
&&
make
&&
make
install
touch
$@
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