| 674 | } |
| 675 | |
| 676 | static inline int decode012(GetBitContext *gb) |
| 677 | { |
| 678 | int n; |
| 679 | n = get_bits1(gb); |
| 680 | if (n == 0) |
| 681 | return 0; |
| 682 | else |
| 683 | return get_bits1(gb) + 1; |
| 684 | } |
| 685 | |
| 686 | static inline int decode210(GetBitContext *gb) |
| 687 | { |
no test coverage detected