Home
last modified time | relevance | path

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/
DIcyDecoderTest.java46 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 …]
DIcyInfoTest.java32 IcyInfo streamInfo = in parcelEquals() local
36 streamInfo.writeToParcel(parcel, 0); in parcelEquals()
41 assertThat(fromParcelStreamInfo).isEqualTo(streamInfo); in parcelEquals()
/external/aac/libAACdec/src/
Daacdecoder_lib.cpp143 (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 …]
Daacdecoder.cpp194 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 …]
Daacdecoder.h241 streamInfo; /*!< Pointer to StreamInfo data (read from the bitstream) */ member
/external/exoplayer/tree/extensions/flac/src/main/jni/
Dflac_jni.cc146 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/
DFileFind.h107 bool FindFirst(CFSTR filePath, CStreamInfo &streamInfo);
108 bool FindNext(CStreamInfo &streamInfo);
119 bool Next(CStreamInfo &streamInfo, bool &found);
/external/oss-fuzz/projects/flac/
Dfuzzer_exo.cpp463 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/
DStreamConfigurationView.java243 mStreamInfoView = (TextView) findViewById(R.id.streamInfo); in initializeViews()