diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-10-22 16:18:02 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-10-22 16:18:02 +0200 |
commit | dd8a4b0f8c39803b6a33f4b4bc836cfc66222370 (patch) | |
tree | 32fb5e4b29968caef33ecd449d25288604556dfc /ffmpeg.c | |
parent | 866a4174dba066780c7be1ebdaa0152161cdf3e0 (diff) | |
parent | fb472e1a11a4e0caed2c3c91da01ea8e35d9e3f8 (diff) | |
download | ffmpeg-dd8a4b0f8c39803b6a33f4b4bc836cfc66222370.tar.gz |
Merge commit 'fb472e1a11a4e0caed2c3c91da01ea8e35d9e3f8'
* commit 'fb472e1a11a4e0caed2c3c91da01ea8e35d9e3f8':
avconv: add support for Intel QSV-accelerated transcoding
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -3012,6 +3012,11 @@ static int transcode_init(void) set_encoder_id(output_files[ost->file_index], ost); +#if CONFIG_LIBMFX + if (qsv_transcode_init(ost)) + exit_program(1); +#endif + if (!ost->filter && (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO || enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO)) { |