Libvje / refactor : contrast (fix)

* clean headers
This commit is contained in:
[d.j.a.y] Jerome Blanchi
2016-07-31 14:03:54 +02:00
parent 16bed0b6d3
commit 366fff2f2e
2 changed files with 3 additions and 11 deletions

View File

@@ -17,12 +17,11 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 , USA.
*/
#include <config.h>
#include <stdint.h>
#include <stdio.h>
#include "common.h"
#include <libvjmem/vjmem.h>
#include "contrast.h"
#include "common.h"
vj_effect *contrast_init(int w, int h)
{
vj_effect *ve = (vj_effect *) vj_calloc(sizeof(vj_effect));

View File

@@ -20,14 +20,7 @@
#ifndef CONTRAST_H
#define CONTRAST_H
#include <libvje/vje.h>
#include <sys/types.h>
#include <stdint.h>
vj_effect *contrast_init();
void contrast_apply(VJFrame *frame, int *t);
void contrast_free();
#endif