[FFmpeg-cvslog] avcodec/mips/vp9_idct_msa: Replace __volatile__ by volatile

Michael Niedermayer git at videolan.org
Thu Jul 23 17:45:42 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Jul 23 17:38:01 2015 +0200| [8eff61fd45f1d1872c9f370bdf7e33501a3e6d7a] | committer: Michael Niedermayer

avcodec/mips/vp9_idct_msa: Replace __volatile__ by volatile

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8eff61fd45f1d1872c9f370bdf7e33501a3e6d7a
---

 libavcodec/mips/vp9_idct_msa.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/mips/vp9_idct_msa.c b/libavcodec/mips/vp9_idct_msa.c
index aeb2387..25ea16c 100644
--- a/libavcodec/mips/vp9_idct_msa.c
+++ b/libavcodec/mips/vp9_idct_msa.c
@@ -1177,7 +1177,7 @@ static void vp9_idct16x16_10_colcol_addblk_msa(int16_t *input, uint8_t *dst,
     /* short case just considers top 4 rows as valid output */
     out += 4 * 16;
     for (i = 12; i--;) {
-        __asm__ __volatile__ (
+        __asm__ volatile (
             "sw     $zero,   0(%[out])     \n\t"
             "sw     $zero,   4(%[out])     \n\t"
             "sw     $zero,   8(%[out])     \n\t"
@@ -1938,7 +1938,7 @@ static void vp9_idct32x32_34_colcol_addblk_msa(int16_t *input, uint8_t *dst,
     int16_t tmp_buf[8 * 32] ALLOC_ALIGNED(ALIGNMENT);
 
     for (i = 32; i--;) {
-        __asm__ __volatile__ (
+        __asm__ volatile (
             "sw     $zero,       (%[out_ptr])     \n\t"
             "sw     $zero,      4(%[out_ptr])     \n\t"
             "sw     $zero,      8(%[out_ptr])     \n\t"



More information about the ffmpeg-cvslog mailing list