mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
ext/cairo/gsttextoverlay.c: Change strcasecmp() to g_strcasecmp(). Fixes #497292.
Original commit message from CVS: * ext/cairo/gsttextoverlay.c: Change strcasecmp() to g_strcasecmp(). Fixes #497292.
This commit is contained in:
parent
ccf7a43e6f
commit
d31b6078fb
2 changed files with 11 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-11-15 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/cairo/gsttextoverlay.c:
|
||||
Change strcasecmp() to g_strcasecmp(). Fixes #497292.
|
||||
|
||||
2007-11-15 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
#include <config.h>
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <gst/video/video.h>
|
||||
#include "gsttextoverlay.h"
|
||||
|
||||
|
@ -340,11 +339,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id,
|
|||
case ARG_VALIGN:{
|
||||
const gchar *s = g_value_get_string (value);
|
||||
|
||||
if (strcasecmp (s, "baseline") == 0)
|
||||
if (g_strcasecmp (s, "baseline") == 0)
|
||||
overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BASELINE;
|
||||
else if (strcasecmp (s, "bottom") == 0)
|
||||
else if (g_strcasecmp (s, "bottom") == 0)
|
||||
overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BOTTOM;
|
||||
else if (strcasecmp (s, "top") == 0)
|
||||
else if (g_strcasecmp (s, "top") == 0)
|
||||
overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_TOP;
|
||||
else
|
||||
g_warning ("Invalid 'valign' property value: %s", s);
|
||||
|
@ -353,11 +352,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id,
|
|||
case ARG_HALIGN:{
|
||||
const gchar *s = g_value_get_string (value);
|
||||
|
||||
if (strcasecmp (s, "left") == 0)
|
||||
if (g_strcasecmp (s, "left") == 0)
|
||||
overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_LEFT;
|
||||
else if (strcasecmp (s, "right") == 0)
|
||||
else if (g_strcasecmp (s, "right") == 0)
|
||||
overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_RIGHT;
|
||||
else if (strcasecmp (s, "center") == 0)
|
||||
else if (g_strcasecmp (s, "center") == 0)
|
||||
overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_CENTER;
|
||||
else
|
||||
g_warning ("Invalid 'halign' property value: %s", s);
|
||||
|
|
Loading…
Reference in a new issue