diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-03-10 10:57:51 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-03-10 10:58:37 +0100 |
commit | 5eacbb53289570834f9a1acb15fd406ea224eef6 (patch) | |
tree | f1f0637fe6fc5c7b0bf4dfb0d897c35b4767784e /libavcodec | |
parent | e854b8f9f4097a3c560b746895e9da6721aa4cdb (diff) | |
download | ffmpeg-5eacbb53289570834f9a1acb15fd406ea224eef6.tar.gz |
golomb: Add a get_se_golomb_long
Useful in libavformat mostly.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/golomb.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h index efe5059133..ce3500f8a9 100644 --- a/libavcodec/golomb.h +++ b/libavcodec/golomb.h @@ -206,6 +206,18 @@ static inline int get_se_golomb(GetBitContext *gb) } } +static inline int get_se_golomb_long(GetBitContext *gb) +{ + unsigned int buf = get_ue_golomb_long(gb); + + if (buf & 1) + buf = -(buf >> 1); + else + buf = (buf >> 1); + + return buf; +} + static inline int svq3_get_se_golomb(GetBitContext *gb) { unsigned int buf; |