|
|
|
@@ -229,7 +229,7 @@ static void get_slice_data(ProresContext *ctx, const uint16_t *src, |
|
|
|
/** |
|
|
|
* Write an unsigned rice/exp golomb codeword. |
|
|
|
*/ |
|
|
|
static inline void encode_vlc_codeword(PutBitContext *pb, uint8_t codebook, int val) |
|
|
|
static inline void encode_vlc_codeword(PutBitContext *pb, unsigned codebook, int val) |
|
|
|
{ |
|
|
|
unsigned int rice_order, exp_order, switch_bits, switch_val; |
|
|
|
int exponent; |
|
|
|
@@ -393,7 +393,7 @@ static int encode_slice(AVCodecContext *avctx, const AVFrame *pic, |
|
|
|
return total_size; |
|
|
|
} |
|
|
|
|
|
|
|
static inline int estimate_vlc(uint8_t codebook, int val) |
|
|
|
static inline int estimate_vlc(unsigned codebook, int val) |
|
|
|
{ |
|
|
|
unsigned int rice_order, exp_order, switch_bits, switch_val; |
|
|
|
int exponent; |
|
|
|
|