diff options
author | John Stebbins <[email protected]> | 2016-05-27 08:05:53 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-05-27 13:53:16 -0600 |
commit | fe32414aef3a21fc7f42b38cc1f8eea8a62476a3 (patch) | |
tree | 6273f6cd63bee65f02555c825d3915aed2337f1f /libhb/work.c | |
parent | 9ec150b5461cc59eda93c5d3b3199fd97809972d (diff) |
enable libvpx VP9 encoder
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c index 00573fce1..d318fe447 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -215,6 +215,10 @@ hb_work_object_t* hb_video_encoder(hb_handle_t *h, int vcodec) w = hb_get_work(h, WORK_ENCAVCODEC); w->codec_param = AV_CODEC_ID_VP8; break; + case HB_VCODEC_FFMPEG_VP9: + w = hb_get_work(h, WORK_ENCAVCODEC); + w->codec_param = AV_CODEC_ID_VP9; + break; case HB_VCODEC_X264_8BIT: case HB_VCODEC_X264_10BIT: w = hb_get_work(h, WORK_ENCX264); |