Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
6f5ff559
Commit
6f5ff559
authored
Mar 22, 2016
by
Diego Biurrun
Committed by
Vittorio Giovara
Mar 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
intrax8: Adjust printf conversion specifier for sizeof expression
parent
42244ce0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
intrax8.c
libavcodec/intrax8.c
+2
-1
No files found.
libavcodec/intrax8.c
View file @
6f5ff559
...
@@ -115,7 +115,8 @@ static av_cold void x8_vlc_init(void){
...
@@ -115,7 +115,8 @@ static av_cold void x8_vlc_init(void){
init_or_vlc
(
j_orient_vlc
[
1
][
i
],
x8_orient_lowquant_table
[
i
][
0
]);
init_or_vlc
(
j_orient_vlc
[
1
][
i
],
x8_orient_lowquant_table
[
i
][
0
]);
}
}
if
(
offset
!=
sizeof
(
table
)
/
sizeof
(
VLC_TYPE
)
/
2
)
if
(
offset
!=
sizeof
(
table
)
/
sizeof
(
VLC_TYPE
)
/
2
)
av_log
(
NULL
,
AV_LOG_ERROR
,
"table size %i does not match needed %i
\n
"
,
(
int
)(
sizeof
(
table
)
/
sizeof
(
VLC_TYPE
)
/
2
),
offset
);
av_log
(
NULL
,
AV_LOG_ERROR
,
"table size %zd does not match needed %i
\n
"
,
sizeof
(
table
)
/
sizeof
(
VLC_TYPE
)
/
2
,
offset
);
}
}
#undef init_or_vlc
#undef init_or_vlc
...
...
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