summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2017-10-09 12:45:26 -0700
committerwm4 <wm4@nowhere>2017-10-09 21:49:01 +0200
commit1abac5f4aa06bd5a130d2e2ab1ffc8abbc63644d (patch)
treeb7186281bfdf8465ef24b7e38dbf11fe78026e4d /video
parent502d074a317f912c17c5dd15889cdf91311a23c5 (diff)
downloadmpv-1abac5f4aa06bd5a130d2e2ab1ffc8abbc63644d.tar.bz2
mpv-1abac5f4aa06bd5a130d2e2ab1ffc8abbc63644d.tar.xz
vo: fix reference to mediacodec_embed
Diffstat (limited to 'video')
-rw-r--r--video/out/vo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 5212546d90..f195568eaa 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -47,7 +47,7 @@
#include "osdep/io.h"
#include "osdep/threads.h"
-extern const struct vo_driver video_out_android;
+extern const struct vo_driver video_out_mediacodec_embed;
extern const struct vo_driver video_out_x11;
extern const struct vo_driver video_out_vdpau;
extern const struct vo_driver video_out_xv;
@@ -67,7 +67,7 @@ extern const struct vo_driver video_out_tct;
const struct vo_driver *const video_out_drivers[] =
{
#if HAVE_ANDROID
- &video_out_android,
+ &video_out_mediacodec_embed,
#endif
#if HAVE_RPI
&video_out_rpi,