Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
ed2d5ffb
Commit
ed2d5ffb
authored
Sep 11, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contribs: fix libswscale compilation
To be back-ported
parent
f389f376
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
0 deletions
+59
-0
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+1
-0
extras/contrib/src/Patches/ffmpeg-libswscale-head.patch
extras/contrib/src/Patches/ffmpeg-libswscale-head.patch
+58
-0
No files found.
extras/contrib/src/Makefile
View file @
ed2d5ffb
...
...
@@ -1082,6 +1082,7 @@ ifdef HAVE_DARWIN_OS_ON_INTEL
endif
ifdef
HAVE_DARWIN_OS
(
cd
$@
/libswscale
;
patch
-p0
< ../../Patches/ffmpeg-fix-noaltivec.patch
)
(
cd
$@
/libswscale
;
patch
-p0
< ../../Patches/ffmpeg-libswscale-head.patch
)
endif
ifdef
NO_TEXT_RELOCATION
(
cd
$@
;
patch
-p0
< ../Patches/ffmpeg-svn-mmx_removal-darwin9.patch
)
...
...
extras/contrib/src/Patches/ffmpeg-libswscale-head.patch
0 → 100644
View file @
ed2d5ffb
Index: swscale_template.c
===================================================================
--- swscale_template.c (revision 27579)
+++ swscale_template.c (working copy)
@@ -1904,7 +1904,7 @@
BGR2UV(uint16_t, rgb15ToUV, 0, 0, 0, 0x7C00, 0x03E0, 0x001F, RU , GU<<5, BU<<10, RV , GV<<5, BV<<10, RGB2YUV_SHIFT+7)
#ifdef HAVE_MMX
-static inline void bgr24ToY_mmx(uint8_t *dst, uint8_t *src, long width, int srcFormat)
+static inline void RENAME(bgr24ToY_mmx)(uint8_t *dst, uint8_t *src, long width, int srcFormat)
{
if(srcFormat == PIX_FMT_BGR24){
@@ -1957,7 +1957,7 @@
);
}
-static inline void bgr24ToUV_mmx(uint8_t *dstU, uint8_t *dstV, uint8_t *src, long width, int srcFormat)
+static inline void RENAME(bgr24ToUV_mmx)(uint8_t *dstU, uint8_t *dstV, uint8_t *src, long width, int srcFormat)
{
asm volatile(
"movq 24+%4, %%mm6 \n\t"
@@ -2019,7 +2019,7 @@
static inline void RENAME(bgr24ToY)(uint8_t *dst, uint8_t *src, long width)
{
#ifdef HAVE_MMX
- bgr24ToY_mmx(dst, src, width, PIX_FMT_BGR24);
+ RENAME(bgr24ToY_mmx)(dst, src, width, PIX_FMT_BGR24);
#else
int i;
for (i=0; i<width; i++)
@@ -2036,7 +2036,7 @@
static inline void RENAME(bgr24ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, long width)
{
#ifdef HAVE_MMX
- bgr24ToUV_mmx(dstU, dstV, src1, width, PIX_FMT_BGR24);
+ RENAME(bgr24ToUV_mmx)(dstU, dstV, src1, width, PIX_FMT_BGR24);
#else
int i;
for (i=0; i<width; i++)
@@ -2070,7 +2070,7 @@
static inline void RENAME(rgb24ToY)(uint8_t *dst, uint8_t *src, long width)
{
#ifdef HAVE_MMX
- bgr24ToY_mmx(dst, src, width, PIX_FMT_RGB24);
+ RENAME(bgr24ToY_mmx)(dst, src, width, PIX_FMT_RGB24);
#else
int i;
for (i=0; i<width; i++)
@@ -2089,7 +2089,7 @@
int i;
assert(src1==src2);
#ifdef HAVE_MMX
- bgr24ToUV_mmx(dstU, dstV, src1, width, PIX_FMT_RGB24);
+ RENAME(bgr24ToUV_mmx)(dstU, dstV, src1, width, PIX_FMT_RGB24);
#else
for (i=0; i<width; i++)
{
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