Commit 8e5321548ba3b9e0df61b041d842a0467ebea4ed
1 parent
61421e8b
more ffmpeg deps
Showing
1 changed file
with
41 additions
and
0 deletions
share/openbr/cmake/InstallDependencies.cmake
| ... | ... | @@ -143,6 +143,47 @@ function(install_ffmpeg) |
| 143 | 143 | find_library(SWSCALE swscale) |
| 144 | 144 | install_ffmpeg_help(${SWSCALE}) |
| 145 | 145 | |
| 146 | + find_library(XVIDCORE xvidcore) | |
| 147 | + install_ffmpeg_help(${XVIDCORE}) | |
| 148 | + | |
| 149 | + find_library(X264 x264) | |
| 150 | + install_ffmpeg_help(${X264}) | |
| 151 | + | |
| 152 | + find_library(BVPX bvpx) | |
| 153 | + install_ffmpeg_help(${BVPX}) | |
| 154 | + | |
| 155 | + find_library(VORBISENC vorbisenc) | |
| 156 | + install_ffmpeg_help(${VORBISENC}) | |
| 157 | + | |
| 158 | + find_library(VORBIS vorbis) | |
| 159 | + install_ffmpeg_help(${VORBIS}) | |
| 160 | + | |
| 161 | + find_library(THEORAENC theoraenc) | |
| 162 | + install_ffmpeg_help(${THEORAENC}) | |
| 163 | + | |
| 164 | + find_library(THEORADEC theoradec) | |
| 165 | + install_ffmpeg_help(${THEORADEC}) | |
| 166 | + | |
| 167 | + find_library(SPEEX speex) | |
| 168 | + install_ffmpeg_help(${SPEEX}) | |
| 169 | + | |
| 170 | + find_library(SCHROEDINGER-1.0 schroedinger-1.0) | |
| 171 | + install_ffmpeg_help(${SCHROEDINGER-1.0}) | |
| 172 | + | |
| 173 | + find_library(OPUS opus) | |
| 174 | + install_ffmpeg_help(${OPUS}) | |
| 175 | + | |
| 176 | + find_library(OPENJPEG openjpeg) | |
| 177 | + install_ffmpeg_help(${OPENJPEG}) | |
| 178 | + | |
| 179 | + find_library(MP3LAME mp3lame) | |
| 180 | + install_ffmpeg_help(${MP3LAME}) | |
| 181 | + | |
| 182 | + find_library(GSM gsm) | |
| 183 | + install_ffmpeg_help(${GSM}) | |
| 184 | + | |
| 185 | + find_library(VA va) | |
| 186 | + install_ffmpeg_help(${VA}) | |
| 146 | 187 | endif() |
| 147 | 188 | endif() |
| 148 | 189 | endfunction() | ... | ... |