Removing redundant 'extern' keyword.

Change-Id: Ie51306689c0dc527a8aa12d3984389dd8f360dea
This commit is contained in:
Dmitry Kovalev
2013-09-24 15:13:09 -07:00
parent b1c58f57a7
commit 12d57a9409
4 changed files with 11 additions and 12 deletions

View File

@@ -337,10 +337,10 @@ void vp9_frame_init_quantizer(VP9_COMP *cpi) {
vp9_mb_init_quantizer(cpi, &cpi->mb);
}
void vp9_set_quantizer(struct VP9_COMP *cpi, int Q) {
void vp9_set_quantizer(struct VP9_COMP *cpi, int q) {
VP9_COMMON *cm = &cpi->common;
cm->base_qindex = Q;
cm->base_qindex = q;
// if any of the delta_q values are changing update flag will
// have to be set.