diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-23 23:26:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-23 23:26:02 +0100 |
commit | 320b8d6335548c473deef58f638665c82dda35b4 (patch) | |
tree | 8879641e51b757258c5f440c4167f0fa6934cc3d /libswresample/swresample.c | |
parent | 8ff4fff7741a2febfd52be80cee4aadba9f9d760 (diff) | |
download | ffmpeg-320b8d6335548c473deef58f638665c82dda35b4.tar.gz |
swr: fix swresample_version()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r-- | libswresample/swresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 107ce168af..84d0f40232 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -73,7 +73,7 @@ static const AVClass av_class = { unsigned swresample_version(void) { av_assert0(LIBSWRESAMPLE_VERSION_MICRO >= 100); - return LIBSWRESAMPLE_VERSION_MICRO; + return LIBSWRESAMPLE_VERSION_INT; } const char *swresample_configuration(void) |