summaryrefslogtreecommitdiff
path: root/libavcodec/golomb.h
diff options
context:
space:
mode:
authorMarco Gerards <mgerards@xs4all.nl>2007-08-15 12:59:27 +0000
committerMarco Gerards <mgerards@xs4all.nl>2007-08-15 12:59:27 +0000
commit9df4ce5e5be3f518a79af69e241fd00f1c56cae5 (patch)
tree023b03bdb9d49123fa100d782e02b6f572f2e2f4 /libavcodec/golomb.h
parent6d324c813fba2b5b59fcba108105c52a3591d96c (diff)
Make the Golomb decoder work for Dirac
Originally committed as revision 10119 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/golomb.h')
-rw-r--r--libavcodec/golomb.h43
1 files changed, 32 insertions, 11 deletions
diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h
index ab92c6efd4..ec9dcae80a 100644
--- a/libavcodec/golomb.h
+++ b/libavcodec/golomb.h
@@ -43,6 +43,7 @@ extern const uint8_t ff_ue_golomb_len[256];
extern const uint8_t ff_interleaved_golomb_vlc_len[256];
extern const uint8_t ff_interleaved_ue_golomb_vlc_code[256];
extern const int8_t ff_interleaved_se_golomb_vlc_code[256];
+extern const uint8_t ff_interleaved_dirac_golomb_vlc_code[256];
/**
@@ -75,7 +76,6 @@ static inline int get_ue_golomb(GetBitContext *gb){
static inline int svq3_get_ue_golomb(GetBitContext *gb){
uint32_t buf;
- int log;
OPEN_READER(re, gb);
UPDATE_CACHE(re, gb);
@@ -88,21 +88,24 @@ static inline int svq3_get_ue_golomb(GetBitContext *gb){
return ff_interleaved_ue_golomb_vlc_code[buf];
}else{
- LAST_SKIP_BITS(re, gb, 8);
- UPDATE_CACHE(re, gb);
- buf |= 1 | (GET_CACHE(re, gb) >> 8);
+ int ret = 1;
- if((buf & 0xAAAAAAAA) == 0)
- return INVALID_VLC;
+ while (1) {
+ buf >>= 32 - 8;
+ LAST_SKIP_BITS(re, gb, FFMIN(ff_interleaved_golomb_vlc_len[buf], 8));
- for(log=31; (buf & 0x80000000) == 0; log--){
- buf = (buf << 2) - ((buf << log) >> (log - 1)) + (buf >> 30);
+ if (ff_interleaved_golomb_vlc_len[buf] != 9){
+ ret <<= (ff_interleaved_golomb_vlc_len[buf] - 1) >> 1;
+ ret |= ff_interleaved_dirac_golomb_vlc_code[buf];
+ break;
+ }
+ ret = (ret << 4) | ff_interleaved_dirac_golomb_vlc_code[buf];
+ UPDATE_CACHE(re, gb);
+ buf = GET_CACHE(re, gb);
}
- LAST_SKIP_BITS(re, gb, 63 - 2*log - 8);
CLOSE_READER(re, gb);
-
- return ((buf << log) >> log) - 1;
+ return ret - 1;
}
}
@@ -192,6 +195,24 @@ static inline int svq3_get_se_golomb(GetBitContext *gb){
}
}
+static inline int dirac_get_se_golomb(GetBitContext *gb){
+ uint32_t buf;
+ uint32_t ret;
+
+ ret = svq3_get_ue_golomb(gb);
+
+ if (ret) {
+ OPEN_READER(re, gb);
+ UPDATE_CACHE(re, gb);
+ buf = SHOW_SBITS(re, gb, 1);
+ LAST_SKIP_BITS(re, gb, 1);
+ ret = (ret ^ buf) - buf;
+ CLOSE_READER(re, gb);
+ }
+
+ return ret;
+}
+
/**
* read unsigned golomb rice code (ffv1).
*/