Displaying 7 results from an estimated 7 matches for "bitwriter_grow_".
2013 Apr 07
2
flac 1.3.0pre3 pre-release
...arc with Sun Studio 12 gives the following compile errors:
>
> > CC bitreader.lo
> > "bitreader.c", line 494: warning: implicit function declaration: MIN
> > CC bitwriter.lo
> > "bitwriter.c", line 273: reference to static identifier "bitwriter_grow_" in extern inline function
> > "bitwriter.c", line 277: warning: implicit function declaration: MIN
> > "bitwriter.c", line 316: reference to static identifier "bitwriter_grow_" in extern inline function
> > cc: acomp failed for bitwriter.c
>...
2013 Apr 07
0
flac 1.3.0pre3 pre-release
...tudio 12 gives the following compile errors:
>>
>>> CC bitreader.lo
>>> "bitreader.c", line 494: warning: implicit function declaration: MIN
>>> CC bitwriter.lo
>>> "bitwriter.c", line 273: reference to static identifier "bitwriter_grow_" in extern inline function
>>> "bitwriter.c", line 277: warning: implicit function declaration: MIN
>>> "bitwriter.c", line 316: reference to static identifier "bitwriter_grow_" in extern inline function
>>> cc: acomp failed for bitwrite...
2012 Apr 05
1
[PATCH] remove unnecesary typedef in bitwriter.c
...accumulator; bits are right-justified; when full, accum is appended to buffer */
unsigned capacity; /* capacity of buffer in words */
unsigned words; /* # of complete words in buffer */
unsigned bits; /* # of used bits in accum */
@@ -96,7 +95,7 @@ struct FLAC__BitWriter {
static FLAC__bool bitwriter_grow_(FLAC__BitWriter *bw, unsigned bits_to_add)
{
unsigned new_capacity;
- bwword *new_buffer;
+ uint32_t *new_buffer;
FLAC__ASSERT(0 != bw);
FLAC__ASSERT(0 != bw->buffer);
@@ -118,7 +117,7 @@ static FLAC__bool bitwriter_grow_(FLAC__BitWriter *bw, unsigned bits_to_add)
FLAC__ASSERT(new_cap...
2013 Apr 05
0
flac 1.3.0pre3 pre-release
...pilation on Solaris 10 Sparc with Sun Studio 12 gives the following compile errors:
> CC bitreader.lo
> "bitreader.c", line 494: warning: implicit function declaration: MIN
> CC bitwriter.lo
> "bitwriter.c", line 273: reference to static identifier "bitwriter_grow_" in extern inline function
> "bitwriter.c", line 277: warning: implicit function declaration: MIN
> "bitwriter.c", line 316: reference to static identifier "bitwriter_grow_" in extern inline function
> cc: acomp failed for bitwriter.c
> gmake[4]: *** [...
2013 Apr 07
2
flac 1.3.0pre3 pre-release
Dagobert Michelsen wrote:
> Yes, C99 is on and according to B.2.18 from
> http://docs.oracle.com/cd/E19205-01/819-5265/bjapp/index.html
> also casual use. What does not work is the inclusion of a static function
> from extern inline. It also does work if I declare bitwriter_grow_ also
> as "inline".
I actually think SUN/Oracle Studio is doing the wrong thing here as
GCC, Clang and MSVC all accept the code as is.
I'm happy to see a SUN/Oracle Studio specific fix for this, but it should
not change the code for all the compilers where this currently works....
2013 Apr 01
17
flac 1.3.0pre3 pre-release
Hi all,
The latest pre-release is here:
http://downloads.xiph.org/releases/flac/beta/flac-1.3.0pre3.tar.xz
but there will probably need to be at least one more.
I've tested this on
x86_64-linux
powerpc-linux
i386-openbsd5.2
i386-freebsd9
The majority of changes since the last pre-release is the addition of
Janne Hyv?rinen's utf8 I/O functionality. Janne's
2013 May 26
0
flac 1.3.0pre3 pre-release
...> Dagobert Michelsen wrote:
>> Yes, C99 is on and according to B.2.18 from
>> http://docs.oracle.com/cd/E19205-01/819-5265/bjapp/index.html
>> also casual use. What does not work is the inclusion of a static function
>> from extern inline. It also does work if I declare bitwriter_grow_ also
>> as "inline".
>
> I actually think SUN/Oracle Studio is doing the wrong thing here as
> GCC, Clang and MSVC all accept the code as is.
>
> I'm happy to see a SUN/Oracle Studio specific fix for this, but it should
> not change the code for all the compi...