Searched refs:put_vc2_ue_uint (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | vc2enc.c | 183 static av_always_inline void put_vc2_ue_uint(PutBitContext *pb, uint32_t val) in put_vc2_ue_uint() function 262 put_vc2_ue_uint(&s->pb, s->ver.major); /* VC-2 demands this to be 2 */ in encode_parse_params() 263 put_vc2_ue_uint(&s->pb, s->ver.minor); /* ^^ and this to be 0 */ in encode_parse_params() 264 put_vc2_ue_uint(&s->pb, s->profile); /* 3 to signal HQ profile */ in encode_parse_params() 265 put_vc2_ue_uint(&s->pb, s->level); /* 3 - 1080/720, 6 - 4K */ in encode_parse_params() 274 put_vc2_ue_uint(&s->pb, avctx->width); in encode_frame_size() 275 put_vc2_ue_uint(&s->pb, avctx->height); in encode_frame_size() 291 put_vc2_ue_uint(&s->pb, idx); in encode_sample_fmt() 300 put_vc2_ue_uint(&s->pb, s->interlaced); in encode_scan_format() 309 put_vc2_ue_uint(&s->pb, 0); in encode_frame_rate() [all …]
|