Displaying 2 results from an estimated 2 matches for "flac__seekablestreamencoderstatestr".
2004 Nov 10
4
Legal sample rates
...et_sample_rate(pflac->fse, 11025);
  FLAC__seekable_stream_encoder_set_bits_per_sample(pflac->fse, 8);
  if ((bps = FLAC__seekable_stream_encoder_init(pflac->fse)) != FLAC__SEEKABLE_STREAM_DECODER_OK)
  {	printf ("Error : FLAC encoder init returned error : %s\n",
                FLAC__SeekableStreamEncoderStateString [bps]);
        exit (1);
	}
and I'm triggering the error message, but the most information I
can get from the FLAC__SeekableStreamEncoderStateString method is
FLAC__SEEKABLE_STREAM_ENCODER_STREAM_ENCODER_ERROR.
SOmeone else has dug through the FLAC libraries and came to the 
conclusion th...
2004 Nov 10
0
Legal sample rates
...11025);
>   FLAC__seekable_stream_encoder_set_bits_per_sample(pflac->fse, 8);
> 
>   if ((bps = FLAC__seekable_stream_encoder_init(pflac->fse)) !=
> FLAC__SEEKABLE_STREAM_DECODER_OK)
>   {	printf ("Error : FLAC encoder init returned error : %s\n",
>                 FLAC__SeekableStreamEncoderStateString [bps]);
>         exit (1);
> 	}
> 
> and I'm triggering the error message, but the most information I
> can get from the FLAC__SeekableStreamEncoderStateString method is
> FLAC__SEEKABLE_STREAM_ENCODER_STREAM_ENCODER_ERROR.
> 
> SOmeone else has dug through the FLAC...