alessandro gst-plugins-bad: gst-plugins-bad/ gst-plugins-bad/ext/apexsink/ gst-plugins-bad/ext/faac/ gst-plugins-bad/ext/x264/
[email protected] Thu, 1 Jan 2009 17:44:26 -0800 (PST)
| Newsgroups | gmane.comp.video.gstreamer.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVS Root: /cvs/gstreamer
Module: gst-plugins-bad
Changes by: alessandro
Date: Fri Jan 02 2009 01:44:26 UTC
Log message:
* ext/apexsink/Makefile.am:
Link against -lgcrpyto for RSA_new and RSA_free.
* ext/faac/gstfaac.c:
* ext/x264/gstx264enc.c:
Fix compiler warnings.
Modified files:
. : ChangeLog
ext/apexsink : Makefile.am
ext/faac : gstfaac.c
ext/x264 : gstx264enc.c
Links:
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-bad/ChangeLog.diff?r1=1.3845&r2=1.3846
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-bad/ext/apexsink/Makefile.am.diff?r1=1.2&r2=1.3
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-bad/ext/faac/gstfaac.c.diff?r1=1.33&r2=1.34
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-bad/ext/x264/gstx264enc.c.diff?r1=1.17&r2=1.18
====Begin Diffs====
Index: ChangeLog
===================================================================
RCS file: /cvs/gstreamer/gst-plugins-bad/ChangeLog,v
retrieving revision 1.3845
retrieving revision 1.3846
diff -u -d -r1.3845 -r1.3846
--- ChangeLog 2 Jan 2009 01:12:34 -0000 1.3845
+++ ChangeLog 2 Jan 2009 01:44:09 -0000 1.3846
@@ -1,5 +1,13 @@
2009-01-02 Alessandro Decina <[email protected]>
+ * ext/apexsink/Makefile.am:
+ Link against -lgcrpyto for RSA_new and RSA_free.
+ * ext/faac/gstfaac.c:
+ * ext/x264/gstx264enc.c:
+ Fix compiler warnings.
+
+2009-01-02 Alessandro Decina <[email protected]>
* gst/mpegdemux/gstmpegdemux.c:
Initialize scr_rate_n and scr_rate_d in order to fix compiler warnings.
Index: Makefile.am
RCS file: /cvs/gstreamer/gst-plugins-bad/ext/apexsink/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile.am 4 Nov 2008 12:41:53 -0000 1.2
+++ Makefile.am 2 Jan 2009 01:44:11 -0000 1.3
@@ -3,7 +3,7 @@
libgstapexsink_la_SOURCES = gstapexplugin.c gstapexraop.c gstapexsink.c
libgstapexsink_la_CFLAGS = $(APEXSINK_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
libgstapexsink_la_LIBADD = $(APEXSINK_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) -lgstaudio-$(GST_MAJORMINOR) -lgstinterfaces-$(GST_MAJORMINOR)
-libgstapexsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgstapexsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lcrypto
libgstapexsink_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = gstapexraop.h gstapexsink.h
Index: gstfaac.c
RCS file: /cvs/gstreamer/gst-plugins-bad/ext/faac/gstfaac.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- gstfaac.c 15 Dec 2008 15:56:18 -0000 1.33
+++ gstfaac.c 2 Jan 2009 01:44:11 -0000 1.34
@@ -401,7 +401,7 @@
.5);
if (conf->bitRate > maxbitrate) {
GST_ELEMENT_WARNING (faac, RESOURCE, SETTINGS, (NULL),
- ("bitrate %u exceeds maximum allowed bitrate of %u for samplerate %d. "
+ ("bitrate %lu exceeds maximum allowed bitrate of %u for samplerate %d. "
"Setting bitrate to %u", conf->bitRate, maxbitrate,
faac->samplerate, maxbitrate));
conf->bitRate = maxbitrate;
Index: gstx264enc.c
RCS file: /cvs/gstreamer/gst-plugins-bad/ext/x264/gstx264enc.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- gstx264enc.c 14 Nov 2008 19:52:24 -0000 1.17
+++ gstx264enc.c 2 Jan 2009 01:44:11 -0000 1.18
@@ -617,7 +617,7 @@
encoder->x264enc = x264_encoder_open (&encoder->x264param);
if (!encoder->x264enc) {
GST_ELEMENT_ERROR (encoder, STREAM, ENCODE,
- ("Can not initialize x264 encoder."), (""));
+ ("Can not initialize x264 encoder."), (NULL));
return FALSE;
}
------------------------------------------------------------------------------