Coverage Report

Created: 2026-06-14 06:57

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aom/aom/aom_codec.h
Line
Count
Source
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
// 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__)
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__)
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__)
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
18.5k
#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
18.5k
#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. The bits are
227
 *  allocated as follows:
228
 *      0x1 -     0x80: codec (common to decoder and encoder)
229
 *    0x100 -   0x8000: decoder
230
 *  0x10000 - 0x800000: encoder
231
 */
232
typedef long aom_codec_flags_t;
233
234
// Experimental feature policy
235
//
236
// New features may be marked as experimental. Experimental features are not
237
// part of the stable API and may be modified or removed in a future release.
238
// Experimental features are made available only if you pass the
239
// AOM_CODEC_USE_EXPERIMENTAL flag to the codec init function.
240
//
241
// If you use experimental features, you must rebuild your code whenever you
242
// update to a new libaom release, and you must be prepared to modify your code
243
// when an experimental feature you use is modified or removed. If you are not
244
// sure, DO NOT use experimental features.
245
#define AOM_CODEC_USE_EXPERIMENTAL 0x1 /**< Enables experimental features */
246
247
/*!\brief Time Stamp Type
248
 *
249
 * An integer, which when multiplied by the stream's time base, provides
250
 * the absolute time of a sample.
251
 */
252
typedef int64_t aom_codec_pts_t;
253
254
/*!\brief Codec interface structure.
255
 *
256
 * Contains function pointers and other data private to the codec
257
 * implementation. This structure is opaque to the application. Common
258
 * functions used with this structure:
259
 *   - aom_codec_iface_name(aom_codec_iface_t *iface): get the
260
 *     name of the codec
261
 *   - aom_codec_get_caps(aom_codec_iface_t *iface): returns
262
 *     the capabilities of the codec
263
 *   - aom_codec_enc_config_default: generate the default config for
264
 *     initializing the encoder (see documentation in aom_encoder.h)
265
 *   - aom_codec_dec_init, aom_codec_enc_init: initialize the codec context
266
 *     structure (see documentation on aom_codec_ctx).
267
 *
268
 * To get access to the AV1 encoder and decoder, use aom_codec_av1_cx() and
269
 *  aom_codec_av1_dx().
270
 */
271
typedef const struct aom_codec_iface aom_codec_iface_t;
272
273
/*!\brief Codec private data structure.
274
 *
275
 * Contains data private to the codec implementation. This structure is opaque
276
 * to the application.
277
 */
278
typedef struct aom_codec_priv aom_codec_priv_t;
279
280
/*!\brief Compressed Frame Flags
281
 *
282
 * This type represents a bitfield containing information about a compressed
283
 * frame that may be useful to an application. The most significant 16 bits
284
 * can be used by an algorithm to provide additional detail, for example to
285
 * support frame types that are codec specific (MPEG-1 D-frames for example)
286
 */
287
typedef uint32_t aom_codec_frame_flags_t;
288
0
#define AOM_FRAME_IS_KEY 0x1u /**< frame is the start of a GOP */
289
/*!\brief frame can be dropped without affecting the stream (no future frame
290
 * depends on this one) */
291
0
#define AOM_FRAME_IS_DROPPABLE 0x2u
292
/*!\brief this is an INTRA_ONLY frame */
293
0
#define AOM_FRAME_IS_INTRAONLY 0x10u
294
/*!\brief this is an S-frame */
295
0
#define AOM_FRAME_IS_SWITCH 0x20u
296
/*!\brief this is an error-resilient frame */
297
0
#define AOM_FRAME_IS_ERROR_RESILIENT 0x40u
298
/*!\brief this is a key-frame dependent recovery-point frame */
299
0
#define AOM_FRAME_IS_DELAYED_RANDOM_ACCESS_POINT 0x80u
300
301
/*!\brief Iterator
302
 *
303
 * Opaque storage used for iterating over lists.
304
 */
305
typedef const void *aom_codec_iter_t;
306
307
/*!\brief Codec context structure
308
 *
309
 * All codecs \ref MUST support this context structure fully. In general,
310
 * this data should be considered private to the codec algorithm, and
311
 * not be manipulated or examined by the calling application. Applications
312
 * may reference the 'name' member to get a printable description of the
313
 * algorithm.
314
 */
