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
1ca7dc60
Commit
1ca7dc60
authored
Feb 12, 2012
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale: fix invalid memory accesses in yuvpacked1() functions.
parent
0bf184e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
output.c
libswscale/output.c
+10
-10
No files found.
libswscale/output.c
View file @
1ca7dc60
...
@@ -629,20 +629,20 @@ yuv2422_1_c_template(SwsContext *c, const int16_t *buf0,
...
@@ -629,20 +629,20 @@ yuv2422_1_c_template(SwsContext *c, const int16_t *buf0,
const
int16_t
*
abuf0
,
uint8_t
*
dest
,
int
dstW
,
const
int16_t
*
abuf0
,
uint8_t
*
dest
,
int
dstW
,
int
uvalpha
,
int
y
,
enum
PixelFormat
target
)
int
uvalpha
,
int
y
,
enum
PixelFormat
target
)
{
{
const
int16_t
*
ubuf0
=
ubuf
[
0
],
*
ubuf1
=
ubuf
[
1
],
const
int16_t
*
ubuf0
=
ubuf
[
0
],
*
vbuf0
=
vbuf
[
0
];
*
vbuf0
=
vbuf
[
0
],
*
vbuf1
=
vbuf
[
1
];
int
i
;
int
i
;
if
(
uvalpha
<
2048
)
{
if
(
uvalpha
<
2048
)
{
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
int
U
=
ubuf
1
[
i
]
>>
7
;
int
U
=
ubuf
0
[
i
]
>>
7
;
int
V
=
vbuf
1
[
i
]
>>
7
;
int
V
=
vbuf
0
[
i
]
>>
7
;
output_pixels
(
i
*
4
,
Y1
,
U
,
Y2
,
V
);
output_pixels
(
i
*
4
,
Y1
,
U
,
Y2
,
V
);
}
}
}
else
{
}
else
{
const
int16_t
*
ubuf1
=
ubuf
[
1
],
*
vbuf1
=
vbuf
[
1
];
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
...
@@ -775,8 +775,7 @@ yuv2rgb48_1_c_template(SwsContext *c, const int32_t *buf0,
...
@@ -775,8 +775,7 @@ yuv2rgb48_1_c_template(SwsContext *c, const int32_t *buf0,
const
int32_t
*
abuf0
,
uint16_t
*
dest
,
int
dstW
,
const
int32_t
*
abuf0
,
uint16_t
*
dest
,
int
dstW
,
int
uvalpha
,
int
y
,
enum
PixelFormat
target
)
int
uvalpha
,
int
y
,
enum
PixelFormat
target
)
{
{
const
int32_t
*
ubuf0
=
ubuf
[
0
],
*
ubuf1
=
ubuf
[
1
],
const
int32_t
*
ubuf0
=
ubuf
[
0
],
*
vbuf0
=
vbuf
[
0
];
*
vbuf0
=
vbuf
[
0
],
*
vbuf1
=
vbuf
[
1
];
int
i
;
int
i
;
if
(
uvalpha
<
2048
)
{
if
(
uvalpha
<
2048
)
{
...
@@ -807,6 +806,7 @@ yuv2rgb48_1_c_template(SwsContext *c, const int32_t *buf0,
...
@@ -807,6 +806,7 @@ yuv2rgb48_1_c_template(SwsContext *c, const int32_t *buf0,
dest
+=
6
;
dest
+=
6
;
}
}
}
else
{
}
else
{
const
int32_t
*
ubuf1
=
ubuf
[
1
],
*
vbuf1
=
vbuf
[
1
];
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
int
Y1
=
(
buf0
[
i
*
2
]
)
>>
2
;
int
Y1
=
(
buf0
[
i
*
2
]
)
>>
2
;
int
Y2
=
(
buf0
[
i
*
2
+
1
])
>>
2
;
int
Y2
=
(
buf0
[
i
*
2
+
1
])
>>
2
;
...
@@ -1070,16 +1070,15 @@ yuv2rgb_1_c_template(SwsContext *c, const int16_t *buf0,
...
@@ -1070,16 +1070,15 @@ yuv2rgb_1_c_template(SwsContext *c, const int16_t *buf0,
int
uvalpha
,
int
y
,
enum
PixelFormat
target
,
int
uvalpha
,
int
y
,
enum
PixelFormat
target
,
int
hasAlpha
)
int
hasAlpha
)
{
{
const
int16_t
*
ubuf0
=
ubuf
[
0
],
*
ubuf1
=
ubuf
[
1
],
const
int16_t
*
ubuf0
=
ubuf
[
0
],
*
vbuf0
=
vbuf
[
0
];
*
vbuf0
=
vbuf
[
0
],
*
vbuf1
=
vbuf
[
1
];
int
i
;
int
i
;
if
(
uvalpha
<
2048
)
{
if
(
uvalpha
<
2048
)
{
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
int
U
=
ubuf
1
[
i
]
>>
7
;
int
U
=
ubuf
0
[
i
]
>>
7
;
int
V
=
vbuf
1
[
i
]
>>
7
;
int
V
=
vbuf
0
[
i
]
>>
7
;
int
A1
,
A2
;
int
A1
,
A2
;
const
void
*
r
=
c
->
table_rV
[
V
],
const
void
*
r
=
c
->
table_rV
[
V
],
*
g
=
(
c
->
table_gU
[
U
]
+
c
->
table_gV
[
V
]),
*
g
=
(
c
->
table_gU
[
U
]
+
c
->
table_gV
[
V
]),
...
@@ -1094,6 +1093,7 @@ yuv2rgb_1_c_template(SwsContext *c, const int16_t *buf0,
...
@@ -1094,6 +1093,7 @@ yuv2rgb_1_c_template(SwsContext *c, const int16_t *buf0,
r
,
g
,
b
,
y
,
target
,
hasAlpha
);
r
,
g
,
b
,
y
,
target
,
hasAlpha
);
}
}
}
else
{
}
else
{
const
int16_t
*
ubuf1
=
ubuf
[
1
],
*
vbuf1
=
vbuf
[
1
];
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
for
(
i
=
0
;
i
<
(
dstW
>>
1
);
i
++
)
{
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y1
=
buf0
[
i
*
2
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
int
Y2
=
buf0
[
i
*
2
+
1
]
>>
7
;
...
...
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