From de0cd8796d835061898edb3ea89d9a3c84df859f Mon Sep 17 00:00:00 2001 From: Matthew Wozniak Date: Sun, 10 Nov 2024 22:40:14 -0500 Subject: Small code changes; add ability to find audio functions and data. Audio is weird. I've been working for a few days to figure out how to correctly render the audio but in that time I've done some other minor refactors so I figured I migth as well just push those. Audio should be coming soon, but no promises. --- render.h | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'render.h') diff --git a/render.h b/render.h index 49ccce3..e437466 100644 --- a/render.h +++ b/render.h @@ -14,24 +14,6 @@ * PERFORMANCE OF THIS SOFTWARE. */ -#include "intdef.h" - -#include -#include -#include - -bool render_init(int width, int height, int framerate, bool use_bitrate, - int quality, const char *output_file, int qvs); - -struct renderctx { - int width; - int height; - int fps; - int bit_rate; - GUID enc_format; - GUID in_fmt; - IMFSinkWriter *sink_writer; - ulong stream_index; -}; +bool render_init(void); // vi: sw=4 ts=4 noet tw=80 cc=80 -- cgit v1.2.3-54-g00ecf