ref: fd09be098425c1a65f5b8bc807cf2ac0271ce8d6
parent: e3c1f0880f10afab56791a42c30d42e2991d90ec
parent: 152fd59964d7419a6035eca8421bda4e7d29e4d8
author: Jim Bankoski <[email protected]>
date: Mon Sep 30 06:53:30 EDT 2013
Merge changes I2b2af1dd,Id2cc5c82 * changes: fixed cpp lint issue in vp9_postproc_x86 nolintify intrinsic idct file
--- a/vp9/common/x86/vp9_idct_intrin_sse2.c
+++ b/vp9/common/x86/vp9_idct_intrin_sse2.c
@@ -1014,7 +1014,7 @@
TRANSPOSE_8X4(in0, in1, in2, in3, in0, in1, in2, in3)
// Stage1
- {
+ { //NOLINT
const __m128i lo_17 = _mm_unpackhi_epi16(in0, in3);
const __m128i lo_35 = _mm_unpackhi_epi16(in1, in2);
@@ -1039,7 +1039,7 @@
}
// Stage2
- {
+ { //NOLINT
const __m128i lo_04 = _mm_unpacklo_epi16(in0, in2);
const __m128i lo_26 = _mm_unpacklo_epi16(in1, in3);
@@ -1069,7 +1069,7 @@
}
// Stage3
- {
+ { //NOLINT
const __m128i lo_56 = _mm_unpacklo_epi16(stp2_5, stp2_6);
stp1_0 = _mm_adds_epi16(stp2_0, stp2_3);
stp1_1 = _mm_adds_epi16(stp2_1, stp2_2);
@@ -3548,4 +3548,4 @@
dest += 8 - (stride * 32);
}
}
-}
+} //NOLINT
--- a/vp9/common/x86/vp9_postproc_x86.h
+++ b/vp9/common/x86/vp9_postproc_x86.h
@@ -61,4 +61,4 @@
#endif
#endif
-#endif
+#endif // VP9_COMMON_X86_VP9_POSTPROC_X86_H_