Use the aom_writer type rather than the tag in calling code.
This makes room for typedefing some other struct to aom_writer. Change-Id: I1e82de1320da00b3e41c90b14f2df45e7628aa89 (cherry picked from commit d69161f8f1eed602e0e5d21f4e6157b674e30cf6)
This commit is contained in:
@@ -16,14 +16,12 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "aom_dsp/bitwriter.h"
|
||||||
#include "aom_dsp/prob.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,
|
void av1_cond_prob_diff_update(aom_writer *w, aom_prob *oldp,
|
||||||
aom_prob oldp);
|
|
||||||
|
|
||||||
void av1_cond_prob_diff_update(struct aom_writer *w, aom_prob *oldp,
|
|
||||||
const unsigned int ct[2]);
|
const unsigned int ct[2]);
|
||||||
|
|
||||||
int av1_prob_diff_update_savings_search(const unsigned int *ct, aom_prob oldp,
|
int av1_prob_diff_update_savings_search(const unsigned int *ct, aom_prob oldp,
|
||||||
|
Reference in New Issue
Block a user