vp8enci.h: cosmetics: fix '*' placement

associate with the type

Change-Id: Icf94f11bf79f6ccee3150e27b228755f8f3f0f37
This commit is contained in:
James Zern 2014-08-02 19:10:12 -07:00
parent b5a36cc9ad
commit b47fb00ac0

View File

@ -457,10 +457,10 @@ struct VP8Encoder {
VP8MBInfo* mb_info_; // contextual macroblock infos (mb_w_ + 1) VP8MBInfo* mb_info_; // contextual macroblock infos (mb_w_ + 1)
uint8_t* preds_; // predictions modes: (4*mb_w+1) * (4*mb_h+1) uint8_t* preds_; // predictions modes: (4*mb_w+1) * (4*mb_h+1)
uint32_t* nz_; // non-zero bit context: mb_w+1 uint32_t* nz_; // non-zero bit context: mb_w+1
uint8_t *y_top_; // top luma samples. uint8_t* y_top_; // top luma samples.
uint8_t *uv_top_; // top u/v samples. uint8_t* uv_top_; // top u/v samples.
// U and V are packed into 16 bytes (8 U + 8 V) // U and V are packed into 16 bytes (8 U + 8 V)
LFStats *lf_stats_; // autofilter stats (if NULL, autofilter is off) LFStats* lf_stats_; // autofilter stats (if NULL, autofilter is off)
}; };
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------