Searched defs:MbP (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/media/libstagefright/codecs/avc/common/src/
H A Ddeblock.cpp60 //static void GetStrength(AVCCommonObj *video, uint8 *Strength, AVCMacroblock* MbP, AVCMacroblock* MbQ, int dir, int edge);
61 static void GetStrength_Edge0(uint8 *Strength, AVCMacroblock* MbP, AVCMacroblock* MbQ, int dir);
292 AVCMacroblock *MbP, *MbQ; local
317 /* NOTE: edge=0 and edge=1~3 are separate cases because of the difference of MbP, index A and indexB calculation */
318 /* for edge = 1~3, MbP, indexA and indexB remain the same, and thus there is no need to re-calculate them for each edge */
325 MbP = MbQ - 1;
326 //GetStrength(video, Strength, MbP, MbQ, 0, 0); // Strength for 4 blks in 1 stripe, 0 => vertical edge
327 GetStrength_Edge0(Strength, MbP, MbQ, 0);
332 QP = (MbP->QPy + MbQ->QPy + 1) >> 1; // Average QP of the two blocks;
349 QPC = (MbP
530 GetStrength_Edge0(uint8 *Strength, AVCMacroblock* MbP, AVCMacroblock* MbQ, int dir) argument
[all...]

Completed in 127 milliseconds