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
5fbe57c0
Commit
5fbe57c0
authored
Jan 07, 2016
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/uncodedframecrcenc: use FF_CEIL_RSHIFT()
parent
90cd0205
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
uncodedframecrcenc.c
libavformat/uncodedframecrcenc.c
+1
-1
No files found.
libavformat/uncodedframecrcenc.c
View file @
5fbe57c0
...
@@ -64,7 +64,7 @@ static void video_frame_cksum(AVBPrint *bp, AVFrame *frame)
...
@@ -64,7 +64,7 @@ static void video_frame_cksum(AVBPrint *bp, AVFrame *frame)
unsigned
cksum
=
0
;
unsigned
cksum
=
0
;
int
h
=
frame
->
height
;
int
h
=
frame
->
height
;
if
((
i
==
1
||
i
==
2
)
&&
desc
->
nb_components
>=
3
)
if
((
i
==
1
||
i
==
2
)
&&
desc
->
nb_components
>=
3
)
h
=
-
((
-
h
)
>>
desc
->
log2_chroma_h
);
h
=
FF_CEIL_RSHIFT
(
h
,
desc
->
log2_chroma_h
);
data
=
frame
->
data
[
i
];
data
=
frame
->
data
[
i
];
for
(
y
=
0
;
y
<
h
;
y
++
)
{
for
(
y
=
0
;
y
<
h
;
y
++
)
{
cksum
=
av_adler32_update
(
cksum
,
data
,
linesize
[
i
]);
cksum
=
av_adler32_update
(
cksum
,
data
,
linesize
[
i
]);
...
...
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