From 0a2dc14fc6f9d813dfa2f8b3d49cbb718b84117f Mon Sep 17 00:00:00 2001 From: ChenHengming Date: Thu, 24 Sep 2015 17:02:36 +0000 Subject: [PATCH] [h264d_bitread]: fix macro on linux git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@301 6e48237b-75ef-9749-8fc9-41990f28c85a --- mpp/codec/dec/h264/h264d_bitread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpp/codec/dec/h264/h264d_bitread.h b/mpp/codec/dec/h264/h264d_bitread.h index c9d3e5b8..d4408c5f 100644 --- a/mpp/codec/dec/h264/h264d_bitread.h +++ b/mpp/codec/dec/h264/h264d_bitread.h @@ -55,7 +55,7 @@ typedef void (*LOG_FUNC)(void *ctx, ...); #define READ_BITS(ret, bitctx, num_bits, out, ...) \ do { \ if (COUNT_ARG(__VA_ARGS__)) \ - __READ_BITS_WITH_LOG(ret, bitctx, num_bits, out, __VA_ARGS__); \ + __READ_BITS_WITH_LOG(ret, bitctx, num_bits, out, ## __VA_ARGS__); \ else \ __READ_BITS_NO_LOG(ret, bitctx, num_bits, out); \ } while (0)