search for: shout_priv

Displaying 3 results from an estimated 3 matches for "shout_priv".

Did you mean: shost_priv
2013 Jun 24
3
Streaming AAC with libshout?
The open source fdk-aac encoder, available there: https://github.com/mstorsjo/fdk-aac offers pretty good quality. As for libshout, I do not think that it is currently posible to send AAC data using it. First, libshout doesn't have support to buffer and control timing of data sent. And even is you use the un-timed API (shout_send_raw), the library cannot set the proper mime type, due to a
2013 Apr 06
0
libshout mingw compatbility
...Makefile.am 2012-04-04 20:07:34 +0400 @@ -18,7 +18,7 @@ SUBDIRS = avl net timing httpp $(MAYBE_THREAD) lib_LTLIBRARIES = libshout.la -libshout_la_LDFLAGS = -version-info 5:0:2 +libshout_la_LDFLAGS = -version-info 5:0:2 -no-undefined EXTRA_DIST = theora.c speex.c noinst_HEADERS = shout_ogg.h shout_private.h util.h -------------- next part -------------- --- libshout-2.2.2/include/shout/shout.h.in.orig 2005-06-28 01:33:21 +0400 +++ libshout-2.2.2/include/shout/shout.h.in 2012-04-04 19:32:18 +0400 @@ -22,7 +22,7 @@ #define __LIBSHOUT_SHOUT_H__ #include <sys/types.h> -#ifdef WIN32 +#ifdef...
2017 Nov 16
0
[PATCH] [libshout] tls: compile with OpenSSL 1.1.0
...int.cc> --- src/tls.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/tls.c b/src/tls.c index d1af607c0014..fc8a748f3ecf 100644 --- a/src/tls.c +++ b/src/tls.c @@ -24,6 +24,7 @@ #endif #include <shout/shout.h> +#include <string.h> #include "shout_private.h" #ifndef XXX_HAVE_X509_check_host @@ -61,16 +62,20 @@ shout_tls_t *shout_tls_new(shout_t *self, sock_t socket) static inline int tls_setup(shout_tls_t *tls) { - SSL_METHOD *meth; + const SSL_METHOD *meth; +#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VE...