| 135 | } |
| 136 | |
| 137 | static av_always_inline unsigned int copy_bits(PutBitContext *pb, |
| 138 | GetBitContext *gb, |
| 139 | int bits) |
| 140 | { |
| 141 | unsigned int el = get_bits(gb, bits); |
| 142 | put_bits(pb, bits, el); |
| 143 | return el; |
| 144 | } |
| 145 | |
| 146 | int ff_copy_pce_data(PutBitContext *pb, GetBitContext *gb) |
| 147 | { |
no test coverage detected