Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
754e60a6
Commit
754e60a6
authored
14 years ago
by
John Koleszar
Browse files
Options
Download
Patches
Plain Diff
dixie: fix 64 bit integer promotion issue.
Change-Id: I8efbed8fc79f9c1da3c84434c5b54c5100cbff0b
parent
da425579
dixie
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp8/dixie/modemv.c
+3
-3
vp8/dixie/modemv.c
vp8/dixie/modemv.h
+3
-3
vp8/dixie/modemv.h
with
6 additions
and
6 deletions
vp8/dixie/modemv.c
+
3
−
3
View file @
754e60a6
...
...
@@ -578,9 +578,9 @@ decode_mvs(struct vp8_decoder_ctx *ctx,
void
vp8_dixie_modemv_process_row
(
struct
vp8_decoder_ctx
*
ctx
,
struct
bool_decoder
*
bool
,
unsigned
int
row
,
unsigned
int
start_col
,
unsigned
int
num_cols
)
int
row
,
int
start_col
,
int
num_cols
)
{
struct
mb_info
*
above
,
*
this
;
unsigned
int
col
;
...
...
This diff is collapsed.
Click to expand it.
vp8/dixie/modemv.h
+
3
−
3
View file @
754e60a6
...
...
@@ -17,8 +17,8 @@ vp8_dixie_modemv_init(struct vp8_decoder_ctx *ctx);
void
vp8_dixie_modemv_process_row
(
struct
vp8_decoder_ctx
*
ctx
,
struct
bool_decoder
*
bool
,
unsigned
int
row
,
unsigned
int
start_col
,
unsigned
int
num_cols
);
int
row
,
int
start_col
,
int
num_cols
);
#endif
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets