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
aa9507cc
Commit
aa9507cc
authored
Dec 29, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale: fix warning: assignment from incompatible pointer type
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
05d81a57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
swscale.c
libswscale/swscale.c
+3
-3
No files found.
libswscale/swscale.c
View file @
aa9507cc
...
...
@@ -586,8 +586,8 @@ static int swScale(SwsContext *c, const uint8_t *src[],
// || yuv2planeX == yuv2planeX_8_c) || !ARCH_X86);
if
(
use_mmx_vfilter
){
vLumFilter
=
c
->
lumMmxFilter
;
vChrFilter
=
c
->
chrMmxFilter
;
vLumFilter
=
(
int16_t
*
)
c
->
lumMmxFilter
;
vChrFilter
=
(
int16_t
*
)
c
->
chrMmxFilter
;
}
if
(
vLumFilterSize
==
1
)
{
...
...
@@ -618,7 +618,7 @@ static int swScale(SwsContext *c, const uint8_t *src[],
if
(
CONFIG_SWSCALE_ALPHA
&&
alpPixBuf
)
{
if
(
use_mmx_vfilter
){
vLumFilter
=
c
->
alpMmxFilter
;
vLumFilter
=
(
int16_t
*
)
c
->
alpMmxFilter
;
}
if
(
vLumFilterSize
==
1
)
{
yuv2plane1
(
alpSrcPtr
[
0
],
dest
[
3
],
dstW
,
...
...
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