Lines Matching refs:max_depth
692 * If the vlc code is invalid and max_depth=1, then no bits will be removed.
693 * If the vlc code is invalid and max_depth>1, then the number of bits removed
696 #define GET_VLC(code, name, gb, table, bits, max_depth) \
705 if (max_depth > 1 && n < 0) { \
714 if (max_depth > 2 && n < 0) { \
729 max_depth, need_update) \
738 if (max_depth > 1 && n < 0) { \
749 if (max_depth > 2 && n < 0) { \
782 * @param max_depth is the number of times bits bits must be read to completely
788 int bits, int max_depth)
796 if (max_depth > 1 && n < 0) {
799 if (max_depth > 2 && n < 0) {
813 GET_VLC(code, re, s, table, bits, max_depth);