From d4b77deab0304c7ba0a02a27b4b01e6af8334cbb Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 18 Oct 2009 17:24:18 +0200 Subject: [PATCH] Remove unused show_bits(). --- bitstream.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/bitstream.h b/bitstream.h index 07c65389..e89ae136 100644 --- a/bitstream.h +++ b/bitstream.h @@ -103,18 +103,6 @@ static inline unsigned int get_bits(struct getbit_context *s, int n) return tmp; } -/** - * Show 1-17 bits. - */ -static inline unsigned int show_bits(struct getbit_context *s, int n) -{ - register int tmp; - OPEN_READER(re, s) - UPDATE_CACHE(re, s) - tmp = SHOW_UBITS(re, s, n); - return tmp; -} - static inline void skip_bits(struct getbit_context *s, int n) { /* gcc seems to optimize this to s->index+=n for the ALT_READER :)) */ -- 2.39.2