| 308 | } |
| 309 | |
| 310 | static inline void encode_mb_skip_run(MPVEncContext *const s, int run) |
| 311 | { |
| 312 | while (run >= 33) { |
| 313 | put_bits(&s->pb, 11, 0x008); |
| 314 | run -= 33; |
| 315 | } |
| 316 | put_bits(&s->pb, ff_mpeg12_mbAddrIncrTable[run][1], |
| 317 | ff_mpeg12_mbAddrIncrTable[run][0]); |
| 318 | } |
| 319 | |
| 320 | static av_always_inline void put_qscale(MPVEncContext *const s) |
| 321 | { |
no test coverage detected