From: John Stebbins Date: Mon, 11 Jun 2018 01:47:55 +0000 (-0700) Subject: encavcodec: fix encoding with vp8 and vp8 encoders X-Git-Tag: 1.2.0~329 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5d46bedd1ff23ed8cf0ce05f5ee41acf56c490a;p=handbrake encavcodec: fix encoding with vp8 and vp8 encoders Was broken by the AMF merge --- diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c index 1e0db39a3..805365ac2 100644 --- a/libhb/encavcodec.c +++ b/libhb/encavcodec.c @@ -101,12 +101,12 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) case AV_CODEC_ID_VP8: { hb_log("encavcodecInit: VP8 encoder"); - codec = avcodec_find_encoder_by_name("libvpx_vp8"); + codec = avcodec_find_encoder_by_name("libvpx"); } break; case AV_CODEC_ID_VP9: { hb_log("encavcodecInit: VP9 encoder"); - codec = avcodec_find_encoder_by_name("libvpx_vp9"); + codec = avcodec_find_encoder_by_name("libvpx-vp9"); } break; case AV_CODEC_ID_H264: {