315
typedef struct aom_codec_ctx {
316
  const char *name;             /**< Printable interface name */
317
  aom_codec_iface_t *iface;     /**< Interface pointers */
318
  aom_codec_err_t err;          /**< Last returned error */
319
  const char *err_detail;       /**< Detailed info, if available */
320
  aom_codec_flags_t init_flags; /**< Flags passed at init time */
321
  union {
322
    /**< Decoder Configuration Pointer */
323
    const struct aom_codec_dec_cfg *dec;
324
    /**< Encoder Configuration Pointer */
325
    const struct aom_codec_enc_cfg *enc;
326
    const void *raw;
327
  } config;               /**< Configuration pointer aliasing union */
328
  aom_codec_priv_t *priv; /**< Algorithm private storage */
329
} aom_codec_ctx_t;
330
331
/*!\brief Bit depth for codec
332
 * *
333
 * This enumeration determines the bit depth of the codec.
334
 */
335
typedef enum aom_bit_depth {
336
  AOM_BITS_8 = 8,   /**<  8 bits */
337
  AOM_BITS_10 = 10, /**< 10 bits */
338
  AOM_BITS_12 = 12, /**< 12 bits */
339
} aom_bit_depth_t;
340
341
/*!\brief Superblock size selection.
342
 *
343
 * Defines the superblock size used for encoding. The superblock size can
344
 * either be fixed at 64x64 or 128x128 pixels, or it can be dynamically
345
 * selected by the encoder for each frame.
346
 */
347
typedef enum aom_superblock_size {
348
  AOM_SUPERBLOCK_SIZE_64X64,   /**< Always use 64x64 superblocks. */
349
  AOM_SUPERBLOCK_SIZE_128X128, /**< Always use 128x128 superblocks. */
350
  AOM_SUPERBLOCK_SIZE_DYNAMIC  /**< Select superblock size dynamically. */
351
} aom_superblock_size_t;
352
353
/*
354
 * Library Version Number Interface
355
 *
356
 * For example, see the following sample return values:
357
 *     aom_codec_version()           (1<<16 | 2<<8 | 3)
358
 *     aom_codec_version_str()       "v1.2.3-rc1-16-gec6a1ba"
359
 *     aom_codec_version_extra_str() "rc1-16-gec6a1ba"
360
 */
361
362
/*!\brief Return the version information (as an integer)
363
 *
364
 * Returns a packed encoding of the library version number. This will only
365
 * include the major.minor.patch component of the version number. Note that this
366
 * encoded value should be accessed through the macros provided, as the encoding
367
 * may change in the future.
368
 *
369
 */
370
int aom_codec_version(void);
371
372
/*!\brief Return the major version number */
373
#define aom_codec_version_major() ((aom_codec_version() >> 16) & 0xff)
374
375
/*!\brief Return the minor version number */
376
#define aom_codec_version_minor() ((aom_codec_version() >> 8) & 0xff)
377
378
/*!\brief Return the patch version number */
379
#define aom_codec_version_patch() ((aom_codec_version() >> 0) & 0xff)
380
381
/*!\brief Return the version information (as a string)
382
 *
383
 * Returns a printable string containing the full library version number. This
384
 * may contain additional text following the three digit version number, as to
385
 * indicate release candidates, pre-release versions, etc.
386
 *
387
 */
388
const char *aom_codec_version_str(void);
389
390
/*!\brief Return the version information (as a string)
391
 *
392
 * Returns a printable "extra string". This is the component of the string
393
 * returned by aom_codec_version_str() following the three digit version number.
394
 *
395
 */
396
const char *aom_codec_version_extra_str(void);
397
398
/*!\brief Return the build configuration
399
 *
400
 * Returns a printable string containing an encoded version of the build
401
 * configuration. This may be useful to aom support.
402
 *
403
 */
404
const char *aom_codec_build_config(void);
405
406
/*!\brief Return the name for a given interface
407
 *
408
 * Returns a human readable string for name of the given codec interface.
409
 *
410
 * \param[in]    iface     Interface pointer
411
 *
412
 */
413
const char *aom_codec_iface_name(aom_codec_iface_t *iface);
414
415
/*!\brief Convert error number to printable string
416
 *
417
 * Returns a human readable string for the last error returned by the
418
 * algorithm. The returned error will be one line and will not contain
419
 * any newline characters.
420
 *
421
 *
422
 * \param[in]    err     Error number.
423
 *
424
 */
