Searched refs:streamInfo (Results 1 – 9 of 9) sorted by relevance
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/metadata/icy/ |
D | IcyDecoderTest.java | 46 IcyInfo streamInfo = (IcyInfo) metadata.get(0); in decode() local 47 assertThat(streamInfo.rawMetadata).isEqualTo(icyContent); in decode() 48 assertThat(streamInfo.title).isEqualTo("test title"); in decode() 49 assertThat(streamInfo.url).isEqualTo("test_url"); in decode() 64 IcyInfo streamInfo = (IcyInfo) metadata.get(0); in decode_respectsLimit() local 65 assertThat(streamInfo.rawMetadata).isEqualTo(icyTitle); in decode_respectsLimit() 66 assertThat(streamInfo.title).isEqualTo("test title"); in decode_respectsLimit() 67 assertThat(streamInfo.url).isNull(); in decode_respectsLimit() 77 IcyInfo streamInfo = (IcyInfo) metadata.get(0); in decode_titleOnly() local 78 assertThat(streamInfo.rawMetadata).isEqualTo(icyContent); in decode_titleOnly() [all …]
|
D | IcyInfoTest.java | 32 IcyInfo streamInfo = in parcelEquals() local 36 streamInfo.writeToParcel(parcel, 0); in parcelEquals() 41 assertThat(fromParcelStreamInfo).isEqualTo(streamInfo); in parcelEquals()
|
/external/aac/libAACdec/src/ |
D | aacdecoder_lib.cpp | 143 (self->streamInfo.aacSamplesPerFrame > in aacDecoder_setMetadataExpiry() 145 FIXP_DBL frameTime = fDivNorm(self->streamInfo.aacSampleRate, in aacDecoder_setMetadataExpiry() 146 self->streamInfo.aacSamplesPerFrame * 1000); in aacDecoder_setMetadataExpiry() 900 self->streamInfo.numLostAccessUnits = 0; in aacDecoder_SetParam() 901 self->streamInfo.numBadBytes = 0; in aacDecoder_SetParam() 902 self->streamInfo.numTotalBytes = 0; in aacDecoder_SetParam() 1177 self->streamInfo.numLostAccessUnits = 0; in aacDecoder_DecodeFrame() 1191 self->streamInfo.numChannels = 0; in aacDecoder_DecodeFrame() 1214 self->streamInfo.numLostAccessUnits = in aacDecoder_DecodeFrame() 1234 if (self->streamInfo.numLostAccessUnits > 0) { in aacDecoder_DecodeFrame() [all …]
|
D | aacdecoder.cpp | 194 if (IS_USAC(self->streamInfo.aot)) { in CAacDecoder_SyncQmfMode() 199 if ((IS_LOWDELAY(self->streamInfo.aot) && in CAacDecoder_SyncQmfMode() 201 ((self->streamInfo.aacNumChannels == 1) && in CAacDecoder_SyncQmfMode() 202 ((CAN_DO_PS(self->streamInfo.aot) && in CAacDecoder_SyncQmfMode() 204 (IS_USAC(self->streamInfo.aot))))) { in CAacDecoder_SyncQmfMode() 212 if (IS_LOWDELAY(self->streamInfo.aot) && in CAacDecoder_SyncQmfMode() 256 ((CAN_DO_PS(self->streamInfo.aot) && in CAacDecoder_SyncQmfMode() 257 !PS_IS_EXPLICITLY_DISABLED(self->streamInfo.aot, self->flags[0]) && in CAacDecoder_SyncQmfMode() 258 self->streamInfo.aacNumChannels == 1 && in CAacDecoder_SyncQmfMode() 810 if ((self->streamInfo.numChannels == 0) && !implicitExplicitCfgDiff && in CAacDecoder_PreRollExtensionPayloadParse() [all …]
|
D | aacdecoder.h | 241 streamInfo; /*!< Pointer to StreamInfo data (read from the bitstream) */ member
|
/external/exoplayer/tree/extensions/flac/src/main/jni/ |
D | flac_jni.cc | 146 const FLAC__StreamMetadata_StreamInfo &streamInfo = in DECODER_FUNC() local 157 streamInfo.min_blocksize, streamInfo.max_blocksize, in DECODER_FUNC() 158 streamInfo.min_framesize, streamInfo.max_framesize, in DECODER_FUNC() 159 streamInfo.sample_rate, streamInfo.channels, in DECODER_FUNC() 160 streamInfo.bits_per_sample, streamInfo.total_samples, in DECODER_FUNC()
|
/external/lzma/CPP/Windows/ |
D | FileFind.h | 107 bool FindFirst(CFSTR filePath, CStreamInfo &streamInfo); 108 bool FindNext(CStreamInfo &streamInfo); 119 bool Next(CStreamInfo &streamInfo, bool &found);
|
/external/oss-fuzz/projects/flac/ |
D | fuzzer_exo.cpp | 463 auto streamInfo = parser.getStreamInfo(); in LLVMFuzzerTestOneInput() local 466 int buffer_size = streamInfo.max_blocksize * streamInfo.channels * 2; in LLVMFuzzerTestOneInput()
|
/external/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
D | StreamConfigurationView.java | 243 mStreamInfoView = (TextView) findViewById(R.id.streamInfo); in initializeViews()
|