summaryrefslogtreecommitdiffstats
path: root/libhb/encavcodec.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-06-10 18:47:55 -0700
committerJohn Stebbins <[email protected]>2018-06-10 18:48:40 -0700
commitb5d46bedd1ff23ed8cf0ce05f5ee41acf56c490a (patch)
treed60ee17a11cd1db1f0b73d0d5ae848f083ff5a81 /libhb/encavcodec.c
parentb08d0c041f800bbf2cf1cb65d7a4f36e5b9d4657 (diff)
encavcodec: fix encoding with vp8 and vp8 encoders
Was broken by the AMF merge
Diffstat (limited to 'libhb/encavcodec.c')
-rw-r--r--libhb/encavcodec.c4
1 files changed, 2 insertions, 2 deletions
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:
{