| 151 | |
| 152 | #ifndef zero_extend |
| 153 | static inline av_const unsigned zero_extend(unsigned val, unsigned bits) |
| 154 | { |
| 155 | return (val << ((8 * sizeof(int)) - bits)) >> ((8 * sizeof(int)) - bits); |
| 156 | } |
| 157 | #endif |
| 158 | |
| 159 | #ifndef COPY3_IF_LT |
no outgoing calls
no test coverage detected