Searched refs:working_packet (Results 1 – 2 of 2) sorted by relevance
141 if ((size_t)aspect->working_packet.bytes <= n) { in FLAC__ogg_decoder_aspect_read_callback_wrapper()143 n = aspect->working_packet.bytes; in FLAC__ogg_decoder_aspect_read_callback_wrapper()144 memcpy(buffer, aspect->working_packet.packet, n); in FLAC__ogg_decoder_aspect_read_callback_wrapper()151 memcpy(buffer, aspect->working_packet.packet, n); in FLAC__ogg_decoder_aspect_read_callback_wrapper()154 aspect->working_packet.packet += n; in FLAC__ogg_decoder_aspect_read_callback_wrapper()155 aspect->working_packet.bytes -= n; in FLAC__ogg_decoder_aspect_read_callback_wrapper()160 const int ret = ogg_stream_packetout(&aspect->stream_state, &aspect->working_packet); in FLAC__ogg_decoder_aspect_read_callback_wrapper()164 …if (aspect->working_packet.bytes > 0 && aspect->working_packet.packet[0] == FLAC__OGG_MAPPING_FIRS… in FLAC__ogg_decoder_aspect_read_callback_wrapper()165 const FLAC__byte *b = aspect->working_packet.packet; in FLAC__ogg_decoder_aspect_read_callback_wrapper()172 if (aspect->working_packet.bytes < (long)header_length) in FLAC__ogg_decoder_aspect_read_callback_wrapper()[all …]
55 …ogg_packet working_packet; /* as we work through the packet we will move working_packet.packet for… member