diff options
author | Rick Kern <kernrj@gmail.com> | 2016-04-27 10:53:07 -0400 |
---|---|---|
committer | wm4 <nfxjfg@googlemail.com> | 2016-05-04 18:40:40 +0200 |
commit | 645df431449dcdb9ccdc46952159a6570826a59b (patch) | |
tree | c2dafeb52461b8444e0a7314ec7a0a27391e26f5 | |
parent | fbe0cf8ca7e2546a20617f82135f23b23285cbcf (diff) | |
download | ffmpeg-645df431449dcdb9ccdc46952159a6570826a59b.tar.gz |
lavc/videotoolboxenc: Add entropy setting
Add an entropy setting to choose between CAVLC and CABAC.
Signed-off-by: Rick Kern <kernrj@gmail.com>
-rw-r--r-- | libavcodec/videotoolboxenc.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index 90b9a96ead..bd153e7f63 100644 --- a/libavcodec/videotoolboxenc.c +++ b/libavcodec/videotoolboxenc.c @@ -41,6 +41,12 @@ typedef enum VT_H264Profile { H264_PROF_COUNT } VT_H264Profile; +typedef enum VTH264Entropy{ + VT_ENTROPY_NOT_SET, + VT_CAVLC, + VT_CABAC +} VTH264Entropy; + static const uint8_t start_code[] = { 0, 0, 0, 1 }; typedef struct BufNode { @@ -69,6 +75,7 @@ typedef struct VTEncContext { int64_t profile; int64_t level; + int64_t entropy; int64_t allow_sw; @@ -605,6 +612,11 @@ static av_cold int vtenc_init(AVCodecContext *avctx) vtctx->has_b_frames = false; } + if (vtctx->entropy == VT_CABAC && vtctx->profile == H264_PROF_BASELINE) { + av_log(avctx, AV_LOG_WARNING, "CABAC entropy requires 'main' or 'high' profile, but baseline was requested. Encode will not use CABAC entropy.\n"); + vtctx->entropy = VT_ENTROPY_NOT_SET; + } + if (!get_vt_profile_level(avctx, &profile_level)) return AVERROR(EINVAL); vtctx->session = NULL; @@ -714,6 +726,21 @@ static av_cold int vtenc_init(AVCodecContext *avctx) } } + if (vtctx->entropy != VT_ENTROPY_NOT_SET) { + CFStringRef entropy = vtctx->entropy == VT_CABAC ? + kVTH264EntropyMode_CABAC: + kVTH264EntropyMode_CAVLC; + + status = VTSessionSetProperty(vtctx->session, + kVTCompressionPropertyKey_H264EntropyMode, + entropy); + + if (status) { + av_log(avctx, AV_LOG_ERROR, "Error setting entropy property: %d\n", status); + return AVERROR_EXTERNAL; + } + } + status = VTCompressionSessionPrepareToEncodeFrames(vtctx->session); if (status) { av_log(avctx, AV_LOG_ERROR, "Error: cannot prepare encoder: %d\n", status); @@ -1460,6 +1487,12 @@ static const AVOption options[] = { { "allow_sw", "Allow software encoding", OFFSET(allow_sw), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, + { "coder", "Entropy coding", OFFSET(entropy), AV_OPT_TYPE_INT, { .i64 = VT_ENTROPY_NOT_SET }, VT_ENTROPY_NOT_SET, VT_CABAC, VE, "coder" }, + { "cavlc", "CAVLC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CAVLC }, INT_MIN, INT_MAX, VE, "coder" }, + { "vlc", "CAVLC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CAVLC }, INT_MIN, INT_MAX, VE, "coder" }, + { "cabac", "CABAC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CABAC }, INT_MIN, INT_MAX, VE, "coder" }, + { "ac", "CABAC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CABAC }, INT_MIN, INT_MAX, VE, "coder" }, + { NULL }, }; |