Incorrect parameter passed into vp8_stuff_mb
Should be MACROBLOCK, not MACROBLOCKD Change-Id: I0353bbdf085a181ae2ac1f0b96849b38566e9f6a
This commit is contained in:
parent
80fe4723d2
commit
4d9791e2b1
@ -33,7 +33,7 @@
|
||||
#endif
|
||||
#include "encodeframe.h"
|
||||
|
||||
extern void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCKD *x, TOKENEXTRA **t) ;
|
||||
extern void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) ;
|
||||
extern void vp8_calc_ref_frame_costs(int *ref_frame_cost,
|
||||
int prob_intra,
|
||||
int prob_last,
|
||||
@ -1385,7 +1385,7 @@ int vp8cx_encode_inter_macroblock
|
||||
}
|
||||
else
|
||||
{
|
||||
vp8_stuff_mb(cpi, xd, t);
|
||||
vp8_stuff_mb(cpi, x, t);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user