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
68e5598e
Commit
68e5598e
authored
Dec 24, 2016
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/utvideo: fix mistake using wrong arguments for left and lefttop pixel components
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
6cedd20b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
utvideodec.c
libavcodec/utvideodec.c
+4
-4
No files found.
libavcodec/utvideodec.c
View file @
68e5598e
...
...
@@ -414,7 +414,7 @@ static void restore_median_planar(UtvideoContext *c, uint8_t *src, int stride,
// the rest of lines use continuous median prediction
for
(
j
=
2
;
j
<
slice_height
;
j
++
)
{
c
->
hdspdec
.
add_hfyu_median_pred
(
bsrc
,
bsrc
-
stride
,
bsrc
,
width
,
&
B
,
&
C
);
bsrc
,
width
,
&
A
,
&
B
);
bsrc
+=
stride
;
}
}
...
...
@@ -462,14 +462,14 @@ static void restore_median_planar_il(UtvideoContext *c, uint8_t *src, int stride
A
=
bsrc
[
i
];
}
c
->
hdspdec
.
add_hfyu_median_pred
(
bsrc
+
stride
,
bsrc
-
stride
,
bsrc
+
stride
,
width
,
&
B
,
&
C
);
bsrc
+
stride
,
width
,
&
A
,
&
B
);
bsrc
+=
stride2
;
// the rest of lines use continuous median prediction
for
(
j
=
2
;
j
<
slice_height
;
j
++
)
{
c
->
hdspdec
.
add_hfyu_median_pred
(
bsrc
,
bsrc
-
stride2
,
bsrc
,
width
,
&
B
,
&
C
);
bsrc
,
width
,
&
A
,
&
B
);
c
->
hdspdec
.
add_hfyu_median_pred
(
bsrc
+
stride
,
bsrc
-
stride
,
bsrc
+
stride
,
width
,
&
B
,
&
C
);
bsrc
+
stride
,
width
,
&
A
,
&
B
);
bsrc
+=
stride2
;
}
}
...
...
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