2013-09-19 07:35:34 +00:00
|
|
|
#ifndef DEBUG_H_
|
|
|
|
#define DEBUG_H_
|
2013-09-18 07:57:38 +00:00
|
|
|
/**
|
2013-09-18 14:29:30 +00:00
|
|
|
* \file
|
|
|
|
* \brief Tools for visualizing and debugging the encoder.
|
|
|
|
*
|
|
|
|
* \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-09-18 07:57:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2013-09-18 07:57:38 +00:00
|
|
|
#include "encoder.h"
|
|
|
|
|
|
|
|
|
|
|
|
FILE * open_cu_file(char *filename);
|
|
|
|
void close_cu_file(FILE *fp);
|
2013-10-01 16:55:45 +00:00
|
|
|
unsigned render_cu_file(encoder_control *encoder, picture *pic, unsigned depth, uint16_t x_cu, uint16_t y_cu, FILE *fp);
|
2013-09-18 07:57:38 +00:00
|
|
|
|
|
|
|
#endif
|