Lines Matching refs:get_bits
42 * optionally, the get_bits API can check to ensure that we
72 static inline unsigned int get_bits(GetBitContext *s, int n);
120 * For examples see get_bits, show_bits, skip_bits, get_vlc.
364 tmp = sign_extend(get_bits(s, n), n);
379 static inline unsigned int get_bits(GetBitContext *s, int n)
417 return n ? get_bits(s, n) : 0;
553 return get_bits(s, n);
556 return get_bits(s, n);
559 unsigned ret = get_bits(s, 16);
560 return ret | (get_bits(s, n - 16) << 16);
562 unsigned ret = get_bits(s, 16) << (n - 16);
563 return ret | get_bits(s, n - 16);