425
const char *aom_codec_err_to_string(aom_codec_err_t err);
426
427
/*!\brief Retrieve error synopsis for codec context
428
 *
429
 * Returns a human readable string for the last error returned by the
430
 * algorithm. The returned error will be one line and will not contain
431
 * any newline characters.
432
 *
433
 *
434
 * \param[in]    ctx     Pointer to this instance's context.
435
 *
436
 */
437
const char *aom_codec_error(const aom_codec_ctx_t *ctx);
438
439
/*!\brief Retrieve detailed error information for codec context
440
 *
441
 * Returns a human readable string providing detailed information about
442
 * the last error. The returned string is only valid until the next
443
 * aom_codec_* function call (except aom_codec_error and
444
 * aom_codec_error_detail) on the codec context.
445
 *
446
 * \param[in]    ctx     Pointer to this instance's context.
447
 *
448
 * \retval NULL
449
 *     No detailed information is available.
450
 */
451
const char *aom_codec_error_detail(const aom_codec_ctx_t *ctx);
452
453
/* REQUIRED FUNCTIONS
454
 *
455
 * The following functions are required to be implemented for all codecs.
456
 * They represent the base case functionality expected of all codecs.
457
 */
458
459
/*!\brief Destroy a codec instance
460
 *
461
 * Destroys a codec context, freeing any associated memory buffers.
462
 *
463
 * \param[in] ctx   Pointer to this instance's context
464
 *
465
 * \retval #AOM_CODEC_OK
466
 *     The codec instance has been destroyed.
467
 * \retval #AOM_CODEC_INVALID_PARAM
468
 *     ctx is a null pointer.
469
 * \retval #AOM_CODEC_ERROR
470
 *     Codec context not initialized.
471
 */
472
aom_codec_err_t aom_codec_destroy(aom_codec_ctx_t *ctx);
473
474
/*!\brief Get the capabilities of an algorithm.
475
 *
476
 * Retrieves the capabilities bitfield from the algorithm's interface.
477
 *
478
 * \param[in] iface   Pointer to the algorithm interface
479
 *
480
 */
481
aom_codec_caps_t aom_codec_get_caps(aom_codec_iface_t *iface);
482
483
/*!\name Codec Control
484
 *
485
 * The aom_codec_control function exchanges algorithm specific data with the
486
 * codec instance. Additionally, the macro AOM_CODEC_CONTROL_TYPECHECKED is
487
 * provided, which will type-check the parameter against the control ID before
488
 * calling aom_codec_control - note that this macro requires the control ID
489
 * to be directly encoded in it, e.g.,
490
 * AOM_CODEC_CONTROL_TYPECHECKED(&ctx, AOME_SET_CPUUSED, 8).
491
 *
492
 * The codec control IDs can be found in aom.h, aomcx.h, and aomdx.h
493
 * (defined as aom_com_control_id, aome_enc_control_id, and aom_dec_control_id).
494
 * @{
495
 */
496
/*!\brief Algorithm Control
497
 *
498
 * aom_codec_control takes a context, a control ID, and a third parameter
499
 * (with varying type). If the context is non-null and an error occurs,
500
 * ctx->err will be set to the same value as the return value.
501
 *
502
 * \param[in]     ctx              Pointer to this instance's context
503
 * \param[in]     ctrl_id          Algorithm specific control identifier.
504
 *                                 Must be nonzero.
505
 *
506
 * \retval #AOM_CODEC_OK
507
 *     The control request was processed.
508
 * \retval #AOM_CODEC_ERROR
509
 *     The control request was not processed.
510
 * \retval #AOM_CODEC_INVALID_PARAM
511
 *     The control ID was zero, or the data was not valid.
512
 */
513
aom_codec_err_t aom_codec_control(aom_codec_ctx_t *ctx, int ctrl_id, ...);
514
515
/*!\brief Key & Value API
516
 *
517
 * aom_codec_set_option() takes a context, a key (option name) and a value. If
518
 * the context is non-null and an error occurs, ctx->err will be set to the same
519
 * value as the return value.
520
 *
521
 * \param[in]     ctx              Pointer to this instance's context
522
 * \param[in]     name             The name of the option (key)
523
 * \param[in]     value            The value of the option
524
 *
525
 * \retval #AOM_CODEC_OK
526
 *     The value of the option was set.
527
 * \retval #AOM_CODEC_INVALID_PARAM
528
 *     The data was not valid.
529
 * \retval #AOM_CODEC_ERROR
530
 *     The option was not successfully set.
531
 */
