| 2620 | } |
| 2621 | |
| 2622 | static inline int bits_skip(bitbuf_t *bb, int bits) |
| 2623 | { |
| 2624 | if (bits <= 0) |
| 2625 | return 0; |
| 2626 | while (bits > 32) |
| 2627 | { |
| 2628 | bits_get(bb, 32); |
| 2629 | bits -= 32; |
| 2630 | } |
| 2631 | bits_get(bb, bits); |
| 2632 | return 0; |
| 2633 | } |
| 2634 | |
| 2635 | // extract what useful information we can from the elementary stream |
| 2636 | // descriptor list at 'dp' and add it to the stream at 'esindx'. |
no test coverage detected