diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-04-13 20:54:52 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-04-13 20:54:52 +0000 |
commit | c35c0acbe6ba2a0ece057d9f2588277f9b6f19aa (patch) | |
tree | fd2e0ae5da851b0a262a0e4c77ead0cc63216f18 /ext | |
parent | 92bb41c8f8ec1ac0ab1fb44104b8201142c100b4 (diff) | |
download | gst-plugins-bad-c35c0acbe6ba2a0ece057d9f2588277f9b6f19aa.tar.gz gst-plugins-bad-c35c0acbe6ba2a0ece057d9f2588277f9b6f19aa.tar.bz2 gst-plugins-bad-c35c0acbe6ba2a0ece057d9f2588277f9b6f19aa.zip |
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.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dirac/gstdiracenc.cc | 8 |
1 files changed, 4 insertions, 4 deletions
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 <ds@schleef.org>"); + GST_ELEMENT_DETAILS ((gchar *) "Dirac Encoder", + (gchar *) "Codec/Encoder/Video", + (gchar *) "Encode raw YUV video into Dirac stream", + (gchar *) "David Schleef <ds@schleef.org>"); GstElementClass *element_class = GST_ELEMENT_CLASS (g_class); gst_element_class_add_pad_template (element_class, |