@@ -257,7 +257,6 @@ int vmaf_feature_score_at_index(VmafContext *vmaf, const char *feature_name,
257
257
* Metadata structure.
258
258
*
259
259
* @param feature_name Name of the feature to fetch.
260
- * vmaf going to take ownership of this string.
261
260
*
262
261
* @param picture_index Picture index.
263
262
*
@@ -286,31 +285,6 @@ typedef struct VmafMetadataConfiguration {
286
285
void * data ;
287
286
} VmafMetadataConfiguration ;
288
287
289
-
290
- /**
291
- * Metadata flags.
292
- *
293
- * Features can provide additional metrics about the score. To propagate those,
294
- * the `VmafMetadataFlags` enum should be used for specifying which information should be
295
- * propagated to the metadata.
296
- *
297
- * @param VMAF_METADATA_FLAG_NONE No flags.
298
- *
299
- * @param VMAF_METADATA_FLAG_FEATURE Include all indivual metrics.
300
- *
301
- * @param VMAF_METADATA_FLAG_MODEL Propagate only model score.
302
- *
303
- * @param VMAF_METADATA_FLAG_FEATURE_NAME Propagate only given feature name..
304
- *
305
- */
306
-
307
- enum VmafMetadataFlags {
308
- VMAF_METADATA_FLAG_NONE = 0 ,
309
- VMAF_METADATA_FLAG_FEATURE = 1 << 0 ,
310
- VMAF_METADATA_FLAG_MODEL = 1 << 1 ,
311
- VMAF_METADATA_FLAG_FEATURE_NAME = 1 << 2 ,
312
- };
313
-
314
288
/**
315
289
* Register a callback to receive VMAF metadata.
316
290
*
@@ -324,19 +298,6 @@ enum VmafMetadataFlags {
324
298
325
299
int vmaf_register_metadata_handler (VmafContext * vmaf , VmafMetadataConfiguration cfg );
326
300
327
- /**
328
- * Get the number of registered metadata handlers.
329
- *
330
- * @param vmaf The VMAF context allocated with `vmaf_init()`.
331
- *
332
- * @param count Number of registered metadata handlers.
333
- *
334
- *
335
- * @return 0 on success, or < 0 (a negative errno code) on error.
336
- */
337
-
338
- int vmaf_get_metadata_handler_count (VmafContext * vmaf , unsigned * count );
339
-
340
301
/**
341
302
* Pooled VMAF score for a specific interval.
342
303
*
0 commit comments