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
8efe96ee
Commit
8efe96ee
authored
Jul 26, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale/fill_rgb2yuv_table: fix default detection
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f3f4e133
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
utils.c
libswscale/utils.c
+1
-1
No files found.
libswscale/utils.c
View file @
8efe96ee
...
@@ -904,7 +904,7 @@ static void fill_rgb2yuv_table(SwsContext *c, const int table[4], int dstRange)
...
@@ -904,7 +904,7 @@ static void fill_rgb2yuv_table(SwsContext *c, const int table[4], int dstRange)
c
->
input_rgb2yuv_table
[
GV_IDX
]
=
-
ROUNDED_DIV
((
1
<<
RGB2YUV_SHIFT
)
*
ONE
*
ONE
,
Cv
);
c
->
input_rgb2yuv_table
[
GV_IDX
]
=
-
ROUNDED_DIV
((
1
<<
RGB2YUV_SHIFT
)
*
ONE
*
ONE
,
Cv
);
c
->
input_rgb2yuv_table
[
BV_IDX
]
=
ROUNDED_DIV
((
1
<<
RGB2YUV_SHIFT
)
*
W
,
Cv
);
c
->
input_rgb2yuv_table
[
BV_IDX
]
=
ROUNDED_DIV
((
1
<<
RGB2YUV_SHIFT
)
*
W
,
Cv
);
if
(
/*!dstRange && */
table
==
ff_yuv2rgb_coeffs
[
SWS_CS_DEFAULT
]
)
{
if
(
/*!dstRange && */
!
memcmp
(
table
,
ff_yuv2rgb_coeffs
[
SWS_CS_DEFAULT
],
sizeof
(
ff_yuv2rgb_coeffs
[
SWS_CS_DEFAULT
]))
)
{
c
->
input_rgb2yuv_table
[
BY_IDX
]
=
((
int
)(
0
.
114
*
219
/
255
*
(
1
<<
RGB2YUV_SHIFT
)
+
0
.
5
));
c
->
input_rgb2yuv_table
[
BY_IDX
]
=
((
int
)(
0
.
114
*
219
/
255
*
(
1
<<
RGB2YUV_SHIFT
)
+
0
.
5
));
c
->
input_rgb2yuv_table
[
BV_IDX
]
=
(
-
(
int
)(
0
.
081
*
224
/
255
*
(
1
<<
RGB2YUV_SHIFT
)
+
0
.
5
));
c
->
input_rgb2yuv_table
[
BV_IDX
]
=
(
-
(
int
)(
0
.
081
*
224
/
255
*
(
1
<<
RGB2YUV_SHIFT
)
+
0
.
5
));
c
->
input_rgb2yuv_table
[
BU_IDX
]
=
((
int
)(
0
.
500
*
224
/
255
*
(
1
<<
RGB2YUV_SHIFT
)
+
0
.
5
));
c
->
input_rgb2yuv_table
[
BU_IDX
]
=
((
int
)(
0
.
500
*
224
/
255
*
(
1
<<
RGB2YUV_SHIFT
)
+
0
.
5
));
...
...
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