HomeSort by relevance Sort by last modified time
    Searched full:chunk_id_ (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/content/renderer/media/android/
audio_decoder_android.cc 163 uint8_t chunk_id_[kChunkIDLength]; member in class:content::WAVEDecoder
246 memcpy(chunk_id_, buffer_, kChunkIDLength);
347 if (memcmp(chunk_id_, "RIFF", kChunkIDLength) != 0) {
354 memcpy(chunk_id_, buffer_, kFormatFieldLength);
355 if (memcmp(chunk_id_, "WAVE", kFormatFieldLength) != 0) {
379 if (memcmp(chunk_id_, "fmt ", kChunkIDLength) == 0) {
382 } else if (memcmp(chunk_id_, "data", kChunkIDLength) == 0) {
388 DVLOG(0) << "Ignoring WAVE chunk `" << chunk_id_ << "' size "

Completed in 85 milliseconds