Merge "Use the aom_writer type rather than the tag in calling code." into nextgenv2

This commit is contained in:
Alex Converse
2016-09-19 21:50:55 +00:00
committed by Gerrit Code Review

View File

@@ -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,