Skip to content

Commit

Permalink
vo_rpi: partially undeprecate
Browse files Browse the repository at this point in the history
Using vo_opengl + MMAL overlay didn't quite work out.
  • Loading branch information
wm4 committed Dec 8, 2016
1 parent 3eceac2 commit 51fd8f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions video/out/vo.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ extern const struct vo_driver video_out_tct;

const struct vo_driver *const video_out_drivers[] =
{
#if HAVE_RPI
&video_out_rpi,
#endif
#if HAVE_GL
&video_out_opengl,
#endif
Expand Down Expand Up @@ -102,9 +105,6 @@ const struct vo_driver *const video_out_drivers[] =
#endif
#if HAVE_GL
&video_out_opengl_cb,
#endif
#if HAVE_RPI
&video_out_rpi,
#endif
NULL
};
Expand Down
3 changes: 0 additions & 3 deletions video/out/vo_rpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -869,9 +869,6 @@ static void uninit(struct vo *vo)

static int preinit(struct vo *vo)
{
MP_WARN(vo, "This VO is deprecated! Use --vo=opengl instead (which has "
"the same features and which is the default).\n");

struct priv *p = vo->priv;

p->background_layer = p->layer;
Expand Down

0 comments on commit 51fd8f6

Please sign in to comment.