From becc0ef95b2a6dc7c4127f5cd14ca948f980ac45 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 1 Sep 2007 21:03:17 +0000 Subject: Remove reimplementation of get_unary. Based on a patch by Alex Beregszaszi. Originally committed as revision 10279 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/unary.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libavcodec/unary.h') diff --git a/libavcodec/unary.h b/libavcodec/unary.h index 0f600cc4e0..5484be4d56 100644 --- a/libavcodec/unary.h +++ b/libavcodec/unary.h @@ -48,4 +48,9 @@ static inline int get_unary_0_33(GetBitContext *gb) return get_unary(gb, 0, 33); } +static inline int get_unary_0_9(GetBitContext *gb) +{ + return get_unary(gb, 0, 9); +} + #endif /* AVCODEC_UNARY_H */ -- cgit v1.2.3