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
7191e1c4
Commit
7191e1c4
authored
Aug 03, 2012
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lagarith: fix color plane inversion for YUY2 output.
parent
98d0d192
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lagarith.c
libavcodec/lagarith.c
+3
-3
No files found.
libavcodec/lagarith.c
View file @
7191e1c4
...
...
@@ -618,11 +618,11 @@ static int lag_decode_frame(AVCodecContext *avctx,
lag_decode_arith_plane
(
l
,
p
->
data
[
0
],
avctx
->
width
,
avctx
->
height
,
p
->
linesize
[
0
],
buf
+
offset_ry
,
buf_size
-
offset_ry
);
lag_decode_arith_plane
(
l
,
p
->
data
[
2
],
avctx
->
width
/
2
,
avctx
->
height
,
p
->
linesize
[
2
],
buf
+
offset_gu
,
buf_size
-
offset_gu
);
lag_decode_arith_plane
(
l
,
p
->
data
[
1
],
avctx
->
width
/
2
,
avctx
->
height
,
p
->
linesize
[
1
],
buf
+
offset_gu
,
buf_size
-
offset_gu
);
lag_decode_arith_plane
(
l
,
p
->
data
[
2
],
avctx
->
width
/
2
,
avctx
->
height
,
p
->
linesize
[
2
],
buf
+
offset_bv
,
buf_size
-
offset_bv
);
break
;
case
FRAME_ARITH_YV12
:
...
...
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