Commit a80264d8 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Android vout: log when you can't get a subtitle surface

If there is no secondary surface, and we're using opaque -> no blend,
and no spu
parent a4ccbaff
...@@ -399,6 +399,8 @@ static android_window *AndroidWindow_New(vout_display_t *vd, ...@@ -399,6 +399,8 @@ static android_window *AndroidWindow_New(vout_display_t *vd,
{ {
if (id == AWindow_Video) if (id == AWindow_Video)
msg_Err(vd, "can't get Video Surface"); msg_Err(vd, "can't get Video Surface");
else if (id == AWindow_Subtitles)
msg_Err(vd, "can't get Subtitles Surface");
goto error; goto error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment