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/muxavformat.c | |
parent | 9ec150b5461cc59eda93c5d3b3199fd97809972d (diff) |
enable libvpx VP9 encoder
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 0a69d83f8..b7533d4dc 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -290,6 +290,12 @@ static int avformatInit( hb_mux_object_t * m ) priv_size = 0; break; + case HB_VCODEC_FFMPEG_VP9: + track->st->codec->codec_id = AV_CODEC_ID_VP9; + priv_data = NULL; + priv_size = 0; + break; + case HB_VCODEC_THEORA: { track->st->codec->codec_id = AV_CODEC_ID_THEORA; |