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
99818ac4
Commit
99818ac4
authored
Apr 18, 2013
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix libswscale compilation with --disable-optimizations on x86-32.
Fixes ticket #2477.
parent
ee94362c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
rgb2rgb_template.c
libswscale/x86/rgb2rgb_template.c
+4
-0
No files found.
libswscale/x86/rgb2rgb_template.c
View file @
99818ac4
...
@@ -1610,6 +1610,7 @@ static inline void RENAME(uyvytoyv12)(const uint8_t *src, uint8_t *ydst, uint8_t
...
@@ -1610,6 +1610,7 @@ static inline void RENAME(uyvytoyv12)(const uint8_t *src, uint8_t *ydst, uint8_t
* others are ignored in the C version.
* others are ignored in the C version.
* FIXME: Write HQ version.
* FIXME: Write HQ version.
*/
*/
#if HAVE_7REGS
static
inline
void
RENAME
(
rgb24toyv12
)(
const
uint8_t
*
src
,
uint8_t
*
ydst
,
uint8_t
*
udst
,
uint8_t
*
vdst
,
static
inline
void
RENAME
(
rgb24toyv12
)(
const
uint8_t
*
src
,
uint8_t
*
ydst
,
uint8_t
*
udst
,
uint8_t
*
vdst
,
int
width
,
int
height
,
int
width
,
int
height
,
int
lumStride
,
int
chromStride
,
int
srcStride
,
int
lumStride
,
int
chromStride
,
int
srcStride
,
...
@@ -1848,6 +1849,7 @@ static inline void RENAME(rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_
...
@@ -1848,6 +1849,7 @@ static inline void RENAME(rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_
ff_rgb24toyv12_c
(
src
,
ydst
,
udst
,
vdst
,
width
,
height
-
y
,
lumStride
,
chromStride
,
srcStride
,
rgb2yuv
);
ff_rgb24toyv12_c
(
src
,
ydst
,
udst
,
vdst
,
width
,
height
-
y
,
lumStride
,
chromStride
,
srcStride
,
rgb2yuv
);
}
}
#endif
/* HAVE_7REGS */
#endif
/* !COMPILE_TEMPLATE_SSE2 */
#endif
/* !COMPILE_TEMPLATE_SSE2 */
#if !COMPILE_TEMPLATE_AMD3DNOW
#if !COMPILE_TEMPLATE_AMD3DNOW
...
@@ -2482,7 +2484,9 @@ static inline void RENAME(rgb2rgb_init)(void)
...
@@ -2482,7 +2484,9 @@ static inline void RENAME(rgb2rgb_init)(void)
#if COMPILE_TEMPLATE_MMXEXT || COMPILE_TEMPLATE_AMD3DNOW
#if COMPILE_TEMPLATE_MMXEXT || COMPILE_TEMPLATE_AMD3DNOW
planar2x
=
RENAME
(
planar2x
);
planar2x
=
RENAME
(
planar2x
);
#endif
/* COMPILE_TEMPLATE_MMXEXT || COMPILE_TEMPLATE_AMD3DNOW */
#endif
/* COMPILE_TEMPLATE_MMXEXT || COMPILE_TEMPLATE_AMD3DNOW */
#if HAVE_7REGS
ff_rgb24toyv12
=
RENAME
(
rgb24toyv12
);
ff_rgb24toyv12
=
RENAME
(
rgb24toyv12
);
#endif
/* HAVE_7REGS */
yuyvtoyuv420
=
RENAME
(
yuyvtoyuv420
);
yuyvtoyuv420
=
RENAME
(
yuyvtoyuv420
);
uyvytoyuv420
=
RENAME
(
uyvytoyuv420
);
uyvytoyuv420
=
RENAME
(
uyvytoyuv420
);
...
...
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