• Home
  • Raw
  • Download

Lines Matching refs:stream_info

194 	if(!FLAC__stream_encoder_set_channels(encoder, streaminfo_.data.stream_info.channels))  in test_stream_encoder()
199 …if(!FLAC__stream_encoder_set_bits_per_sample(encoder, streaminfo_.data.stream_info.bits_per_sample… in test_stream_encoder()
204 if(!FLAC__stream_encoder_set_sample_rate(encoder, streaminfo_.data.stream_info.sample_rate)) in test_stream_encoder()
214 if(!FLAC__stream_encoder_set_blocksize(encoder, streaminfo_.data.stream_info.min_blocksize)) in test_stream_encoder()
269 …if(!FLAC__stream_encoder_set_total_samples_estimate(encoder, streaminfo_.data.stream_info.total_sa… in test_stream_encoder()
371 if(FLAC__stream_encoder_get_channels(encoder) != streaminfo_.data.stream_info.channels) { in test_stream_encoder()
372 …printf("FAILED, expected %u, got %u\n", streaminfo_.data.stream_info.channels, FLAC__stream_encode… in test_stream_encoder()
378 …if(FLAC__stream_encoder_get_bits_per_sample(encoder) != streaminfo_.data.stream_info.bits_per_samp… in test_stream_encoder()
379 …printf("FAILED, expected %u, got %u\n", streaminfo_.data.stream_info.bits_per_sample, FLAC__stream… in test_stream_encoder()
385 if(FLAC__stream_encoder_get_sample_rate(encoder) != streaminfo_.data.stream_info.sample_rate) { in test_stream_encoder()
386 …printf("FAILED, expected %u, got %u\n", streaminfo_.data.stream_info.sample_rate, FLAC__stream_enc… in test_stream_encoder()
392 if(FLAC__stream_encoder_get_blocksize(encoder) != streaminfo_.data.stream_info.min_blocksize) { in test_stream_encoder()
393 …printf("FAILED, expected %u, got %u\n", streaminfo_.data.stream_info.min_blocksize, FLAC__stream_e… in test_stream_encoder()
453 …if(FLAC__stream_encoder_get_total_samples_estimate(encoder) != streaminfo_.data.stream_info.total_… in test_stream_encoder()
454 …printf("FAILED, expected %" PRIu64 ", got %" PRIu64 "\n", streaminfo_.data.stream_info.total_sampl… in test_stream_encoder()