uvg266/src/debug.h

22 lines
534 B
C
Raw Normal View History

/**
* HEVC Encoder
* - Marko Viitanen ( fador at iki.fi ), Tampere University of Technology, Department of Pervasive Computing 2013.
* - Ari Koivula (ari at koivu.la ), Tampere University of Technology, Department of Pervasive Computing 2013.
*/
#ifndef __DEBUG_H
#define __DEBUG_H
#include "global.h"
#include <stdio.h>
#include "encoder.h"
FILE * open_cu_file(char *filename);
void close_cu_file(FILE *fp);
2013-09-18 11:42:05 +00:00
unsigned render_cu_file(encoder_control *encoder, unsigned depth, uint16_t x_cu, uint16_t y_cu, FILE *fp);
#endif