Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-20 14:05:34 +0300
committerClément Bœsch <u@pkh.me>2017-03-20 14:06:51 +0300
commit7c54e5870f2c2fb095d03d670215e2183bfbfee9 (patch)
tree65a8c1bd3bd8b8ffc9c54d2f26be9866ecee1a07 /libavcodec/ppc
parent9e8fd5c423da48443372917175fcdc68b4613ee0 (diff)
parent6ce93757ee6b81fe727bfdc9f546fd0ddf9139c3 (diff)
Merge commit '6ce93757ee6b81fe727bfdc9f546fd0ddf9139c3'
* commit '6ce93757ee6b81fe727bfdc9f546fd0ddf9139c3': ppc: Update #endif comments This commit is mostly a noop as we seem to support PPC LE (see 902ce2a6c4364fd27ae3f1db78cd275caf79c006). Only the h264 chunks are updated. Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r--libavcodec/ppc/h264qpel_template.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ppc/h264qpel_template.c b/libavcodec/ppc/h264qpel_template.c
index 5ff72e32f0..2f25e74840 100644
--- a/libavcodec/ppc/h264qpel_template.c
+++ b/libavcodec/ppc/h264qpel_template.c
@@ -189,7 +189,7 @@ static void PREFIX_h264_qpel16_h_lowpass_altivec(uint8_t *dst,
dst += dstStride;
}
}
-#endif
+#endif /* PREFIX_h264_qpel16_h_lowpass_altivec */
/* this code assume stride % 16 == 0 */
#ifdef PREFIX_h264_qpel16_v_lowpass_altivec
@@ -291,7 +291,7 @@ static void PREFIX_h264_qpel16_v_lowpass_altivec(uint8_t *dst,
dst += dstStride;
}
}
-#endif
+#endif /* PREFIX_h264_qpel16_v_lowpass_altivec */
/* this code assume stride % 16 == 0 *and* tmp is properly aligned */
#ifdef PREFIX_h264_qpel16_hv_lowpass_altivec
@@ -481,4 +481,4 @@ static void PREFIX_h264_qpel16_hv_lowpass_altivec(uint8_t *dst, int16_t *tmp,
dst += dstStride;
}
}
-#endif
+#endif /* PREFIX_h264_qpel16_hv_lowpass_altivec */