diff options
author | John Stebbins <[email protected]> | 2019-01-16 09:18:08 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-01-18 12:10:18 -0800 |
commit | 1aa1278c0003fa8fee7b13b83ea81a1a851b10a2 (patch) | |
tree | 4bba4ee66f730a75dfdb2a07389b8de36d7d95f7 /libhb/work.c | |
parent | 271ad3952c54f46c0b2d6785a0a2f0830ae5c58e (diff) |
work: fix videotoolbox encoder logging
Log h.264 profile and level, and h.265 profile
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c index 5c7efb0b7..6c97af5a0 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -530,6 +530,8 @@ void hb_display_job_info(hb_job_t *job) case HB_VCODEC_FFMPEG_VCE_H265: case HB_VCODEC_FFMPEG_NVENC_H264: case HB_VCODEC_FFMPEG_NVENC_H265: + case HB_VCODEC_FFMPEG_VT_H264: + case HB_VCODEC_FFMPEG_VT_H265: hb_log(" + profile: %s", job->encoder_profile); default: break; @@ -548,6 +550,9 @@ void hb_display_job_info(hb_job_t *job) case HB_VCODEC_FFMPEG_VCE_H265: case HB_VCODEC_FFMPEG_NVENC_H264: case HB_VCODEC_FFMPEG_NVENC_H265: + case HB_VCODEC_FFMPEG_VT_H264: + // VT h.265 currently only supports auto level + // case HB_VCODEC_FFMPEG_VT_H265: hb_log(" + level: %s", job->encoder_level); default: break; |