Incorrect parameter passed into vp8_stuff_mb

Should be MACROBLOCK, not MACROBLOCKD

Change-Id: I0353bbdf085a181ae2ac1f0b96849b38566e9f6a
This commit is contained in:
Scott LaVarnway 2012-11-06 17:35:02 -08:00
parent 80fe4723d2
commit 4d9791e2b1

View File

@ -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);
}
}