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
ca78fa24
Commit
ca78fa24
authored
Jul 03, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sws: disable scale16 when int32 is used
parent
987e4c17
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
swscale.c
libswscale/swscale.c
+3
-2
swscale_template.c
libswscale/x86/swscale_template.c
+3
-1
No files found.
libswscale/swscale.c
View file @
ca78fa24
...
...
@@ -2881,8 +2881,8 @@ static av_cold void sws_init_swScale_c(SwsContext *c)
}
}
if
((
(
isAnyRGB
(
c
->
srcFormat
)
&&
av_pix_fmt_descriptors
[
c
->
srcFormat
].
comp
[
0
].
depth_minus1
<
15
)
||
c
->
srcFormat
==
PIX_FMT_PAL8
)
&&
c
->
scalingBpp
==
8
)
if
((
isAnyRGB
(
c
->
srcFormat
)
&&
av_pix_fmt_descriptors
[
c
->
srcFormat
].
comp
[
0
].
depth_minus1
<
15
)
||
c
->
srcFormat
==
PIX_FMT_PAL8
)
c
->
hScale16
=
hScale16N_c
;
if
(
c
->
scalingBpp
==
8
)
{
...
...
@@ -2902,6 +2902,7 @@ static av_cold void sws_init_swScale_c(SwsContext *c)
}
}
}
else
{
c
->
hScale16
=
NULL
;
c
->
hScale
=
hScale16_c
;
c
->
scale19To15Fw
=
scale19To15Fw_c
;
c
->
scale8To16Rv
=
scale8To16Rv_c
;
...
...
libswscale/x86/swscale_template.c
View file @
ca78fa24
...
...
@@ -2438,6 +2438,8 @@ static av_cold void RENAME(sws_init_swScale)(SwsContext *c)
}
}
#endif
/* !COMPILE_TEMPLATE_MMX2 */
if
(
isAnyRGB
(
c
->
srcFormat
)
&&
av_pix_fmt_descriptors
[
c
->
srcFormat
].
comp
[
0
].
depth_minus1
<
15
&&
c
->
scalingBpp
==
8
)
if
(
isAnyRGB
(
c
->
srcFormat
)
&&
av_pix_fmt_descriptors
[
c
->
srcFormat
].
comp
[
0
].
depth_minus1
<
15
)
c
->
hScale16
=
RENAME
(
hScale16
);
if
(
c
->
scalingBpp
!=
8
)
c
->
hScale16
=
NULL
;
}
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