flac__utils_printf(stderr,1,"%s: ERROR, bits-per-sample is %u in frame but %u in STREAMINFO\n",decoder_session->inbasefilename,bps,decoder_session->bps);
flac__utils_printf(stderr,1,"%s: ERROR, channels is %u in frame but %u in STREAMINFO\n",decoder_session->inbasefilename,channels,decoder_session->channels);
flac__utils_printf(stderr,1,"%s: ERROR, sample rate is %u in frame but %u in STREAMINFO\n",decoder_session->inbasefilename,frame->header.sample_rate,decoder_session->sample_rate);
if(decoder_session->skip_specification->value.samples==0)/* special case for when no --skip was given */
decoder_session->skip_specification->is_relative=false;/* convert to our meaning of beginning-of-stream */
else{
flac__utils_printf(stderr,1,"%s: ERROR, cannot use --skip because the total sample count was not found in the metadata\n",decoder_session->inbasefilename);
if(decoder_session->until_specification->value.samples==0)/* special case for when no --until was given */
decoder_session->until_specification->is_relative=false;/* convert to our meaning of end-of-stream */
else{
flac__utils_printf(stderr,1,"%s: ERROR, cannot use --until because the total sample count was not found in the metadata\n",decoder_session->inbasefilename);