diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-09-01 21:03:17 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2007-09-01 21:03:17 +0000 |
commit | becc0ef95b2a6dc7c4127f5cd14ca948f980ac45 (patch) | |
tree | aef06388aaf7ee2a103db78cae4c558b75b58928 /libavcodec/unary.h | |
parent | 9d14ffbccee7e6e3f521aa0aa543d9e61b07514f (diff) | |
download | ffmpeg-becc0ef95b2a6dc7c4127f5cd14ca948f980ac45.tar.gz |
Remove reimplementation of get_unary.
Based on a patch by Alex Beregszaszi.
Originally committed as revision 10279 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/unary.h')
-rw-r--r-- | libavcodec/unary.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 */ |