HomeSort by relevance Sort by last modified time
    Searched refs:working_packet (Results 1 - 2 of 2) sorted by null

  /external/flac/libFLAC/
ogg_decoder_aspect.c 141 if ((size_t)aspect->working_packet.bytes <= n) {
143 n = aspect->working_packet.bytes;
144 memcpy(buffer, aspect->working_packet.packet, n);
151 memcpy(buffer, aspect->working_packet.packet, n);
154 aspect->working_packet.packet += n;
155 aspect->working_packet.bytes -= n;
160 const int ret = ogg_stream_packetout(&aspect->stream_state, &aspect->working_packet);
164 if (aspect->working_packet.bytes > 0 && aspect->working_packet.packet[0] == FLAC__OGG_MAPPING_FIRST_HEADER_PACKET_TYPE) {
165 const FLAC__byte *b = aspect->working_packet.packet
    [all...]
  /external/flac/libFLAC/include/private/
ogg_decoder_aspect.h 54 ogg_packet working_packet; /* as we work through the packet we will move working_packet.packet forward and working_packet.bytes down */ member in struct:FLAC__OggDecoderAspect

Completed in 95 milliseconds