2013-09-19 07:35:34 +00:00
|
|
|
#ifndef INTER_H_
|
|
|
|
#define INTER_H_
|
2013-04-24 07:35:27 +00:00
|
|
|
/**
|
2013-09-18 14:29:30 +00:00
|
|
|
* \file
|
|
|
|
* \brief Handling Coding Units (CU's) for inter frames.
|
|
|
|
*
|
|
|
|
* \author Marko Viitanen ( fador@iki.fi ),
|
|
|
|
* Tampere University of Technology,
|
|
|
|
* Department of Pervasive Computing.
|
|
|
|
* \author Ari Koivula ( ari@koivu.la ),
|
|
|
|
* Tampere University of Technology,
|
|
|
|
* Department of Pervasive Computing.
|
2013-04-24 07:35:27 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "global.h"
|
|
|
|
|
|
|
|
#include "picture.h"
|
|
|
|
#include "encoder.h"
|
|
|
|
|
|
|
|
|
2013-09-20 09:49:44 +00:00
|
|
|
void inter_set_block(picture* pic,uint32_t x_cu, uint32_t y_cu, uint8_t depth, cu_info *cur_cu);
|
2013-09-16 13:37:24 +00:00
|
|
|
void inter_recon(picture *ref,int32_t xpos, int32_t ypos,int32_t width, int16_t mv[2], picture* dst);
|
|
|
|
|
2013-09-18 11:52:50 +00:00
|
|
|
void inter_get_mv_cand(encoder_control *encoder, int32_t x_cu, int32_t y_cu, int8_t depth, int16_t mv_cand[2][2]);
|
2013-09-16 13:37:24 +00:00
|
|
|
|
2013-04-24 07:35:27 +00:00
|
|
|
#endif
|