MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / encode_mb_skip_run

Function encode_mb_skip_run

libavcodec/mpeg12enc.c:310–318  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308}
309
310static 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
320static av_always_inline void put_qscale(MPVEncContext *const s)
321{

Callers 1

mpeg1_encode_mb_internalFunction · 0.85

Calls 1

put_bitsFunction · 0.70

Tested by

no test coverage detected