From a9b276aa67dd924eec2066e5c36c2011a6b39f2b Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 15 Dec 2017 17:19:43 +0100 Subject: [PATCH] Remove useless forward declarations The required headers are included anyway. --- app/src/decoder.h | 2 -- app/src/frames.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/app/src/decoder.h b/app/src/decoder.h index 4d4f9191..88c0a8cb 100644 --- a/app/src/decoder.h +++ b/app/src/decoder.h @@ -5,8 +5,6 @@ #include struct frames; -typedef struct SDL_Thread SDL_Thread; -typedef struct SDL_mutex SDL_mutex; struct decoder { struct frames *frames; diff --git a/app/src/frames.h b/app/src/frames.h index 1d73af53..81c6eabf 100644 --- a/app/src/frames.h +++ b/app/src/frames.h @@ -5,8 +5,6 @@ // forward declarations typedef struct AVFrame AVFrame; -typedef struct SDL_mutex SDL_mutex; -typedef struct SDL_cond SDL_cond; struct frames { AVFrame *decoding_frame;