ref: dd2a475e43bf251f8e13b9d200f5ca88a5be03c1
parent: badd32d91417d780d4eee465c212b755a8f1307b
parent: 84fccfe47565c3f134afce7d9dda62271b9a53cd
author: Jingning Han <[email protected]>
date: Fri Aug 26 13:19:12 EDT 2016
Merge "Fix VS build warnings in vp9_alt_ref_aq files"
--- a/vp9/encoder/vp9_alt_ref_aq.h
+++ b/vp9/encoder/vp9_alt_ref_aq.h
@@ -95,7 +95,8 @@
* \param self Instance of the class
* \param cpi Encoder context
*/
-void vp9_alt_ref_aq_setup_mode(struct ALT_REF_AQ *self, struct VP9_COMP *cpi);
+void vp9_alt_ref_aq_setup_mode(struct ALT_REF_AQ *const self,
+ struct VP9_COMP *const cpi);
/*!\brief Set up LOOKAHEAD_AQ segmentation map and delta quantizers
*
@@ -102,7 +103,8 @@
* \param self Instance of the class
* \param cpi Encoder context
*/
-void vp9_alt_ref_aq_setup_map(struct ALT_REF_AQ *self, struct VP9_COMP *cpi);
+void vp9_alt_ref_aq_setup_map(struct ALT_REF_AQ *const self,
+ struct VP9_COMP *const cpi);
/*!\brief Restore main segmentation map mode and reset the class variables
*
@@ -109,13 +111,14 @@
* \param self Instance of the class
* \param cpi Encoder context
*/
-void vp9_alt_ref_aq_unset_all(struct ALT_REF_AQ *self, struct VP9_COMP *cpi);
+void vp9_alt_ref_aq_unset_all(struct ALT_REF_AQ *const self,
+ struct VP9_COMP *const cpi);
/*!\brief Destructor
*
* \param self Instance of the class
*/
-void vp9_alt_ref_aq_destroy(struct ALT_REF_AQ *self);
+void vp9_alt_ref_aq_destroy(struct ALT_REF_AQ *const self);
#ifdef __cplusplus
} // extern "C"