diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-02-10 10:40:59 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-02-19 15:08:49 +0100 |
commit | 4e08c821106fc1d6d358864abf0d8488b12f38c6 (patch) | |
tree | 2198ad72d3ff3fa4db3319ff33d9aa60a12cbe21 /configure | |
parent | 31d2039cb42668ebcf08248bc48bbad44aa05f49 (diff) | |
download | ffmpeg-4e08c821106fc1d6d358864abf0d8488b12f38c6.tar.gz |
lavc: add an Intel libmfx-based H.264 decoder
Based on the code by Luca Barbato <lu_zero@gentoo.org> and Yukinori
Yamazoe <drocon11@gmail.com>.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -189,6 +189,7 @@ External library support: --enable-libfreetype enable libfreetype [no] --enable-libgsm enable GSM de/encoding via libgsm [no] --enable-libilbc enable iLBC de/encoding via libilbc [no] + --enable-libmfx enable HW acceleration through libmfx --enable-libmp3lame enable MP3 encoding via libmp3lame [no] --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no] --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no] @@ -1153,6 +1154,7 @@ EXTERNAL_LIBRARY_LIST=" libfreetype libgsm libilbc + libmfx libmp3lame libopencore_amrnb libopencore_amrwb @@ -1235,6 +1237,7 @@ SUBSYSTEM_LIST=" lzo mdct network + qsv rdft " @@ -1820,6 +1823,8 @@ h263i_decoder_select="h263_decoder" h263p_encoder_select="h263_encoder" h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel startcode videodsp" h264_decoder_suggest="error_resilience" +h264_qsv_decoder_deps="libmfx" +h264_qsv_decoder_select="h264_mp4toannexb_bsf h264_parser qsv h264_qsv_hwaccel" hevc_decoder_select="bswapdsp cabac golomb videodsp" huffyuv_decoder_select="bswapdsp huffyuvdsp" huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp" @@ -4195,6 +4200,7 @@ enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do check_lib "${gsm_hdr}" gsm_create -lgsm && break; done || die "ERROR: libgsm not found"; } enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc +enabled libmfx && require_pkg_config libmfx "mfx/mfxvideo.h" MFXInit enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb |