Displaying 12 results from an estimated 12 matches for "size16".
Did you mean:
size1
2015 Jul 05
3
[PATCH speexdsp] Don't rely on HAVE_STDINT_H et al. being defined
...configure.ac | 6 ++++++
include/speex/speexdsp_config_types.h.in | 8 +-------
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/configure.ac b/configure.ac
index 2cd2d1e..1de0c23 100644
--- a/configure.ac
+++ b/configure.ac
@@ -334,6 +334,12 @@ AC_SUBST([USIZE16])
AC_SUBST([SIZE32])
AC_SUBST([USIZE32])
+AS_IF([test "$ac_cv_header_stdint_h" = "yes"], [INCLUDE_STDINT="#include <stdint.h>"],
+ [test "$ac_cv_header_inttypes_h" = "yes"], [INCLUDE_STDINT="#include <inttypes.h>"]...
2014 May 16
3
Error when compiling FFmpeg with speex-git.
Hi
With 32-bit Xubuntu-14.04.
When I compile FFmpeg from git using speex-1.2rc1 it builds OK.
When I compile FFmpeg from git using speex-git it fails to build. (speex-HEAD-78cce67)
It's not a big deal, I don't mind using speex-1.2rc1.
But am I doing something wrong or is there something wrong with speex-git?
(I've put the details in a txt attachment to keep this email post
2000 Jul 27
3
Mainline nonportability
Hi folks,
I'd like to remind people with write access on the CVS mainline not to put any
tools/libs/patches into the main build that are not portable... I'm getting
not-very-pretty flames from NetBSD folks because libao fails to *configure*
under NetBSD (let alone build), thus breaking building the build for the
entire CVS mainline.
Specifically:
>checking size of int...
2014 May 16
0
Error when compiling FFmpeg with speex-git.
...Yeah the issue is that the include statements for speex_config_types.h are
only
hit when building speex, not third-party libraries. This started in commit
ef80120166c3a2552f77008f40c59a84577a36b5
Ron, do you think those include statements should also just be generated by
configure (like we do for @SIZE16@) instead
of being ifdef'd?
Best,
Tristan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20140516/f1366b57/attachment.htm
2014 May 17
1
Error when compiling FFmpeg with speex-git.
...he include statements for speex_config_types.h are
> only
> hit when building speex, not third-party libraries. This started in commit
> ef80120166c3a2552f77008f40c59a84577a36b5
> Ron, do you think those include statements should also just be generated by
> configure (like we do for @SIZE16@) instead
> of being ifdef'd?
Indeed, this had already been reported, I'd just been buried under other
things in the meantime and hadn't got back to it yet. I've pushed a fix
for it now though.
People might still want to be a bit cautious about deploying the code
from git, the...
2015 Jul 06
0
[PATCH speexdsp] Don't rely on HAVE_STDINT_H et al. being defined
...| 6 ++++++
> include/speex/speexdsp_config_types.h.in | 8 +-------
> 2 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/configure.ac b/configure.ac
> index 2cd2d1e..1de0c23 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -334,6 +334,12 @@ AC_SUBST([USIZE16])
> AC_SUBST([SIZE32])
> AC_SUBST([USIZE32])
>
> +AS_IF([test "$ac_cv_header_stdint_h" = "yes"], [INCLUDE_STDINT="#include <stdint.h>"],
> + [test "$ac_cv_header_inttypes_h" = "yes"], [INCLUDE_STDINT="#include...
1999 Oct 11
2
XMMS plugin patch
Hi,
I fixed the distorted audio bug in the XMMS plugin. A small follows
below:
--- vorbis.c.orig Mon Oct 11 04:05:14 1999
+++ vorbis.c Mon Oct 11 13:47:42 1999
@@ -161,7 +161,7 @@
/* XXX figure out something to put for the bitrate and how to calculate the length of the stream */
vorbis_ip.output->open_audio(FMT_S16_LE, od.vi.rate, od.vi.channels);
- vorbis_ip.set_info(filename,
2017 May 29
0
[PATCH] Add CMake build script
...e_file(stdint.h HAVE_STDINT_H)
+ if(HAVE_STDINT_H)
+ set(INCLUDE_STDINT "#include <stdint.h>")
+ else()
+ check_include_file(sys/types.h INCLUDE_SYS_TYPES_H)
+ if(HAVE_SYS_TYPES_H)
+ set(INCLUDE_STDINT "#include <sys/types.h>")
+ endif()
+ endif()
+endif()
+set(SIZE16 int16_t)
+set(USIZE16 uint16_t)
+set(SIZE32 int32_t)
+set(USIZE32 uint32_t)
+set(SIZE64 int64_t)
+configure_file(include/speex/speex_config_types.h.in include/speex/speex_config_types.h @ONLY)
+
+test_vararrays(VAR_ARRAYS)
+if(NOT VAR_ARRAYS)
+ check_include_file(alloca.h HAVE_ALLOCA_H)
+ if(WIN32)...
2005 May 12
2
Problem configuring speex 1.1.8
Can you send me the config.log?
Jean-Marc
Le vendredi 13 mai 2005 ? 00:16 +0200, Pierre a ?crit :
> Jean-Marc Valin wrote:
> > What platform (OS, compiler/version)
>
> GNU/Linux
> kernel 2.6.11.8
> gcc 3.4.3
>
> > Also, does it work with no options.
>
> No, I just tried with just "./configure" and I have the same error.
>
>
--
Jean-Marc
2005 May 13
0
Problem configuring speex 1.1.8
...OGG_CFLAGS=''
OGG_LIBS=' -logg'
PACKAGE='speex'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
SET_MAKE=''
SHELL='/bin/sh'
SIZE16=''
SIZE32=''
SPEEX_LT_AGE='2'
SPEEX_LT_CURRENT='3'
SPEEX_LT_REVISION='0'
SPEEX_VERSION='1.1.8'
STRIP='strip'
VERSION='1.1.8'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX=''
ac_ct_F77='g77'
ac_ct_RANLIB='ra...
2005 May 13
1
Problem configuring speex 1.1.8
...CKAGE='speex'
> PACKAGE_BUGREPORT=''
> PACKAGE_NAME=''
> PACKAGE_STRING=''
> PACKAGE_TARNAME=''
> PACKAGE_VERSION=''
> PATH_SEPARATOR=':'
> RANLIB='ranlib'
> SET_MAKE=''
> SHELL='/bin/sh'
> SIZE16=''
> SIZE32=''
> SPEEX_LT_AGE='2'
> SPEEX_LT_CURRENT='3'
> SPEEX_LT_REVISION='0'
> SPEEX_VERSION='1.1.8'
> STRIP='strip'
> VERSION='1.1.8'
> ac_ct_AR='ar'
> ac_ct_CC='gcc'
> ac_ct_CXX='...
2005 May 08
2
Problem configuring speex 1.1.8
...OGG_CFLAGS=''
OGG_LIBS=' -logg'
PACKAGE='speex'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
SET_MAKE=''
SHELL='/bin/sh'
SIZE16=''
SIZE32=''
SPEEX_LT_AGE='2'
SPEEX_LT_CURRENT='3'
SPEEX_LT_REVISION='0'
SPEEX_VERSION='1.1.8'
STRIP='strip'
VERSION='1.1.8'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX=''
ac_ct_F77='g77'
ac_ct_RANLIB='ra...