Skip to content

Commit 41a01ea

Browse files
author
Clement Champetier
committed
Library: fix swscale license
1 parent 50a8922 commit 41a01ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/AvTranscoder/Library.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ extern "C" {
44
#include <libavutil/version.h>
55
#include <libavcodec/version.h>
66
#include <libswscale/version.h>
7+
#include <libswscale/swscale.h>
78
#ifdef AV_RESAMPLE_LIBRARY
89
#include <libavresample/version.h>
910
#else
@@ -84,7 +85,7 @@ Libraries getLibraries()
8485
#else
8586
libs.push_back( Library( "swresample", avutil_license(), LIBSWRESAMPLE_VERSION_MAJOR, LIBSWRESAMPLE_VERSION_MINOR, LIBSWRESAMPLE_VERSION_MICRO ) );
8687
#endif
87-
libs.push_back( Library( "swscale", avutil_license(), LIBSWSCALE_VERSION_MAJOR, LIBSWSCALE_VERSION_MINOR, LIBSWSCALE_VERSION_MICRO ) );
88+
libs.push_back( Library( "swscale", swscale_license(), LIBSWSCALE_VERSION_MAJOR, LIBSWSCALE_VERSION_MINOR, LIBSWSCALE_VERSION_MICRO ) );
8889

8990
return libs;
9091
}

0 commit comments

Comments
 (0)