1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
* render.h
*
* Created on: 26.01.2018
* Author: rigtopa
*
*/
#ifndef CREATOR_H_
#define CREATOR_H_
#define COORDS(x, y, width) ((y)*(width)+(x))
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <libavcodec/avcodec.h>
#include <libavutil/frame.h>
#include <libavutil/imgutils.h>
typedef struct config {
u32 iterations;
u8 threads;
u32 colorFrom;
u32 colorTo;
long double to_x;
long double to_y;
long double speed;
u8 video;
u8 filetype;
u16 width;
u16 height;
u8 renderFPS;
u8 videoFPS;
u32 bitrate;
const char *path;
// TODO: key mapping als option in die struct
} Config;
Config *_config;
u32 (*_sfunc) (long double, long double, u32);
u32 *s_arr;
long double x_min, x_max, y_min, y_max;
long double x_min_s, x_max_s, y_min_s, y_max_s;
int delta;
long double dt, ft;
static void encode(AVCodecContext *enc_ctx, AVFrame *frame, AVPacket *pkt, FILE *outfile);
int generateVideo(filename, int width, int height, int fps, int bitRate, Config *config, u32 (*sfunc) (long double, long double, u32));
#endif /* RENDER_H_ */
|