mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
ext/apexsink/Makefile.am: Link against -lgcrpyto for RSA_new and RSA_free.
Original commit message from CVS: * ext/apexsink/Makefile.am: Link against -lgcrpyto for RSA_new and RSA_free. * ext/faac/gstfaac.c: * ext/x264/gstx264enc.c: Fix compiler warnings.
This commit is contained in:
parent
1d71d95218
commit
833807a67f
4 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
2009-01-02 Alessandro Decina <alessandro.d@gmail.com>
|
||||
|
||||
* 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 <alessandro.d@gmail.com>
|
||||
|
||||
* gst/mpegdemux/gstmpegdemux.c:
|
||||
|
|
|
@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstapexsink.la
|
|||
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
|
||||
|
|
|
@ -401,7 +401,7 @@ gst_faac_configure_source_pad (GstFaac * faac)
|
|||
.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;
|
||||
|
|
|
@ -617,7 +617,7 @@ gst_x264_enc_init_encoder (GstX264Enc * encoder)
|
|||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue