summaryrefslogtreecommitdiff
path: root/libavcodec/get_bits.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-12-17 19:40:16 +0000
committerMans Rullgard <mans@mansr.com>2011-12-17 20:04:28 +0000
commit86a10281c7f6204b3ac1253718971b1f8c106699 (patch)
tree3e15f05c7236564c87a12000e97aaa7296e6d455 /libavcodec/get_bits.h
parent77d88b872d8cbb42738ede2d4fc098c16f204236 (diff)
get_bits: remove LAST_SKIP_CACHE macro
This macro is empty since the removal of the A32 bitstream reader. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/get_bits.h')
-rw-r--r--libavcodec/get_bits.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h
index 9376b117f2..8abfde1150 100644
--- a/libavcodec/get_bits.h
+++ b/libavcodec/get_bits.h
@@ -108,11 +108,8 @@ SKIP_CACHE(name, gb, num)
SKIP_COUNTER(name, gb, num)
will increment the internal bit counter (see SKIP_CACHE & SKIP_BITS)
-LAST_SKIP_CACHE(name, gb, num)
- will remove the next num bits from the cache if it is needed for UPDATE_CACHE otherwise it will do nothing
-
LAST_SKIP_BITS(name, gb, num)
- is equivalent to LAST_SKIP_CACHE; SKIP_COUNTER
+ like SKIP_BITS, to be used if next call is UPDATE_CACHE or CLOSE_READER
for examples see get_bits, show_bits, skip_bits, get_vlc
*/
@@ -168,7 +165,6 @@ for examples see get_bits, show_bits, skip_bits, get_vlc
} while (0)
#define LAST_SKIP_BITS(name, gb, num) SKIP_COUNTER(name, gb, num)
-#define LAST_SKIP_CACHE(name, gb, num)
#ifdef ALT_BITSTREAM_READER_LE
# define SHOW_UBITS(name, gb, num) zero_extend(name##_cache, num)