- 论坛徽章:
- 0
|
这是上面的xvid代码,经过宏展开后的代码,一目了然,他的目的。
- #line 1 "c:\\program files\\microsoft visual studio\\myprojects\\testadvancedmacro\\selfinclude.cpp"
- static const int32_t FIR_Tab_8[9][8] = {
- { 14, -3, 2, -1, 0, 0, 0, 0 },
- { 23, 19, -6, 3, -1, 0, 0, 0 },
- { -7, 20, 20, -6, 3, -1, 0, 0 },
- { 3, -6, 20, 20, -6, 3, -1, 0 },
- { -1, 3, -6, 20, 20, -6, 3, -1 },
- { 0, -1, 3, -6, 20, 20, -6, 3 },
- { 0, 0, -1, 3, -6, 20, 20, -7 },
- { 0, 0, 0, -1, 3, -6, 19, 23 },
- { 0, 0, 0, 0, -1, 2, -3, 14 }
- };
- static const int32_t FIR_Tab_16[17][16] = {
- { 14, -3, 2, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- { 23, 19, -6, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- { -7, 20, 20, -6, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- { 3, -6, 20, 20, -6, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- { -1, 3, -6, 20, 20, -6, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
- { 0, -1, 3, -6, 20, 20, -6, 3, -1, 0, 0, 0, 0, 0, 0, 0 },
- { 0, 0, -1, 3, -6, 20, 20, -6, 3, -1, 0, 0, 0, 0, 0, 0 },
- { 0, 0, 0, -1, 3, -6, 20, 20, -6, 3, -1, 0, 0, 0, 0, 0 },
- { 0, 0, 0, 0, -1, 3, -6, 20, 20, -6, 3, -1, 0, 0, 0, 0 },
- { 0, 0, 0, 0, 0, -1, 3, -6, 20, 20, -6, 3, -1, 0, 0, 0 },
- { 0, 0, 0, 0, 0, 0, -1, 3, -6, 20, 20, -6, 3, -1, 0, 0 },
- { 0, 0, 0, 0, 0, 0, 0, -1, 3, -6, 20, 20, -6, 3, -1, 0 },
- { 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -6, 20, 20, -6, 3, -1 },
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -6, 20, 20, -6, 3 },
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -6, 20, 20, -7 },
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -6, 19, 23 },
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -3, 14 }
- };
- #line 1 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- static
- void H_Pass_16_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- for(i=0; i<=16; ++i)
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * Src[i];
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (Dst[i]) = (C);
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_16_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- const uint8_t *S = Src++;
- uint8_t *D = Dst++;
- for(i=0; i<=16; ++i) {
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * S[0];
- S += BpS;
- }
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (D[0]) = (C);
- D += BpS;
- }
- }
- }
- static
- void H_Pass_Avrg_16_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- for(i=0; i<=16; ++i)
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * Src[i];
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i]+1-Rnd) >> 1;
- (Dst[i]) = (C);
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void H_Pass_Avrg_Up_16_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- for(i=0; i<=16; ++i)
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * Src[i];
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i+1]+1-Rnd) >> 1;
- (Dst[i]) = (C);
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_Avrg_16_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=16; ++i) {
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * S[0];
- S += BpS;
- }
- S = Src;
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = (C);
- D += BpS;
- S += BpS;
- }
- Src++;
- Dst++;
- }
- }
- static
- void V_Pass_Avrg_Up_16_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=16; ++i) {
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * S[0];
- S += BpS;
- }
- S = Src + BpS;
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = (C);
- D += BpS;
- S += BpS;
- }
- Dst++;
- Src++;
- }
- }
- #line 265 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- #line 58 "c:\\program files\\microsoft visual studio\\myprojects\\testadvancedmacro\\selfinclude.cpp"
- #line 1 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- static
- void H_Pass_16_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- for(i=0; i<=16; ++i)
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * Src[i];
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (Dst[i]) = ( (C)+(Dst[i])+1 ) >> 1;
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_16_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- const uint8_t *S = Src++;
- uint8_t *D = Dst++;
- for(i=0; i<=16; ++i) {
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * S[0];
- S += BpS;
- }
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (D[0]) = ( (C)+(D[0])+1 ) >> 1;
- D += BpS;
- }
- }
- }
- static
- void H_Pass_Avrg_16_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- for(i=0; i<=16; ++i)
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * Src[i];
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i]+1-Rnd) >> 1;
- (Dst[i]) = ( (C)+(Dst[i])+1 ) >> 1;
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void H_Pass_Avrg_Up_16_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- for(i=0; i<=16; ++i)
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * Src[i];
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i+1]+1-Rnd) >> 1;
- (Dst[i]) = ( (C)+(Dst[i])+1 ) >> 1;
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_Avrg_16_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=16; ++i) {
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * S[0];
- S += BpS;
- }
- S = Src;
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = ( (C)+(D[0])+1 ) >> 1;
- D += BpS;
- S += BpS;
- }
- Src++;
- Dst++;
- }
- }
- static
- void V_Pass_Avrg_Up_16_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[16] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=16; ++i) {
- for(k=0; k<16; ++k)
- Sums[k] += FIR_Tab_16[i][k] * S[0];
- S += BpS;
- }
- S = Src + BpS;
- for(i=0; i<16; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = ( (C)+(D[0])+1 ) >> 1;
- D += BpS;
- S += BpS;
- }
- Dst++;
- Src++;
- }
- }
- #line 265 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- #line 69 "c:\\program files\\microsoft visual studio\\myprojects\\testadvancedmacro\\selfinclude.cpp"
- #line 1 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- static
- void H_Pass_8_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- for(i=0; i<=8; ++i)
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * Src[i];
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (Dst[i]) = (C);
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_8_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- const uint8_t *S = Src++;
- uint8_t *D = Dst++;
- for(i=0; i<=8; ++i) {
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * S[0];
- S += BpS;
- }
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (D[0]) = (C);
- D += BpS;
- }
- }
- }
- static
- void H_Pass_Avrg_8_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- for(i=0; i<=8; ++i)
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * Src[i];
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i]+1-Rnd) >> 1;
- (Dst[i]) = (C);
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void H_Pass_Avrg_Up_8_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- for(i=0; i<=8; ++i)
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * Src[i];
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i+1]+1-Rnd) >> 1;
- (Dst[i]) = (C);
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_Avrg_8_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=8; ++i) {
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * S[0];
- S += BpS;
- }
- S = Src;
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = (C);
- D += BpS;
- S += BpS;
- }
- Src++;
- Dst++;
- }
- }
- static
- void V_Pass_Avrg_Up_8_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=8; ++i) {
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * S[0];
- S += BpS;
- }
- S = Src + BpS;
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = (C);
- D += BpS;
- S += BpS;
- }
- Dst++;
- Src++;
- }
- }
- #line 265 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- #line 87 "c:\\program files\\microsoft visual studio\\myprojects\\testadvancedmacro\\selfinclude.cpp"
- #line 1 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- static
- void H_Pass_8_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- for(i=0; i<=8; ++i)
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * Src[i];
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (Dst[i]) = ( (C)+(Dst[i])+1 ) >> 1;
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_8_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- const uint8_t *S = Src++;
- uint8_t *D = Dst++;
- for(i=0; i<=8; ++i) {
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * S[0];
- S += BpS;
- }
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- (D[0]) = ( (C)+(D[0])+1 ) >> 1;
- D += BpS;
- }
- }
- }
- static
- void H_Pass_Avrg_8_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- for(i=0; i<=8; ++i)
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * Src[i];
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i]+1-Rnd) >> 1;
- (Dst[i]) = ( (C)+(Dst[i])+1 ) >> 1;
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void H_Pass_Avrg_Up_8_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t H, int32_t BpS, int32_t Rnd)
- {
- while(H-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- for(i=0; i<=8; ++i)
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * Src[i];
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd ) >> 5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = (C+Src[i+1]+1-Rnd) >> 1;
- (Dst[i]) = ( (C)+(Dst[i])+1 ) >> 1;
- }
- Src += BpS;
- Dst += BpS;
- }
- }
- static
- void V_Pass_Avrg_8_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=8; ++i) {
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * S[0];
- S += BpS;
- }
- S = Src;
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = ( (C)+(D[0])+1 ) >> 1;
- D += BpS;
- S += BpS;
- }
- Src++;
- Dst++;
- }
- }
- static
- void V_Pass_Avrg_Up_8_Add_C(uint8_t *Dst, const uint8_t *Src, int32_t W, int32_t BpS, int32_t Rnd)
- {
- while(W-->0) {
- int32_t i, k;
- int32_t Sums[8] = { 0 };
- const uint8_t *S = Src;
- uint8_t *D = Dst;
- for(i=0; i<=8; ++i) {
- for(k=0; k<8; ++k)
- Sums[k] += FIR_Tab_8[i][k] * S[0];
- S += BpS;
- }
- S = Src + BpS;
- for(i=0; i<8; ++i) {
- int32_t C = ( Sums[i] + 16-Rnd )>>5;
- if (C<0) C = 0; else if (C>255) C = 255;
- C = ( C+S[0]+1-Rnd ) >> 1;
- (D[0]) = ( (C)+(D[0])+1 ) >> 1;
- D += BpS;
- S += BpS;
- }
- Dst++;
- Src++;
- }
- }
- #line 265 "c:\\\\program files\\\\microsoft visual studio\\\\myprojects\\\\testadvancedmacro\\\\selfinclude.cpp"
- #line 98 "c:\\program files\\microsoft visual studio\\myprojects\\testadvancedmacro\\selfinclude.cpp"
- #line 106 "c:\\program files\\microsoft visual studio\\myprojects\\testadvancedmacro\\selfinclude.cpp"
复制代码
实现了简单的C++中的template中的功能。对照上面的宏展开后的代码,分析起来就很容易明白上面代码的含义
[ 本帖最后由 hawk2012 于 2007-1-31 10:25 编辑 ] |
|