Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:page

66 	/*@@@ what about the page? */
99 * - The first packet is flushed to the first page.
101 * - Each metadata packet is flushed to page (this is not required,
196 while(ogg_stream_flush(&aspect->stream_state, &aspect->page) != 0) {
197 if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
199 if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
204 while(ogg_stream_pageout(&aspect->stream_state, &aspect->page) != 0) {
205 if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
207 if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)