Merge "Use the aom_writer type rather than the tag in calling code." into nextgenv2
diff --git a/av1/encoder/subexp.h b/av1/encoder/subexp.h
index 93257a2..25750bb 100644
--- a/av1/encoder/subexp.h
+++ b/av1/encoder/subexp.h
@@ -16,14 +16,12 @@
extern "C" {
#endif
+#include "aom_dsp/bitwriter.h"
#include "aom_dsp/prob.h"
-struct aom_writer;
+void av1_write_prob_diff_update(aom_writer *w, aom_prob newp, aom_prob oldp);
-void av1_write_prob_diff_update(struct aom_writer *w, aom_prob newp,
- aom_prob oldp);
-
-void av1_cond_prob_diff_update(struct aom_writer *w, aom_prob *oldp,
+void av1_cond_prob_diff_update(aom_writer *w, aom_prob *oldp,
const unsigned int ct[2]);
int av1_prob_diff_update_savings_search(const unsigned int *ct, aom_prob oldp,