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

Function encode_seq_header

libavcodec/vc2enc.c:412–419  ·  view source on GitHub ↗

VC-2 11 - sequence_header() */

Source from the content-addressed store, hash-verified

410
411/* VC-2 11 - sequence_header() */
412static void encode_seq_header(VC2EncContext *s)
413{
414 align_put_bits(&s->pb);
415 encode_parse_params(s);
416 put_vc2_ue_uint(&s->pb, s->base_vf);
417 encode_source_params(s);
418 put_vc2_ue_uint(&s->pb, s->interlaced); /* Frames or fields coding */
419}
420
421/* VC-2 12.1 - picture_header() */
422static void encode_picture_header(VC2EncContext *s)

Callers 1

encode_frameFunction · 0.85

Calls 4

align_put_bitsFunction · 0.85
encode_parse_paramsFunction · 0.85
put_vc2_ue_uintFunction · 0.85
encode_source_paramsFunction · 0.85

Tested by

no test coverage detected