diff options
author | Ruta Gadkari <rgadkari@nvidia.com> | 2019-03-12 13:54:04 +0530 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2019-05-08 12:07:28 +0200 |
commit | cc86982fc5f6ae7a25f448931dd3fc2b80c2ce0b (patch) | |
tree | 452112f6161a927d36889f4c7029e106ad29dc7a /configure | |
parent | 80155795bb433fe588a957be9fb96a0a2608a00f (diff) | |
download | ffmpeg-streaming-cc86982fc5f6ae7a25f448931dd3fc2b80c2ce0b.zip ffmpeg-streaming-cc86982fc5f6ae7a25f448931dd3fc2b80c2ce0b.tar.gz |
configure: enable ffnvcodec, nvenc, nvdec for ppc6le
Adding the support to build FFMPEG with HW accelerated decode and encode on PPC64
little endian architecture.
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -6513,6 +6513,14 @@ if enabled x86; then disable ffnvcodec cuvid nvdec nvenc ;; esac +elif enabled ppc64 && ! enabled bigendian; then + case $target_os in + linux) + ;; + *) + disable ffnvcodec cuvid nvdec nvenc + ;; + esac else disable ffnvcodec cuvid nvdec nvenc fi |