Home | History | Annotate | Download | only in libFLAC

Lines Matching full:got_a_frame

118 static FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame, FLAC__bool do_full_decode);
206 FLAC__bool got_a_frame; /* hack needed in Ogg FLAC seek routine to check when process_single() actually writes a frame */
1046 FLAC__bool got_a_frame;
1066 if(!read_frame_(decoder, &got_a_frame, /*do_full_decode=*/true))
1068 if(got_a_frame)
1144 FLAC__bool got_a_frame;
1158 if(!read_frame_(decoder, &got_a_frame, /*do_full_decode=*/false))
1160 if(got_a_frame)
2001 FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame, FLAC__bool do_full_decode)
2009 *got_a_frame = false;
2120 *got_a_frame = true;
2928 decoder->private_->got_a_frame = true;
3140 /* actually, we could have got_a_frame if our decoder is at FLAC__STREAM_DECODER_END_OF_STREAM so we need to check for that also */
3266 decoder->private_->got_a_frame = false;
3271 if(!decoder->private_->got_a_frame) {