From c35c0acbe6ba2a0ece057d9f2588277f9b6f19aa Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Sun, 13 Apr 2008 20:54:52 +0000 Subject: ext/dirac/gstdiracenc.cc: Fix compilation by casting string constants. Original commit message from CVS: * ext/dirac/gstdiracenc.cc: Fix compilation by casting string constants. * sys/Makefile.am: Fix WININET_DIR variable reference. --- ext/dirac/gstdiracenc.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/dirac/gstdiracenc.cc b/ext/dirac/gstdiracenc.cc index c6ed5c6b..8e203d3a 100644 --- a/ext/dirac/gstdiracenc.cc +++ b/ext/dirac/gstdiracenc.cc @@ -151,10 +151,10 @@ static void gst_dirac_enc_base_init (gpointer g_class) { static GstElementDetails dirac_enc_details = - GST_ELEMENT_DETAILS ("Dirac Encoder", - "Codec/Encoder/Video", - "Encode raw YUV video into Dirac stream", - "David Schleef "); + GST_ELEMENT_DETAILS ((gchar *) "Dirac Encoder", + (gchar *) "Codec/Encoder/Video", + (gchar *) "Encode raw YUV video into Dirac stream", + (gchar *) "David Schleef "); GstElementClass *element_class = GST_ELEMENT_CLASS (g_class); gst_element_class_add_pad_template (element_class, -- cgit v1.2.1