mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 18:34:06 +00:00
27 lines
596 B
C
27 lines
596 B
C
/**
|
|
* HEVC Encoder
|
|
* - Marko Viitanen ( fador at iki.fi ), Tampere University of Technology, Department of Pervasive Computing 2013.
|
|
*/
|
|
|
|
/*! \file search.h
|
|
\brief searching
|
|
\author Marko Viitanen
|
|
\date 2013-04
|
|
|
|
Search related function headers
|
|
*/
|
|
|
|
#ifndef __SEARCH_H
|
|
#define __SEARCH_H
|
|
|
|
#include "global.h"
|
|
|
|
#include "encoder.h"
|
|
|
|
|
|
void search_slice_data(encoder_control* encoder);
|
|
void search_tree(encoder_control* encoder,uint16_t x_cu,uint16_t y_cu, uint8_t depth);
|
|
uint32_t search_best_mode(encoder_control* encoder,uint16_t x_cu,uint16_t y_cu, uint8_t depth);
|
|
|
|
#endif
|