summaryrefslogtreecommitdiff
path: root/libavcodec/dct.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/dct.h')
-rw-r--r--libavcodec/dct.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dct.h b/libavcodec/dct.h
index 24926a7718..3fd4e27833 100644
--- a/libavcodec/dct.h
+++ b/libavcodec/dct.h
@@ -28,7 +28,7 @@
#include "rdft.h"
-typedef struct DCTContext {
+struct DCTContext {
int nbits;
int inverse;
RDFTContext rdft;
@@ -36,7 +36,7 @@ typedef struct DCTContext {
FFTSample *csc2;
void (*dct_calc)(struct DCTContext *s, FFTSample *data);
void (*dct32)(FFTSample *out, const FFTSample *in);
-} DCTContext;
+};
/**
* Set up DCT.