532
aom_codec_err_t aom_codec_set_option(aom_codec_ctx_t *ctx, const char *name,
533
                                     const char *value);
534
535
/*!\brief aom_codec_control wrapper macro (adds type-checking, less flexible)
536
 *
537
 * This macro allows for type safe conversions across the variadic parameter
538
 * to aom_codec_control(). However, it requires the explicit control ID
539
 * be passed in (it cannot be passed in via a variable) -- otherwise a compiler
540
 * error will occur. After the type checking, it calls aom_codec_control.
541
 */
542
#define AOM_CODEC_CONTROL_TYPECHECKED(ctx, id, data) \
543
  aom_codec_control_typechecked_##id(ctx, id, data) /**<\hideinitializer*/
544
545
/*!\brief Creates type checking mechanisms for aom_codec_control
546
 *
547
 * It defines a static function with the correctly typed arguments as a wrapper
548
 * to the type-unsafe aom_codec_control function. It also creates a typedef
549
 * for each type.
550
 */
551
#define AOM_CTRL_USE_TYPE(id, typ)                           \
552
  static aom_codec_err_t aom_codec_control_typechecked_##id( \
553
      aom_codec_ctx_t *, int, typ) AOM_UNUSED;               \
554
  static aom_codec_err_t aom_codec_control_typechecked_##id( \
