| Index: source/libvpx/vp9/encoder/vp9_subexp.h
|
| diff --git a/source/libvpx/vp9/encoder/vp9_subexp.h b/source/libvpx/vp9/encoder/vp9_subexp.h
|
| index ac54893cf45727f15e1002f06196a15833fbd734..6fbb747e7d368d92b84c487c8669327c480a1d73 100644
|
| --- a/source/libvpx/vp9/encoder/vp9_subexp.h
|
| +++ b/source/libvpx/vp9/encoder/vp9_subexp.h
|
| @@ -16,11 +16,15 @@
|
| extern "C" {
|
| #endif
|
|
|
| -void vp9_write_prob_diff_update(vp9_writer *w,
|
| +#include "vp9/common/vp9_prob.h"
|
| +
|
| +struct vp9_writer;
|
| +
|
| +void vp9_write_prob_diff_update(struct vp9_writer *w,
|
| vp9_prob newp, vp9_prob oldp);
|
|
|
| -void vp9_cond_prob_diff_update(vp9_writer *w, vp9_prob *oldp,
|
| - unsigned int *ct);
|
| +void vp9_cond_prob_diff_update(struct vp9_writer *w, vp9_prob *oldp,
|
| + const unsigned int ct[2]);
|
|
|
| int vp9_prob_diff_update_savings_search(const unsigned int *ct,
|
| vp9_prob oldp, vp9_prob *bestp,
|
|
|