mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
textoverlay: don't abort if we don't know how to paint shaded background for a format
It's not a very nice thing to do. https://bugzilla.gnome.org/show_bug.cgi?id=687666
This commit is contained in:
parent
5607b3a8b7
commit
a53f0f382e
1 changed files with 3 additions and 1 deletions
|
@ -1684,7 +1684,9 @@ gst_base_text_overlay_push_frame (GstBaseTextOverlay * overlay,
|
|||
ypos, ypos + overlay->image_height);
|
||||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
GST_FIXME_OBJECT (overlay, "implement background shading for format %s",
|
||||
gst_video_format_to_string (GST_VIDEO_FRAME_FORMAT (&frame)));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue