Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MINOTAuR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MINOTAuR
MINOTAuR
Commits
83642e9a
Commit
83642e9a
authored
5 years ago
by
Michael Platzer
Browse files
Options
Downloads
Patches
Plain Diff
sequential/h264_dec: add an explicit signed/unsigned before each char
parent
80408643
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bench/sequential/h264_dec/h264_dec.c
+3
-3
3 additions, 3 deletions
bench/sequential/h264_dec/h264_dec.c
with
3 additions
and
3 deletions
bench/sequential/h264_dec/h264_dec.c
+
3
−
3
View file @
83642e9a
...
@@ -47,8 +47,8 @@ extern signed char h264_dec_mv_array[ 65 ][ 65 ][ 2 ];
...
@@ -47,8 +47,8 @@ extern signed char h264_dec_mv_array[ 65 ][ 65 ][ 2 ];
extern
short
h264_dec_list_imgUV
[
2
][
45
][
45
];
extern
short
h264_dec_list_imgUV
[
2
][
45
][
45
];
extern
int
h264_dec_img_m7
[
16
][
16
];
extern
int
h264_dec_img_m7
[
16
][
16
];
char
h264_dec_img_mpr
[
7
][
7
];
signed
char
h264_dec_img_mpr
[
7
][
7
];
char
h264_dec_dec_picture_imgUV
[
2
][
64
][
54
];
signed
char
h264_dec_dec_picture_imgUV
[
2
][
64
][
54
];
struct
h264_dec_img_par
h264_dec_img
;
struct
h264_dec_img_par
h264_dec_img
;
...
@@ -66,7 +66,7 @@ void h264_dec_init ()
...
@@ -66,7 +66,7 @@ void h264_dec_init ()
{
{
unsigned
int
i
;
unsigned
int
i
;
unsigned
char
*
p
;
unsigned
char
*
p
;
volatile
char
bitmask
=
0
;
volatile
signed
char
bitmask
=
0
;
/*
/*
Apply volatile XOR-bitmask to entire input array.
Apply volatile XOR-bitmask to entire input array.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment