Skip to content

Commit 3d4b67f

Browse files
author
Clement Champetier
committed
Library: added avfilter license
1 parent 44b24cd commit 3d4b67f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/AvTranscoder/Library.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ extern "C" {
55
#include <libavcodec/version.h>
66
#include <libswscale/version.h>
77
#include <libswscale/swscale.h>
8+
#include <libavfilter/version.h>
89
#ifdef AVTRANSCODER_LIBAV_DEPENDENCY
910
#include <libavresample/version.h>
1011
#else
1112
#include <libswresample/version.h>
1213
#endif
1314
#include <libavformat/avformat.h>
15+
#include <libavfilter/avfilter.h>
1416
}
1517

1618
#include <cstring>
@@ -86,6 +88,7 @@ Libraries getLibraries()
8688
libs.push_back( Library( "swresample", avutil_license(), LIBSWRESAMPLE_VERSION_MAJOR, LIBSWRESAMPLE_VERSION_MINOR, LIBSWRESAMPLE_VERSION_MICRO ) );
8789
#endif
8890
libs.push_back( Library( "swscale", swscale_license(), LIBSWSCALE_VERSION_MAJOR, LIBSWSCALE_VERSION_MINOR, LIBSWSCALE_VERSION_MICRO ) );
91+
libs.push_back( Library( "avfilter", avfilter_license(), LIBAVFILTER_VERSION_MAJOR, LIBAVFILTER_VERSION_MINOR, LIBAVFILTER_VERSION_MICRO ) );
8992

9093
return libs;
9194
}

0 commit comments

Comments
 (0)