summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-08-26 08:24:01 -0600
committerBrian Paul <brianp@vmware.com>2011-08-26 08:24:01 -0600
commit005aea891ec5814c3c05f20e5a65ca61db3b1b10 (patch)
treee2b494cfc9b3c9f52e647df037fb7f0373c2f3bf /src/gallium/auxiliary
parentb59715b13afa6885fe7950677df3be2fd89dee47 (diff)
downloadexternal_mesa3d-005aea891ec5814c3c05f20e5a65ca61db3b1b10.zip
external_mesa3d-005aea891ec5814c3c05f20e5a65ca61db3b1b10.tar.gz
external_mesa3d-005aea891ec5814c3c05f20e5a65ca61db3b1b10.tar.bz2
g3dvl: s/inline/INLINE/ to fix MSVC build
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/vl/vl_mpeg12_decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c b/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
index e0b477d..7d53168 100644
--- a/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
+++ b/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
@@ -238,7 +238,7 @@ cleanup_mc_buffer(struct vl_mpeg12_buffer *buf)
vl_mc_cleanup_buffer(&buf->mc[i]);
}
-static inline void
+static INLINE void
MacroBlockTypeToPipeWeights(const struct pipe_mpeg12_macroblock *mb, unsigned weights[2])
{
assert(mb);
@@ -272,7 +272,7 @@ MacroBlockTypeToPipeWeights(const struct pipe_mpeg12_macroblock *mb, unsigned we
}
}
-static inline struct vl_motionvector
+static INLINE struct vl_motionvector
MotionVectorToPipe(const struct pipe_mpeg12_macroblock *mb, unsigned vector,
unsigned field_select_mask, unsigned weight)
{
@@ -323,7 +323,7 @@ MotionVectorToPipe(const struct pipe_mpeg12_macroblock *mb, unsigned vector,
return mv;
}
-static inline void
+static INLINE void
UploadYcbcrBlocks(struct vl_mpeg12_decoder *dec,
struct vl_mpeg12_buffer *buf,
const struct pipe_mpeg12_macroblock *mb)