diff options
author | Mark Thompson <sw@jkqxz.net> | 2016-04-09 16:48:27 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2016-06-09 21:15:39 +0100 |
commit | 19d7667a81499d4357ec8e0851701e17c238e584 (patch) | |
tree | 836425131abae74fba4b5e72e7b76a1793b08d03 /libavcodec | |
parent | 081961f819c0b16c7a860d7da7d39f1fd91bd2f0 (diff) | |
download | ffmpeg-19d7667a81499d4357ec8e0851701e17c238e584.tar.gz |
vaapi_encode: Add support for writing arbitrary additional packed headers
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vaapi_encode.c | 21 | ||||
-rw-r--r-- | libavcodec/vaapi_encode.h | 4 |
2 files changed, 25 insertions, 0 deletions
diff --git a/libavcodec/vaapi_encode.c b/libavcodec/vaapi_encode.c index 9da55c97fd..45f5e57490 100644 --- a/libavcodec/vaapi_encode.c +++ b/libavcodec/vaapi_encode.c @@ -293,6 +293,27 @@ static int vaapi_encode_issue(AVCodecContext *avctx, } } + if (ctx->codec->write_extra_header) { + for (i = 0;; i++) { + int type; + bit_len = 8 * sizeof(data); + err = ctx->codec->write_extra_header(avctx, pic, i, &type, + data, &bit_len); + if (err == AVERROR_EOF) + break; + if (err < 0) { + av_log(avctx, AV_LOG_ERROR, "Failed to write extra " + "header %d: %d.\n", i, err); + goto fail; + } + + err = vaapi_encode_make_packed_header(avctx, pic, type, + data, bit_len); + if (err < 0) + goto fail; + } + } + av_assert0(pic->nb_slices <= MAX_PICTURE_SLICES); for (i = 0; i < pic->nb_slices; i++) { slice = av_mallocz(sizeof(*slice)); diff --git a/libavcodec/vaapi_encode.h b/libavcodec/vaapi_encode.h index ec552dad0a..85f3a0c894 100644 --- a/libavcodec/vaapi_encode.h +++ b/libavcodec/vaapi_encode.h @@ -215,6 +215,10 @@ typedef struct VAAPIEncodeType { VAAPIEncodePicture *pic, int index, int *type, char *data, size_t *data_len); + int (*write_extra_header)(AVCodecContext *avctx, + VAAPIEncodePicture *pic, + int index, int *type, + char *data, size_t *data_len); } VAAPIEncodeType; |