Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
3 | | * |
4 | | * This source code is subject to the terms of the BSD 2 Clause License and |
5 | | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
6 | | * was not distributed with this source code in the LICENSE file, you can |
7 | | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
8 | | * Media Patent License 1.0 was not distributed with this source code in the |
9 | | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
10 | | */ |
11 | | |
12 | | /////////////////////////////////////////////////////////////////////////////// |
13 | | // Internal implementation details |
14 | | /////////////////////////////////////////////////////////////////////////////// |
15 | | // |
16 | | // There are two levels of interfaces used to access the AOM codec: the |
17 | | // the aom_codec_iface and the aom_codec_ctx. |
18 | | // |
19 | | // 1. aom_codec_iface_t |
20 | | // (Related files: aom/aom_codec.h, aom/src/aom_codec.c, |
21 | | // aom/internal/aom_codec_internal.h, av1/av1_cx_iface.c, |
22 | | // av1/av1_dx_iface.c) |
23 | | // |
24 | | // Used to initialize the codec context, which contains the configuration for |
25 | | // for modifying the encoder/decoder during run-time. See the other |
26 | | // documentation in this header file for more details. For the most part, |
27 | | // users will call helper functions, such as aom_codec_iface_name, |
28 | | // aom_codec_get_caps, etc., to interact with it. |
29 | | // |
30 | | // The main purpose of the aom_codec_iface_t is to provide a way to generate |
31 | | // a default codec config, find out what capabilities the implementation has, |
32 | | // and create an aom_codec_ctx_t (which is actually used to interact with the |
33 | | // codec). |
34 | | // |
35 | | // Note that the implementations for the AV1 algorithm are located in |
36 | | // av1/av1_cx_iface.c and av1/av1_dx_iface.c |
37 | | // |
38 | | // |
39 | | // 2. aom_codec_ctx_t |
40 | | // (Related files: aom/aom_codec.h, av1/av1_cx_iface.c, av1/av1_dx_iface.c, |
41 | | // aom/aomcx.h, aom/aomdx.h, aom/src/aom_encoder.c, aom/src/aom_decoder.c) |
42 | | // |
43 | | // The actual interface between user code and the codec. It stores the name |
44 | | // of the codec, a pointer back to the aom_codec_iface_t that initialized it, |
45 | | // initialization flags, a config for either encoder or the decoder, and a |
46 | | // pointer to internal data. |
47 | | // |
48 | | // The codec is configured / queried through calls to aom_codec_control, |
49 | | // which takes a control ID (listed in aomcx.h and aomdx.h) and a parameter. |
50 | | // In the case of "getter" control IDs, the parameter is modified to have |
51 | | // the requested value; in the case of "setter" control IDs, the codec's |
52 | | // configuration is changed based on the parameter. Note that a aom_codec_err_t |
53 | | // is returned, which indicates if the operation was successful or not. |
54 | | // |
55 | | // Note that for the encoder, the aom_codec_alg_priv_t points to the |
56 | | // the aom_codec_alg_priv structure in av1/av1_cx_iface.c, and for the decoder, |
57 | | // the struct in av1/av1_dx_iface.c. Variables such as AV1_COMP cpi are stored |
58 | | // here and also used in the core algorithm. |
59 | | // |
60 | | // At the end, aom_codec_destroy should be called for each initialized |
61 | | // aom_codec_ctx_t. |
62 | | |
63 | | /*!\defgroup codec Common Algorithm Interface |
64 | | * This abstraction allows applications to easily support multiple video |
65 | | * formats with minimal code duplication. This section describes the interface |
66 | | * common to all codecs (both encoders and decoders). |
67 | | * @{ |
68 | | */ |
69 | | |
70 | | /*!\file |
71 | | * \brief Describes the codec algorithm interface to applications. |
72 | | * |
73 | | * This file describes the interface between an application and a |
74 | | * video codec algorithm. |
75 | | * |
76 | | * An application instantiates a specific codec instance by using |
77 | | * aom_codec_dec_init() or aom_codec_enc_init() and a pointer to the |
78 | | * algorithm's interface structure: |
79 | | * <pre> |
80 | | * my_app.c: |
81 | | * extern aom_codec_iface_t my_codec; |
82 | | * { |
83 | | * aom_codec_ctx_t algo; |
84 | | * int threads = 4; |
85 | | * aom_codec_dec_cfg_t cfg = { threads, 0, 0, 1 }; |
86 | | * res = aom_codec_dec_init(&algo, &my_codec, &cfg, 0); |
87 | | * } |
88 | | * </pre> |
89 | | * |
90 | | * Once initialized, the instance is managed using other functions from |
91 | | * the aom_codec_* family. |
92 | | */ |
93 | | #ifndef AOM_AOM_AOM_CODEC_H_ |
94 | | #define AOM_AOM_AOM_CODEC_H_ |
95 | | |
96 | | #ifdef __cplusplus |
97 | | extern "C" { |
98 | | #endif |
99 | | |
100 | | #include "aom/aom_image.h" |
101 | | #include "aom/aom_integer.h" |
102 | | |
103 | | /*!\brief Decorator indicating a function is deprecated */ |
104 | | #ifndef AOM_DEPRECATED |
105 | | #if defined(__GNUC__) && __GNUC__ |
106 | | #define AOM_DEPRECATED __attribute__((deprecated)) |
107 | | #elif defined(_MSC_VER) |
108 | | #define AOM_DEPRECATED |
109 | | #else |
110 | | #define AOM_DEPRECATED |
111 | | #endif |
112 | | #endif /* AOM_DEPRECATED */ |
113 | | |
114 | | #ifndef AOM_DECLSPEC_DEPRECATED |
115 | | #if defined(__GNUC__) && __GNUC__ |
116 | | #define AOM_DECLSPEC_DEPRECATED /**< \copydoc #AOM_DEPRECATED */ |
117 | | #elif defined(_MSC_VER) |
118 | | /*!\brief \copydoc #AOM_DEPRECATED */ |
119 | | #define AOM_DECLSPEC_DEPRECATED __declspec(deprecated) |
120 | | #else |
121 | | #define AOM_DECLSPEC_DEPRECATED /**< \copydoc #AOM_DEPRECATED */ |
122 | | #endif |
123 | | #endif /* AOM_DECLSPEC_DEPRECATED */ |
124 | | |
125 | | /*!\brief Decorator indicating a function is potentially unused */ |
126 | | #ifdef AOM_UNUSED |
127 | | #elif defined(__GNUC__) || defined(__clang__) |
128 | | #define AOM_UNUSED __attribute__((unused)) |
129 | | #else |
130 | | #define AOM_UNUSED |
131 | | #endif |
132 | | |
133 | | /*!\brief Decorator indicating that given struct/union/enum is packed */ |
134 | | #ifndef ATTRIBUTE_PACKED |
135 | | #if defined(__GNUC__) && __GNUC__ |
136 | | #define ATTRIBUTE_PACKED __attribute__((packed)) |
137 | | #elif defined(_MSC_VER) |
138 | | #define ATTRIBUTE_PACKED |
139 | | #else |
140 | | #define ATTRIBUTE_PACKED |
141 | | #endif |
142 | | #endif /* ATTRIBUTE_PACKED */ |
143 | | |
144 | | /*!\brief Current ABI version number |
145 | | * |
146 | | * \internal |
147 | | * If this file is altered in any way that changes the ABI, this value |
148 | | * must be bumped. Examples include, but are not limited to, changing |
149 | | * types, removing or reassigning enums, adding/removing/rearranging |
150 | | * fields to structures |
151 | | */ |
152 | 1.98k | #define AOM_CODEC_ABI_VERSION (7 + AOM_IMAGE_ABI_VERSION) /**<\hideinitializer*/ |
153 | | |
154 | | /*!\brief Algorithm return codes */ |
155 | | typedef enum { |
156 | | /*!\brief Operation completed without error */ |
157 | | AOM_CODEC_OK, |
158 | | |
159 | | /*!\brief Unspecified error */ |
160 | | AOM_CODEC_ERROR, |
161 | | |
162 | | /*!\brief Memory operation failed */ |
163 | | AOM_CODEC_MEM_ERROR, |
164 | | |
165 | | /*!\brief ABI version mismatch */ |
166 | | AOM_CODEC_ABI_MISMATCH, |
167 | | |
168 | | /*!\brief Algorithm does not have required capability */ |
169 | | AOM_CODEC_INCAPABLE, |
170 | | |
171 | | /*!\brief The given bitstream is not supported. |
172 | | * |
173 | | * The bitstream was unable to be parsed at the highest level. The decoder |
174 | | * is unable to proceed. This error \ref SHOULD be treated as fatal to the |
175 | | * stream. */ |
176 | | AOM_CODEC_UNSUP_BITSTREAM, |
177 | | |
178 | | /*!\brief Encoded bitstream uses an unsupported feature |
179 | | * |
180 | | * The decoder does not implement a feature required by the encoder. This |
181 | | * return code should only be used for features that prevent future |
182 | | * pictures from being properly decoded. This error \ref MAY be treated as |
183 | | * fatal to the stream or \ref MAY be treated as fatal to the current GOP. |
184 | | */ |
185 | | AOM_CODEC_UNSUP_FEATURE, |
186 | | |
187 | | /*!\brief The coded data for this stream is corrupt or incomplete |
188 | | * |
189 | | * There was a problem decoding the current frame. This return code |
190 | | * should only be used for failures that prevent future pictures from |
191 | | * being properly decoded. This error \ref MAY be treated as fatal to the |
192 | | * stream or \ref MAY be treated as fatal to the current GOP. If decoding |
193 | | * is continued for the current GOP, artifacts may be present. |
194 | | */ |
195 | | AOM_CODEC_CORRUPT_FRAME, |
196 | | |
197 | | /*!\brief An application-supplied parameter is not valid. |
198 | | * |
199 | | */ |
200 | | AOM_CODEC_INVALID_PARAM, |
201 | | |
202 | | /*!\brief An iterator reached the end of list. |
203 | | * |
204 | | */ |
205 | | AOM_CODEC_LIST_END |
206 | | |
207 | | } aom_codec_err_t; |
208 | | |
209 | | /*! \brief Codec capabilities bitfield |
210 | | * |
211 | | * Each codec advertises the capabilities it supports as part of its |
212 | | * ::aom_codec_iface_t interface structure. Capabilities are extra interfaces |
213 | | * or functionality, and are not required to be supported. |
214 | | * |
215 | | * The available flags are specified by AOM_CODEC_CAP_* defines. |
216 | | */ |
217 | | typedef long aom_codec_caps_t; |
218 | 1.98k | #define AOM_CODEC_CAP_DECODER 0x1 /**< Is a decoder */ |
219 | 0 | #define AOM_CODEC_CAP_ENCODER 0x2 /**< Is an encoder */ |
220 | | |
221 | | /*! \brief Initialization-time Feature Enabling |
222 | | * |
223 | | * Certain codec features must be known at initialization time, to allow for |
224 | | * proper memory allocation. |
225 | | * |
226 | | * The available flags are specified by AOM_CODEC_USE_* defines. |
227 | | */ |
228 | | typedef long aom_codec_flags_t; |
229 | | |
230 | | /*!\brief Time Stamp Type |
231 | | * |
232 | | * An integer, which when multiplied by the stream's time base, provides |
233 | | * the absolute time of a sample. |
234 | | */ |
235 | | typedef int64_t aom_codec_pts_t; |
236 | | |
237 | | /*!\brief Codec interface structure. |
238 | | * |
239 | | * Contains function pointers and other data private to the codec |
240 | | * implementation. This structure is opaque to the application. Common |
241 | | * functions used with this structure: |
242 | | * - aom_codec_iface_name(aom_codec_iface_t *iface): get the |
243 | | * name of the codec |
244 | | * - aom_codec_get_caps(aom_codec_iface_t *iface): returns |
245 | | * the capabilities of the codec |
246 | | * - aom_codec_enc_config_default: generate the default config for |
247 | | * initializing the encoder (see documention in aom_encoder.h) |
248 | | * - aom_codec_dec_init, aom_codec_enc_init: initialize the codec context |
249 | | * structure (see documentation on aom_codec_ctx). |
250 | | * |
251 | | * To get access to the AV1 encoder and decoder, use aom_codec_av1_cx() and |
252 | | * aom_codec_av1_dx(). |
253 | | */ |
254 | | typedef const struct aom_codec_iface aom_codec_iface_t; |
255 | | |
256 | | /*!\brief Codec private data structure. |
257 | | * |
258 | | * Contains data private to the codec implementation. This structure is opaque |
259 | | * to the application. |
260 | | */ |
261 | | typedef struct aom_codec_priv aom_codec_priv_t; |
262 | | |
263 | | /*!\brief Compressed Frame Flags |
264 | | * |
265 | | * This type represents a bitfield containing information about a compressed |
266 | | * frame that may be useful to an application. The most significant 16 bits |
267 | | * can be used by an algorithm to provide additional detail, for example to |
268 | | * support frame types that are codec specific (MPEG-1 D-frames for example) |
269 | | */ |
270 | | typedef uint32_t aom_codec_frame_flags_t; |
271 | 0 | #define AOM_FRAME_IS_KEY 0x1 /**< frame is the start of a GOP */ |
272 | | /*!\brief frame can be dropped without affecting the stream (no future frame |
273 | | * depends on this one) */ |
274 | 0 | #define AOM_FRAME_IS_DROPPABLE 0x2 |
275 | | /*!\brief this is an INTRA_ONLY frame */ |
276 | 0 | #define AOM_FRAME_IS_INTRAONLY 0x10 |
277 | | /*!\brief this is an S-frame */ |
278 | 0 | #define AOM_FRAME_IS_SWITCH 0x20 |
279 | | /*!\brief this is an error-resilient frame */ |
280 | 0 | #define AOM_FRAME_IS_ERROR_RESILIENT 0x40 |
281 | | /*!\brief this is a key-frame dependent recovery-point frame */ |
282 | 0 | #define AOM_FRAME_IS_DELAYED_RANDOM_ACCESS_POINT 0x80 |
283 | | |
284 | | /*!\brief Iterator |
285 | | * |
286 | | * Opaque storage used for iterating over lists. |
287 | | */ |
288 | | typedef const void *aom_codec_iter_t; |
289 | | |
290 | | /*!\brief Codec context structure |
291 | | * |
292 | | * All codecs \ref MUST support this context structure fully. In general, |
293 | | * this data should be considered private to the codec algorithm, and |
294 | | * not be manipulated or examined by the calling application. Applications |
295 | | * may reference the 'name' member to get a printable description of the |
296 | | * algorithm. |
297 | | */ |
298 | | typedef struct aom_codec_ctx { |
299 | | const char *name; /**< Printable interface name */ |
300 | | aom_codec_iface_t *iface; /**< Interface pointers */ |
301 | | aom_codec_err_t err; /**< Last returned error */ |
302 | | const char *err_detail; /**< Detailed info, if available */ |
303 | | aom_codec_flags_t init_flags; /**< Flags passed at init time */ |
304 | | union { |
305 | | /**< Decoder Configuration Pointer */ |
306 | | const struct aom_codec_dec_cfg *dec; |
307 | | /**< Encoder Configuration Pointer */ |
308 | | const struct aom_codec_enc_cfg *enc; |
309 | | const void *raw; |
310 | | } config; /**< Configuration pointer aliasing union */ |
311 | | aom_codec_priv_t *priv; /**< Algorithm private storage */ |
312 | | } aom_codec_ctx_t; |
313 | | |
314 | | /*!\brief Bit depth for codec |
315 | | * * |
316 | | * This enumeration determines the bit depth of the codec. |
317 | | */ |
318 | | typedef enum aom_bit_depth { |
319 | | AOM_BITS_8 = 8, /**< 8 bits */ |
320 | | AOM_BITS_10 = 10, /**< 10 bits */ |
321 | | AOM_BITS_12 = 12, /**< 12 bits */ |
322 | | } aom_bit_depth_t; |
323 | | |
324 | | /*!\brief Superblock size selection. |
325 | | * |
326 | | * Defines the superblock size used for encoding. The superblock size can |
327 | | * either be fixed at 64x64 or 128x128 pixels, or it can be dynamically |
328 | | * selected by the encoder for each frame. |
329 | | */ |
330 | | typedef enum aom_superblock_size { |
331 | | AOM_SUPERBLOCK_SIZE_64X64, /**< Always use 64x64 superblocks. */ |
332 | | AOM_SUPERBLOCK_SIZE_128X128, /**< Always use 128x128 superblocks. */ |
333 | | AOM_SUPERBLOCK_SIZE_DYNAMIC /**< Select superblock size dynamically. */ |
334 | | } aom_superblock_size_t; |
335 | | |
336 | | /* |
337 | | * Library Version Number Interface |
338 | | * |
339 | | * For example, see the following sample return values: |
340 | | * aom_codec_version() (1<<16 | 2<<8 | 3) |
341 | | * aom_codec_version_str() "v1.2.3-rc1-16-gec6a1ba" |
342 | | * aom_codec_version_extra_str() "rc1-16-gec6a1ba" |
343 | | */ |
344 | | |
345 | | /*!\brief Return the version information (as an integer) |
346 | | * |
347 | | * Returns a packed encoding of the library version number. This will only |
348 | | * include the major.minor.patch component of the version number. Note that this |
349 | | * encoded value should be accessed through the macros provided, as the encoding |
350 | | * may change in the future. |
351 | | * |
352 | | */ |
353 | | int aom_codec_version(void); |
354 | | |
355 | | /*!\brief Return the major version number */ |
356 | | #define aom_codec_version_major() ((aom_codec_version() >> 16) & 0xff) |
357 | | |
358 | | /*!\brief Return the minor version number */ |
359 | | #define aom_codec_version_minor() ((aom_codec_version() >> 8) & 0xff) |
360 | | |
361 | | /*!\brief Return the patch version number */ |
362 | | #define aom_codec_version_patch() ((aom_codec_version() >> 0) & 0xff) |
363 | | |
364 | | /*!\brief Return the version information (as a string) |
365 | | * |
366 | | * Returns a printable string containing the full library version number. This |
367 | | * may contain additional text following the three digit version number, as to |
368 | | * indicate release candidates, prerelease versions, etc. |
369 | | * |
370 | | */ |
371 | | const char *aom_codec_version_str(void); |
372 | | |
373 | | /*!\brief Return the version information (as a string) |
374 | | * |
375 | | * Returns a printable "extra string". This is the component of the string |
376 | | * returned by aom_codec_version_str() following the three digit version number. |
377 | | * |
378 | | */ |
379 | | const char *aom_codec_version_extra_str(void); |
380 | | |
381 | | /*!\brief Return the build configuration |
382 | | * |
383 | | * Returns a printable string containing an encoded version of the build |
384 | | * configuration. This may be useful to aom support. |
385 | | * |
386 | | */ |
387 | | const char *aom_codec_build_config(void); |
388 | | |
389 | | /*!\brief Return the name for a given interface |
390 | | * |
391 | | * Returns a human readable string for name of the given codec interface. |
392 | | * |
393 | | * \param[in] iface Interface pointer |
394 | | * |
395 | | */ |
396 | | const char *aom_codec_iface_name(aom_codec_iface_t *iface); |
397 | | |
398 | | /*!\brief Convert error number to printable string |
399 | | * |
400 | | * Returns a human readable string for the last error returned by the |
401 | | * algorithm. The returned error will be one line and will not contain |
402 | | * any newline characters. |
403 | | * |
404 | | * |
405 | | * \param[in] err Error number. |
406 | | * |
407 | | */ |
408 | | const char *aom_codec_err_to_string(aom_codec_err_t err); |
409 | | |
410 | | /*!\brief Retrieve error synopsis for codec context |
411 | | * |
412 | | * Returns a human readable string for the last error returned by the |
413 | | * algorithm. The returned error will be one line and will not contain |
414 | | * any newline characters. |
415 | | * |
416 | | * |
417 | | * \param[in] ctx Pointer to this instance's context. |
418 | | * |
419 | | */ |
420 | | const char *aom_codec_error(aom_codec_ctx_t *ctx); |
421 | | |
422 | | /*!\brief Retrieve detailed error information for codec context |
423 | | * |
424 | | * Returns a human readable string providing detailed information about |
425 | | * the last error. |
426 | | * |
427 | | * \param[in] ctx Pointer to this instance's context. |
428 | | * |
429 | | * \retval NULL |
430 | | * No detailed information is available. |
431 | | */ |
432 | | const char *aom_codec_error_detail(aom_codec_ctx_t *ctx); |
433 | | |
434 | | /* REQUIRED FUNCTIONS |
435 | | * |
436 | | * The following functions are required to be implemented for all codecs. |
437 | | * They represent the base case functionality expected of all codecs. |
438 | | */ |
439 | | |
440 | | /*!\brief Destroy a codec instance |
441 | | * |
442 | | * Destroys a codec context, freeing any associated memory buffers. |
443 | | * |
444 | | * \param[in] ctx Pointer to this instance's context |
445 | | * |
446 | | * \retval #AOM_CODEC_OK |
447 | | * The codec algorithm initialized. |
448 | | * \retval #AOM_CODEC_MEM_ERROR |
449 | | * Memory allocation failed. |
450 | | */ |
451 | | aom_codec_err_t aom_codec_destroy(aom_codec_ctx_t *ctx); |
452 | | |
453 | | /*!\brief Get the capabilities of an algorithm. |
454 | | * |
455 | | * Retrieves the capabilities bitfield from the algorithm's interface. |
456 | | * |
457 | | * \param[in] iface Pointer to the algorithm interface |
458 | | * |
459 | | */ |
460 | | aom_codec_caps_t aom_codec_get_caps(aom_codec_iface_t *iface); |
461 | | |
462 | | /*!\name Codec Control |
463 | | * |
464 | | * The aom_codec_control function exchanges algorithm specific data with the |
465 | | * codec instance. Additionally, the macro AOM_CODEC_CONTROL_TYPECHECKED is |
466 | | * provided, which will type-check the parameter against the control ID before |
467 | | * calling aom_codec_control - note that this macro requires the control ID |
468 | | * to be directly encoded in it, e.g., |
469 | | * AOM_CODEC_CONTROL_TYPECHECKED(&ctx, AOME_SET_CPUUSED, 8). |
470 | | * |
471 | | * The codec control IDs can be found in aom.h, aomcx.h, and aomdx.h |
472 | | * (defined as aom_com_control_id, aome_enc_control_id, and aom_dec_control_id). |
473 | | * @{ |
474 | | */ |
475 | | /*!\brief Algorithm Control |
476 | | * |
477 | | * aom_codec_control takes a context, a control ID, and a third parameter |
478 | | * (with varying type). If the context is non-null and an error occurs, |
479 | | * ctx->err will be set to the same value as the return value. |
480 | | * |
481 | | * \param[in] ctx Pointer to this instance's context |
482 | | * \param[in] ctrl_id Algorithm specific control identifier. |
483 | | * Must be nonzero. |
484 | | * |
485 | | * \retval #AOM_CODEC_OK |
486 | | * The control request was processed. |
487 | | * \retval #AOM_CODEC_ERROR |
488 | | * The control request was not processed. |
489 | | * \retval #AOM_CODEC_INVALID_PARAM |
490 | | * The control ID was zero, or the data was not valid. |
491 | | */ |
492 | | aom_codec_err_t aom_codec_control(aom_codec_ctx_t *ctx, int ctrl_id, ...); |
493 | | |
494 | | /*!\brief Key & Value API |
495 | | * |
496 | | * aom_codec_set_option() takes a context, a key (option name) and a value. If |
497 | | * the context is non-null and an error occurs, ctx->err will be set to the same |
498 | | * value as the return value. |
499 | | * |
500 | | * \param[in] ctx Pointer to this instance's context |
501 | | * \param[in] name The name of the option (key) |
502 | | * \param[in] value The value of the option |
503 | | * |
504 | | * \retval #AOM_CODEC_OK |
505 | | * The value of the option was set. |
506 | | * \retval #AOM_CODEC_INVALID_PARAM |
507 | | * The data was not valid. |
508 | | * \retval #AOM_CODEC_ERROR |
509 | | * The option was not successfully set. |
510 | | */ |
511 | | aom_codec_err_t aom_codec_set_option(aom_codec_ctx_t *ctx, const char *name, |
512 | | const char *value); |
513 | | |
514 | | /*!\brief aom_codec_control wrapper macro (adds type-checking, less flexible) |
515 | | * |
516 | | * This macro allows for type safe conversions across the variadic parameter |
517 | | * to aom_codec_control(). However, it requires the explicit control ID |
518 | | * be passed in (it cannot be passed in via a variable) -- otherwise a compiler |
519 | | * error will occur. After the type checking, it calls aom_codec_control. |
520 | | */ |
521 | | #define AOM_CODEC_CONTROL_TYPECHECKED(ctx, id, data) \ |
522 | | aom_codec_control_typechecked_##id(ctx, id, data) /**<\hideinitializer*/ |
523 | | |
524 | | /*!\brief Creates typechecking mechanisms for aom_codec_control |
525 | | * |
526 | | * It defines a static function with the correctly typed arguments as a wrapper |
527 | | * to the type-unsafe aom_codec_control function. It also creates a typedef |
528 | | * for each type. |
529 | | */ |
530 | | #define AOM_CTRL_USE_TYPE(id, typ) \ |
531 | | static aom_codec_err_t aom_codec_control_typechecked_##id( \ |
532 | | aom_codec_ctx_t *, int, typ) AOM_UNUSED; \ |
533 | | static aom_codec_err_t aom_codec_control_typechecked_##id( \ |
534 | 0 | aom_codec_ctx_t *ctx, int ctrl, typ data) { \ |
535 | 0 | return aom_codec_control(ctx, ctrl, data); \ |
536 | 0 | } /**<\hideinitializer*/ \ Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: thirdpass.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_UPDATES Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_FRAME_CORRUPTED Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_LAST_REF_USED Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_TILE_INFO Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_SCREEN_CONTENT_TOOLS_INFO Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_STILL_PICTURE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_SB_SIZE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_SHOW_EXISTING_FRAME_FLAG Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_S_FRAME_INFO Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_DISPLAY_SIZE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_BIT_DEPTH Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_IMG_FORMAT Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_TILE_SIZE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_TILE_COUNT Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_FRAME_SIZE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_INVERT_TILE_DECODE_ORDER Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_ROW Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_SET_DECODE_TILE_COL Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_SET_TILE_MODE Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_FRAME_HEADER_INFO Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_GET_TILE_DATA Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_SET_EXT_REF_PTR Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_EXT_TILE_DEBUG Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_SET_ROW_MT Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_SET_IS_ANNEXB Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_SET_OPERATING_POINT Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1D_SET_OUTPUT_ALL_LAYERS Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_SET_INSPECTION_CALLBACK Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1_GET_REFERENCE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1_SET_REFERENCE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_USE_REFERENCE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_CPUUSED Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_TUNING Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64 Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8 Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_QM_Y Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_QM_U Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_QM_V Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MTU Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64 Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_FP_MT Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST |
537 | | typedef typ aom_codec_control_type_##id; |
538 | | /*!@} end Codec Control group */ |
539 | | |
540 | | /*!\brief OBU types. */ |
541 | | typedef enum ATTRIBUTE_PACKED { |
542 | | OBU_SEQUENCE_HEADER = 1, |
543 | | OBU_TEMPORAL_DELIMITER = 2, |
544 | | OBU_FRAME_HEADER = 3, |
545 | | OBU_TILE_GROUP = 4, |
546 | | OBU_METADATA = 5, |
547 | | OBU_FRAME = 6, |
548 | | OBU_REDUNDANT_FRAME_HEADER = 7, |
549 | | OBU_TILE_LIST = 8, |
550 | | OBU_PADDING = 15, |
551 | | } OBU_TYPE; |
552 | | |
553 | | /*!\brief OBU metadata types. */ |
554 | | typedef enum { |
555 | | OBU_METADATA_TYPE_AOM_RESERVED_0 = 0, |
556 | | OBU_METADATA_TYPE_HDR_CLL = 1, |
557 | | OBU_METADATA_TYPE_HDR_MDCV = 2, |
558 | | OBU_METADATA_TYPE_SCALABILITY = 3, |
559 | | OBU_METADATA_TYPE_ITUT_T35 = 4, |
560 | | OBU_METADATA_TYPE_TIMECODE = 5, |
561 | | } OBU_METADATA_TYPE; |
562 | | |
563 | | /*!\brief Returns string representation of OBU_TYPE. |
564 | | * |
565 | | * \param[in] type The OBU_TYPE to convert to string. |
566 | | */ |
567 | | const char *aom_obu_type_to_string(OBU_TYPE type); |
568 | | |
569 | | /*!@} - end defgroup codec*/ |
570 | | #ifdef __cplusplus |
571 | | } |
572 | | #endif |
573 | | #endif // AOM_AOM_AOM_CODEC_H_ |