diff --git a/vp9/common/x86/vp9_idct_intrin_sse2.c b/vp9/common/x86/vp9_idct_intrin_sse2.c index d44c7e2a0e766342ae21a689939c6ff96cb67e9a..9e9d632b37c096c76529732b4bede4ca30f3c095 100644 --- a/vp9/common/x86/vp9_idct_intrin_sse2.c +++ b/vp9/common/x86/vp9_idct_intrin_sse2.c @@ -1014,7 +1014,7 @@ void vp9_short_idct8x8_10_add_sse2(int16_t *input, uint8_t *dest, int stride) { 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 @@ void vp9_short_idct8x8_10_add_sse2(int16_t *input, uint8_t *dest, int stride) { } // Stage2 - { + { //NOLINT const __m128i lo_04 = _mm_unpacklo_epi16(in0, in2); const __m128i lo_26 = _mm_unpacklo_epi16(in1, in3); @@ -1069,7 +1069,7 @@ void vp9_short_idct8x8_10_add_sse2(int16_t *input, uint8_t *dest, int stride) { } // 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 @@ void vp9_short_idct32x32_add_sse2(int16_t *input, uint8_t *dest, int stride) { dest += 8 - (stride * 32); } } -} +} //NOLINT diff --git a/vp9/common/x86/vp9_postproc_x86.h b/vp9/common/x86/vp9_postproc_x86.h index b0e8b181f0eba0c281fd8cf1d898203f0c371d3b..8870215a27b7640066857fd71d1a7c07c4f8c07a 100644 --- a/vp9/common/x86/vp9_postproc_x86.h +++ b/vp9/common/x86/vp9_postproc_x86.h @@ -61,4 +61,4 @@ extern prototype_postproc_addnoise(vp9_plane_add_noise_wmt); #endif #endif -#endif +#endif // VP9_COMMON_X86_VP9_POSTPROC_X86_H_