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
c39c1dca
Commit
c39c1dca
authored
Jul 27, 2003
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
410p -> 411p
Originally committed as revision 2091 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
3aff069b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
cljr.c
libavcodec/cljr.c
+3
-4
No files found.
libavcodec/cljr.c
View file @
c39c1dca
...
...
@@ -67,9 +67,8 @@ static int decode_frame(AVCodecContext *avctx,
for
(
y
=
0
;
y
<
avctx
->
height
;
y
++
){
int
offset
;
uint8_t
*
luma
=
&
a
->
picture
.
data
[
0
][
y
*
a
->
picture
.
linesize
[
0
]
];
uint8_t
*
cb
=
&
a
->
picture
.
data
[
1
][
(
y
>>
2
)
*
a
->
picture
.
linesize
[
1
]
];
uint8_t
*
cr
=
&
a
->
picture
.
data
[
2
][
(
y
>>
2
)
*
a
->
picture
.
linesize
[
2
]
];
uint8_t
*
cb
=
&
a
->
picture
.
data
[
1
][
y
*
a
->
picture
.
linesize
[
1
]
];
uint8_t
*
cr
=
&
a
->
picture
.
data
[
2
][
y
*
a
->
picture
.
linesize
[
2
]
];
for
(
x
=
0
;
x
<
avctx
->
width
;
x
+=
4
){
luma
[
3
]
=
get_bits
(
&
a
->
gb
,
5
)
<<
3
;
luma
[
2
]
=
get_bits
(
&
a
->
gb
,
5
)
<<
3
;
...
...
@@ -127,7 +126,7 @@ static int decode_init(AVCodecContext *avctx){
common_init
(
avctx
);
avctx
->
pix_fmt
=
PIX_FMT_YUV41
0
P
;
avctx
->
pix_fmt
=
PIX_FMT_YUV41
1
P
;
return
0
;
}
...
...
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