3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4 * Copyright (c) 2004 Alex Beregszaszi
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 /* From libavutil/common.h */
25 extern const uint8_t ff_log2_tab
[256];
27 static inline int av_log2(unsigned int v
)
48 * exp golomb vlc stuff
49 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi
54 * read unsigned golomb rice code (jpegls).
56 static inline int get_ur_golomb_jpegls(GetBitContext
*gb
, int k
, int limit
, int esc_len
){
62 buf
=GET_CACHE(re
, gb
);
66 if(log
- k
>= 32-MIN_CACHE_BITS
+(MIN_CACHE_BITS
==32) && 32-log
< limit
){
69 LAST_SKIP_BITS(re
, gb
, 32 + k
- log
);
75 for(i
=0; SHOW_UBITS(re
, gb
, 1) == 0; i
++){
76 LAST_SKIP_BITS(re
, gb
, 1);
83 buf
= SHOW_UBITS(re
, gb
, k
);
84 LAST_SKIP_BITS(re
, gb
, k
);
91 }else if(i
== limit
- 1){
92 buf
= SHOW_UBITS(re
, gb
, esc_len
);
93 LAST_SKIP_BITS(re
, gb
, esc_len
);
103 * read signed golomb rice code (flac).
105 static inline int get_sr_golomb_flac(GetBitContext
*gb
, int k
, int limit
, int esc_len
){
106 int v
= get_ur_golomb_jpegls(gb
, k
, limit
, esc_len
);
107 return (v
>>1) ^ -(v
&1);
111 * read unsigned golomb rice code (shorten).
113 #define get_ur_golomb_shorten(gb, k) get_ur_golomb_jpegls(gb, k, INT_MAX, 0)
115 static inline unsigned int get_ur_golomb_shorten(GetBitContext *gb, int k){
116 return get_ur_golomb_jpegls(gb, k, INT_MAX, 0);
121 * read signed golomb rice code (shorten).
123 static inline int get_sr_golomb_shorten(GetBitContext
* gb
, int k
)
125 int uvar
= get_ur_golomb_jpegls(gb
, k
+ 1, INT_MAX
, 0);