mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
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.
This commit is contained in:
parent
92bb41c8f8
commit
c35c0acbe6
4 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2008-04-13 Jan Schmidt <jan.schmidt@sun.com>
|
||||||
|
|
||||||
|
* ext/dirac/gstdiracenc.cc:
|
||||||
|
Fix compilation by casting string constants.
|
||||||
|
|
||||||
|
* sys/Makefile.am:
|
||||||
|
Fix WININET_DIR variable reference.
|
||||||
|
|
||||||
2008-04-13 Jan Schmidt <jan.schmidt@sun.com>
|
2008-04-13 Jan Schmidt <jan.schmidt@sun.com>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit d3ace35f57dd196a3e83a0a48f1350ca32db8e39
|
Subproject commit bdc5172b0ba183be6d92e58cb51782c23e9f2127
|
|
@ -151,10 +151,10 @@ static void
|
||||||
gst_dirac_enc_base_init (gpointer g_class)
|
gst_dirac_enc_base_init (gpointer g_class)
|
||||||
{
|
{
|
||||||
static GstElementDetails dirac_enc_details =
|
static GstElementDetails dirac_enc_details =
|
||||||
GST_ELEMENT_DETAILS ("Dirac Encoder",
|
GST_ELEMENT_DETAILS ((gchar *) "Dirac Encoder",
|
||||||
"Codec/Encoder/Video",
|
(gchar *) "Codec/Encoder/Video",
|
||||||
"Encode raw YUV video into Dirac stream",
|
(gchar *) "Encode raw YUV video into Dirac stream",
|
||||||
"David Schleef <ds@schleef.org>");
|
(gchar *) "David Schleef <ds@schleef.org>");
|
||||||
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
||||||
|
|
||||||
gst_element_class_add_pad_template (element_class,
|
gst_element_class_add_pad_template (element_class,
|
||||||
|
|
|
@ -52,7 +52,7 @@ else
|
||||||
WININET_DIR=
|
WININET_DIR=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SUBDIRS = $(DVB_DIR) $(FBDEV_DIR) $(OSS4_DIR) $(QT_DIR) $(VCD_DIR) $(WININET)
|
SUBDIRS = $(DVB_DIR) $(FBDEV_DIR) $(OSS4_DIR) $(QT_DIR) $(VCD_DIR) $(WININET_DIR)
|
||||||
|
|
||||||
DIST_SUBDIRS = dvb fbdev dshowdecwrapper dshowsrcwrapper oss4 qtwrapper vcd wininet
|
DIST_SUBDIRS = dvb fbdev dshowdecwrapper dshowsrcwrapper oss4 qtwrapper vcd wininet
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue