Searched refs:working_packet (Results 1 – 2 of 2) sorted by relevance
139 if ((size_t)aspect->working_packet.bytes <= n) { in FLAC__ogg_decoder_aspect_read_callback_wrapper()141 n = aspect->working_packet.bytes; in FLAC__ogg_decoder_aspect_read_callback_wrapper()142 memcpy(buffer, aspect->working_packet.packet, n); in FLAC__ogg_decoder_aspect_read_callback_wrapper()149 memcpy(buffer, aspect->working_packet.packet, n); in FLAC__ogg_decoder_aspect_read_callback_wrapper()152 aspect->working_packet.packet += n; in FLAC__ogg_decoder_aspect_read_callback_wrapper()153 aspect->working_packet.bytes -= n; in FLAC__ogg_decoder_aspect_read_callback_wrapper()158 const int ret = ogg_stream_packetout(&aspect->stream_state, &aspect->working_packet); in FLAC__ogg_decoder_aspect_read_callback_wrapper()162 …if (aspect->working_packet.bytes > 0 && aspect->working_packet.packet[0] == FLAC__OGG_MAPPING_FIRS… in FLAC__ogg_decoder_aspect_read_callback_wrapper()163 const FLAC__byte *b = aspect->working_packet.packet; in FLAC__ogg_decoder_aspect_read_callback_wrapper()170 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