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
aef5c0b6
Commit
aef5c0b6
authored
Jan 19, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sws: Check for unsupported combination of ED/FULL_CHR flags
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f94220ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
utils.c
libswscale/utils.c
+12
-5
No files found.
libswscale/utils.c
View file @
aef5c0b6
...
...
@@ -1000,17 +1000,24 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter,
}
}
if
(
flags
&
SWS_ERROR_DIFFUSION
&&
!
(
flags
&
SWS_FULL_CHR_H_INT
))
{
if
(
dstFormat
==
AV_PIX_FMT_BGR
4_BYTE
||
dstFormat
==
AV_PIX_FMT_RGB4_BYTE
||
dstFormat
==
AV_PIX_FMT_BGR8
||
dstFormat
==
AV_PIX_FMT_RGB8
)
{
if
(
dstFormat
==
AV_PIX_FMT_BGR4_BYTE
||
dstFormat
==
AV_PIX_FMT_RGB
4_BYTE
||
dstFormat
==
AV_PIX_FMT_BGR8
||
dstFormat
==
AV_PIX_FMT_RGB8
)
{
if
(
flags
&
SWS_ERROR_DIFFUSION
&&
!
(
flags
&
SWS_FULL_CHR_H_INT
)
)
{
av_log
(
c
,
AV_LOG_DEBUG
,
"Error diffusion dither is only supported in full chroma interpolation for destination format '%s'
\n
"
,
av_get_pix_fmt_name
(
dstFormat
));
flags
|=
SWS_FULL_CHR_H_INT
;
c
->
flags
=
flags
;
}
if
(
!
(
flags
&
SWS_ERROR_DIFFUSION
)
&&
(
flags
&
SWS_FULL_CHR_H_INT
))
{
av_log
(
c
,
AV_LOG_DEBUG
,
"Ordered dither is not supported in full chroma interpolation for destination format '%s'
\n
"
,
av_get_pix_fmt_name
(
dstFormat
));
flags
|=
SWS_ERROR_DIFFUSION
;
c
->
flags
=
flags
;
}
}
/* reuse chroma for 2 pixels RGB/BGR unless user wants full
...
...
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