Browse Source

dct/rdft: Add missing typedefs for context structs

Without the typedefs there can be trouble depending on #include order.
tags/n2.4
Diego Biurrun 10 years ago
parent
commit
11c7155cce
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      libavcodec/dct.h
  2. +2
    -2
      libavcodec/rdft.h

+ 2
- 2
libavcodec/dct.h View File

@@ -28,7 +28,7 @@

#include "rdft.h"

struct DCTContext {
typedef struct DCTContext {
int nbits;
int inverse;
RDFTContext rdft;
@@ -36,7 +36,7 @@ struct DCTContext {
FFTSample *csc2;
void (*dct_calc)(struct DCTContext *s, FFTSample *data);
void (*dct32)(FFTSample *out, const FFTSample *in);
};
} DCTContext;

/**
* Set up DCT.


+ 2
- 2
libavcodec/rdft.h View File

@@ -48,7 +48,7 @@ extern SINTABLE(16384);
extern SINTABLE(32768);
extern SINTABLE(65536);

struct RDFTContext {
typedef struct RDFTContext {
int nbits;
int inverse;
int sign_convention;
@@ -58,7 +58,7 @@ struct RDFTContext {
SINTABLE_CONST FFTSample *tsin;
FFTContext fft;
void (*rdft_calc)(struct RDFTContext *s, FFTSample *z);
};
} RDFTContext;

/**
* Set up a real FFT.


Loading…
Cancel
Save