blob: 4f15212cbd3a12be63601c0973e7240f85bd05d4 [file]
/*
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
* Media Patent License 1.0 was not distributed with this source code in the
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
#ifndef AVM_AVM_DSP_FLOW_ESTIMATION_CORNER_DETECT_H_
#define AVM_AVM_DSP_FLOW_ESTIMATION_CORNER_DETECT_H_
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <memory.h>
#include "avm_dsp/pyramid.h"
#include "avm_util/avm_thread.h"
#ifdef __cplusplus
extern "C" {
#endif
#define MAX_CORNERS 4096
typedef struct corner_list {
#if CONFIG_MULTITHREAD
// Mutex which is used to prevent the corner list from being computed twice
// at the same time
//
// Semantics:
// * This mutex must be held whenever reading or writing the `valid` flag
//
// * This mutex must also be held while computing the image pyramid,
// to ensure that only one thread may do so at a time.
//
// * However, once you have read the valid flag and seen a true value,
// it is safe to drop the mutex and read from the remaining fields.
// This is because, once the image pyramid is computed, its contents
// will not be changed until the parent frame buffer is recycled,
// which will not happen until there are no more outstanding references
// to the frame buffer.
pthread_mutex_t mutex;
#endif // CONFIG_MULTITHREAD
// Flag indicating whether the corner list contains valid data
bool valid;
// Number of corners found
int num_corners;
// (x, y) coordinates of each corner
int corners[2 * MAX_CORNERS];
} CornerList;
size_t av2_get_corner_list_size(void);
CornerList *av2_alloc_corner_list(void);
bool av2_compute_corner_list(const YV12_BUFFER_CONFIG *frame, int bit_depth,
int downsample_level, CornerList *corners);
#ifndef NDEBUG
// Check if a corner list has already been computed.
// This is mostly a debug helper - as it is necessary to hold corners->mutex
// while reading the valid flag, we cannot just write:
// assert(corners->valid);
// This function allows the check to be correctly written as:
// assert(avm_is_corner_list_valid(corners));
bool avm_is_corner_list_valid(CornerList *corners);
#endif
void av2_invalidate_corner_list(CornerList *corners);
void av2_free_corner_list(CornerList *corners);
#ifdef __cplusplus
}
#endif
#endif // AVM_AVM_DSP_FLOW_ESTIMATION_CORNER_DETECT_H_