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
1f7871ec
Commit
1f7871ec
authored
Sep 04, 2015
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9: fix edge copy for 10/12bpp frames.
parent
9cdeb105
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
vp9.c
libavcodec/vp9.c
+8
-8
No files found.
libavcodec/vp9.c
View file @
1f7871ec
...
...
@@ -3353,9 +3353,9 @@ static void decode_b(AVCodecContext *ctx, int row, int col,
av_assert2
(
n
<=
4
);
if
(
w
&
bw
)
{
s
->
dsp
.
mc
[
n
][
0
][
0
][
0
][
0
](
f
->
data
[
0
]
+
yoff
+
o
,
f
->
linesize
[
0
],
s
->
tmp_y
+
o
,
128
,
h
,
0
,
0
);
o
+=
bw
*
bytesperpixel
;
s
->
dsp
.
mc
[
n
][
0
][
0
][
0
][
0
](
f
->
data
[
0
]
+
yoff
+
o
*
bytesperpixel
,
f
->
linesize
[
0
],
s
->
tmp_y
+
o
*
bytesperpixel
,
128
,
h
,
0
,
0
);
o
+=
bw
;
}
}
}
...
...
@@ -3368,11 +3368,11 @@ static void decode_b(AVCodecContext *ctx, int row, int col,
av_assert2
(
n
<=
4
);
if
(
w
&
bw
)
{
s
->
dsp
.
mc
[
n
][
0
][
0
][
0
][
0
](
f
->
data
[
1
]
+
uvoff
+
o
,
f
->
linesize
[
1
],
s
->
tmp_uv
[
0
]
+
o
,
128
,
h
,
0
,
0
);
s
->
dsp
.
mc
[
n
][
0
][
0
][
0
][
0
](
f
->
data
[
2
]
+
uvoff
+
o
,
f
->
linesize
[
2
],
s
->
tmp_uv
[
1
]
+
o
,
128
,
h
,
0
,
0
);
o
+=
bw
*
bytesperpixel
;
s
->
dsp
.
mc
[
n
][
0
][
0
][
0
][
0
](
f
->
data
[
1
]
+
uvoff
+
o
*
bytesperpixel
,
f
->
linesize
[
1
],
s
->
tmp_uv
[
0
]
+
o
*
bytesperpixel
,
128
,
h
,
0
,
0
);
s
->
dsp
.
mc
[
n
][
0
][
0
][
0
][
0
](
f
->
data
[
2
]
+
uvoff
+
o
*
bytesperpixel
,
f
->
linesize
[
2
],
s
->
tmp_uv
[
1
]
+
o
*
bytesperpixel
,
128
,
h
,
0
,
0
);
o
+=
bw
;
}
}
}
...
...
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