diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-24 22:56:24 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-24 22:56:24 +0100 |
commit | 1937c4e0b9f504b3231eb44ba7c6b8da212cb0cc (patch) | |
tree | 5e5ca73991284ddd5df97c830433944cd2b2ce59 /libswresample/swresample.h | |
parent | 74656bdd4cad504b7c635dbaf294d24eb3ad2375 (diff) | |
download | ffmpeg-1937c4e0b9f504b3231eb44ba7c6b8da212cb0cc.tar.gz |
swr: make SwrContext a typedef.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r-- | libswresample/swresample.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h index 44d0003cd5..64b9aacd25 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -30,7 +30,7 @@ #include "libavutil/samplefmt.h" #define LIBSWRESAMPLE_VERSION_MAJOR 0 -#define LIBSWRESAMPLE_VERSION_MINOR 8 +#define LIBSWRESAMPLE_VERSION_MINOR 9 #define LIBSWRESAMPLE_VERSION_MICRO 100 #define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \ @@ -44,7 +44,7 @@ //long term TODO can we enable this dynamically? -struct SwrContext; +typedef struct SwrContext SwrContext; /** * Allocate SwrContext. |