555
0
      aom_codec_ctx_t *ctx, int ctrl, typ data) {            \
556
0
    return aom_codec_control(ctx, ctrl, data);               \
557
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: av1_dx_iface.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
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_FRAME_FLAGS
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_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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: av1_dx_iface.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: decodeframe.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT
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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: decodeframe.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: decodemv.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT
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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: decodemv.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: decoder.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT
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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: decoder.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: decodetxb.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT
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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: decodetxb.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: detokenize.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT
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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: detokenize.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: obu.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT
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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: obu.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_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_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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
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_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
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_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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
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_ENABLE_SB_MULTIPASS_UNIT_TEST
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_VBR_CORPUS_COMPLEXITY_LAP
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_ENABLE_DNL_DENOISING
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_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_DELTAQ_STRENGTH
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_cx_iface.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: av1_cx_iface.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: allintra_vis.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: av1_quantize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: bitstream.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: bitstream.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: context_tree.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: context_tree.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encodeframe.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encodeframe_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: encodemb.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encodemb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: encodemv.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encodemv.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encoder.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encoder_utils.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encodetxb.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: ethread.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: ethread.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: firstpass.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: firstpass.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_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_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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
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_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
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_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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
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_ENABLE_SB_MULTIPASS_UNIT_TEST
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_VBR_CORPUS_COMPLEXITY_LAP
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_ENABLE_DNL_DENOISING
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_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_DELTAQ_STRENGTH
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: global_motion_facade.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: global_motion_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: level.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: level.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: lookahead.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: lookahead.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: mcomp.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: mcomp.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: mv_prec.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: palette.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: palette.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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_search.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: partition_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: partition_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: pass2_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: pickcdef.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: picklpf.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: picklpf.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: pickrst.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: pickrst.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: ratectrl.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: rd.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: rd.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: rdopt.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: nonrd_pickmode.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1_GET_REFERENCE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1_SET_REFERENCE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1_COPY_REFERENCE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1_GET_NEW_FRAME_IMAGE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1_COPY_NEW_FRAME_IMAGE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_USE_REFERENCE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_ROI_MAP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_ACTIVEMAP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_SCALEMODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_SPATIAL_LAYER_ID
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_CPUUSED
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOALTREF
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_SHARPNESS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_GET_LAST_QUANTIZER_64
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_ARNR_MAXFRAMES
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_ARNR_STRENGTH
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_TUNING
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_CQ_LEVEL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_GF_CBR_BOOST_PCT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_LOSSLESS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ROW_MT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_TILE_COLUMNS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_TILE_ROWS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TPL_MODEL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_KEYFRAME_FILTERING
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PARALLEL_DECODING
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ERROR_RESILIENT_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_S_FRAME_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_AQ_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_FRAME_PERIODIC_BOOST
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_NOISE_SENSITIVITY
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_TUNE_CONTENT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_CDF_UPDATE_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_COLOR_PRIMARIES
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_TRANSFER_CHARACTERISTICS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MATRIX_COEFFICIENTS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SAMPLE_POSITION
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MIN_GF_INTERVAL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MAX_GF_INTERVAL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_GET_ACTIVEMAP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_COLOR_RANGE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_RENDER_SIZE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CDEF
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RESTORATION
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_FORCE_VIDEO_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OBMC
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_DISABLE_TRELLIS_QUANT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_QM
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_8X8
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_QM_MIN
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_QM_MAX
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_QM_Y
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_QM_U
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_QM_V
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_NUM_TG
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MTU
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_PARTITIONS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_AB_PARTITIONS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_1TO4_PARTITIONS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MIN_PARTITION_SIZE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MAX_PARTITION_SIZE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRA_EDGE_FILTER
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ORDER_HINT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX64
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FLIP_IDTX
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_RECT_TX
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIST_WTD_COMP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_REF_FRAME_MVS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_REF_FRAME_MVS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DUAL_FILTER
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CHROMA_DELTAQ
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_MASKED_COMP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ONESIDED_COMP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_COMP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTERINTRA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIFF_WTD_COMP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTER_WEDGE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTERINTRA_WEDGE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_GLOBAL_MOTION
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_WARPED_MOTION
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ALLOW_WARPED_MOTION
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_FILTER_INTRA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SMOOTH_INTRA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PAETH_INTRA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_CFL_INTRA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_SUPERRES
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_OVERLAY
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_PALETTE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_INTRABC
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ANGLE_DELTA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SINGLE_TILE_DECODING
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_TIMING_INFO_TYPE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TEST_VECTOR
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_FILM_GRAIN_TABLE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_NOISE_LEVEL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_DENOISE_BLOCK_SIZE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_X
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_CHROMA_SUBSAMPLING_Y
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_TX_TYPE_SET
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DCT_ONLY
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_INTER_DCT_ONLY
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_INTRA_DEFAULT_TX_ONLY
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_QUANT_B_ADAPT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_GF_MAX_PYRAMID_HEIGHT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MAX_REFERENCE_FRAMES
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_REDUCED_REFERENCE_SET
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_COEFF_COST_UPD_FREQ
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MODE_COST_UPD_FREQ
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MV_COST_UPD_FREQ
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_TIER_MASK
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MIN_CR
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SVC_LAYER_ID
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SVC_PARAMS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_CONFIG
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_VMAF_MODEL_PATH
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_DV_COST_UPD_FREQ
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_PARTITION_INFO_PATH
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_EXTERNAL_PARTITION
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIRECTIONAL_INTRA
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_TX_SIZE_SEARCH
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SVC_REF_FRAME_COMP_PRED
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_DELTAQ_STRENGTH
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_LOOPFILTER_CONTROL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AOME_GET_LOOPFILTER_LEVEL
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_AUTO_INTRA_TOOLS_OFF
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_RTC_EXTERNAL_RC
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_FP_MT
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_FP_MT_UNIT_TEST
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: nonrd_opt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: segmentation.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: segmentation.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: speed_features.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: speed_features.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: superres_scale.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: svc_layercontext.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: temporal_filter.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_BITRATE_PCT
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_NUMBER_SPATIAL_LAYERS
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_GF_MIN_PYRAMID_HEIGHT
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_BASELINE_GF_INTERVAL
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DNL_DENOISING
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: tokenize.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: tokenize.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: tpl_model.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: tx_search.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: tx_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: txb_rdopt.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_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_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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
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_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
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_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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
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_ENABLE_SB_MULTIPASS_UNIT_TEST
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_VBR_CORPUS_COMPLEXITY_LAP
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_ENABLE_DNL_DENOISING
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_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_DELTAQ_STRENGTH
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: intra_mode_search.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: intra_mode_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_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_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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
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_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
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_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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
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_ENABLE_SB_MULTIPASS_UNIT_TEST
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_VBR_CORPUS_COMPLEXITY_LAP
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_ENABLE_DNL_DENOISING
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_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_DELTAQ_STRENGTH
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: var_based_part.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: var_based_part.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_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_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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
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_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
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_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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
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_ENABLE_SB_MULTIPASS_UNIT_TEST
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_VBR_CORPUS_COMPLEXITY_LAP
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_ENABLE_DNL_DENOISING
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_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_DELTAQ_STRENGTH
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: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: av1_noise_estimate.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: binary_codes_reader.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
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_FRAME_FLAGS
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_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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: binary_codes_reader.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_AV1D_GET_FRAME_SIZE
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_AV1_INVERT_TILE_DECODE_ORDER
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_SET_SKIP_LOOP_FILTER
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AV1_GET_ACCOUNTING
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_LAST_QUANTIZER
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_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: bitreader.c:aom_codec_control_typechecked_AV1D_SET_SKIP_FILM_GRAIN
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_FWD_KF_PRESENT
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_FRAME_FLAGS
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_ALTREF_PRESENT
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_AOMD_GET_SHOW_FRAME_FLAG
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_BASE_Q_IDX
Unexecuted instantiation: bitreader.c:aom_codec_control_typechecked_AOMD_GET_ORDER_HINT
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_SHARPNESS
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: arg_defs.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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_complexity.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: aq_complexity.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: aq_cyclicrefresh.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: aq_variance.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: compound_type.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: compound_type.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: encode_strategy.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: global_motion.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: global_motion.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: gop_structure.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_SHARPNESS
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_STATIC_THRESHOLD
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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_GET_SEQ_LEVEL_IDX
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_DELTALF_MODE
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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_ENABLE_EXT_TILE_DEBUG
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_GF_MIN_PYRAMID_HEIGHT
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_GET_BASELINE_GF_INTERVAL
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_ENABLE_DIAGONAL_INTRA
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_DELTAQ_STRENGTH
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: interp_search.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: interp_search.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
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_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_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_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_AOME_SET_MAX_INTRA_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_AOME_SET_MAX_INTER_BITRATE_PCT
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_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_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_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_CDF_UPDATE_MODE
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_TARGET_SEQ_LEVEL_IDX
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_SET_SUPERBLOCK_SIZE
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AOME_SET_ENABLEAUTOBWDREF
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_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_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_DELTAQ_MODE
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_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_SET_TIMING_INFO_TYPE
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_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_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_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_SET_VMAF_MODEL_PATH
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_ENABLE_SB_MULTIPASS_UNIT_TEST
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_VBR_CORPUS_COMPLEXITY_LAP
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_ENABLE_DNL_DENOISING
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_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_DELTAQ_STRENGTH
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: motion_search_facade.c:aom_codec_control_typechecked_AV1E_GET_TARGET_SEQ_LEVEL_IDX
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_GET_NUM_OPERATING_POINTS
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SKIP_POSTPROC_FILTERING
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_SB_QP_SWEEP
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_QUANTIZER_ONE_PASS
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_ENABLE_RATE_GUIDE_DELTAQ
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_RATE_DISTRIBUTION_INFO
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_GET_LUMA_CDEF_STRENGTH
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_BITRATE_ONE_PASS_CBR
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SVC_FRAME_DROP_MODE
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_AUTO_TILES
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_POSTENCODE_DROP_RTC
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_SCREEN_CONTENT_DETECTION_MODE
Unexecuted instantiation: motion_search_facade.c:aom_codec_control_typechecked_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
558
  typedef typ aom_codec_control_type_##id;
559
/*!@} end Codec Control group */
560
561
/*!\brief OBU types. */
562
typedef enum ATTRIBUTE_PACKED {
563
  OBU_SEQUENCE_HEADER = 1,
564
  OBU_TEMPORAL_DELIMITER = 2,
565
  OBU_FRAME_HEADER = 3,
566
  OBU_TILE_GROUP = 4,
567
  OBU_METADATA = 5,
568
  OBU_FRAME = 6,
569
  OBU_REDUNDANT_FRAME_HEADER = 7,
570
  OBU_TILE_LIST = 8,
571
  OBU_PADDING = 15,
572
} OBU_TYPE;
573
574
/*!\brief OBU metadata types. */
575
typedef enum {
576
  OBU_METADATA_TYPE_AOM_RESERVED_0 = 0,
577
  OBU_METADATA_TYPE_HDR_CLL = 1,
578
  OBU_METADATA_TYPE_HDR_MDCV = 2,
579
  OBU_METADATA_TYPE_SCALABILITY = 3,
580
  OBU_METADATA_TYPE_ITUT_T35 = 4,
581
  OBU_METADATA_TYPE_TIMECODE = 5,
582
} OBU_METADATA_TYPE;
583
584
/*!\brief Returns string representation of OBU_TYPE.
585
 *
586
 * \param[in]     type            The OBU_TYPE to convert to string.
587
 */
588
const char *aom_obu_type_to_string(OBU_TYPE type);
589
590
/*!@} - end defgroup codec*/
591
#ifdef __cplusplus
592
}
593
#endif
594
#endif  // AOM_AOM_AOM_CODEC_H_