search for: pstdint

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

Did you mean: stdint
2013 Mar 08
0
Updated MSVC patch
...say: /* If your compiler does not provide <stdint.h> you should provide a replacement * which has suitable replacements for the following intX_T and uintX_t types. * For example: * http://msinttypes.googlecode.com/svn/trunk/stdint.h * http://www.azillionmonkeys.com/qed/pstdint.h */ Is this not an acceptable solution? Its kind of neater and MSVC really is the only compiler I know of that doesn't have <stdint.h>. > Also don't forget to commit my earlier VERSION="1.3.0" patch. You can add > the "pre1" in a normal text editor w...
2013 Mar 06
4
Updated MSVC patch
Thanks, Erik. This is the delta that should fix everything up. I hope that #include "share/compat.h" is acceptable from the test_streams binary. If not, you can probably change it to FLAC/ordinals.h instead Also don't forget to commit my earlier VERSION="1.3.0" patch. You can add the "pre1" in a normal text editor without risk. I didn't include those
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
...ed by Simon Jackson (sizeak at gmail.com) 03/Jun/2015 */ /* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -35,125 +36,199 @@ /* Use the real stdint.h if it's there (taken from Paul Hsieh's pstdint.h) */ #if (defined(__STDC__) && __STDC__ && __STDC_VERSION__ >= 199901L) || (defined(__GNUC__) && (defined(_STDINT_H) || defined(_STDINT_H_)) || defined (HAVE_STDINT_H)) -#include <stdint.h> +# include <stdint.h> + typedef int8_t opus_int8; + typedef u...