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

Function tile_log2

libavcodec/vaapi_encode_av1.c:210–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210static int tile_log2(int blkSize, int target) {
211 int k;
212 for (k = 0; (blkSize << k) < target; k++);
213 return k;
214}
215
216static int vaapi_encode_av1_set_tile(AVCodecContext *avctx)
217{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected