Searched refs:isWide (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/rtsp/
H A DAAMRAssembler.h34 const sp<AMessage> &notify, bool isWide,
H A DAAMRAssembler.cpp62 const sp<AMessage> &notify, bool isWide, const AString &params)
63 : mIsWide(isWide),
81 static size_t getFrameSize(bool isWide, unsigned FT) { argument
93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
61 AAMRAssembler( const sp<AMessage> &notify, bool isWide, const AString &params) argument
H A DARTPWriter.cpp728 static size_t getFrameSize(bool isWide, unsigned FT) { argument
736 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
752 const bool isWide = (mMode == AMR_WB); local
756 uint32_t rtpTime = mRTPTimeBase + (timeUs / (isWide ? 250 : 125));
766 CHECK((isWide && FT <= 8) || (!isWide && FT <= 7));
769 srcOffset += getFrameSize(isWide, FT);
815 size_t frameSize = getFrameSize(isWide, FT);
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp38 bool isWide,
72 static size_t getFrameSize(bool isWide, unsigned FT) { argument
87 if (FT > 15 || (isWide && FT > 9 && FT < 14) || (!isWide && FT > 11 && FT < 15)) {
92 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
101 off64_t offset, bool isWide, size_t *frameSize) {
109 *frameSize = getFrameSize(isWide, FT);
204 bool isWide, const off64_t *offset_table, size_t offset_table_length)
207 mIsWide(isWide),
100 getFrameSizeByOffset(const sp<DataSource> &source, off64_t offset, bool isWide, size_t *frameSize) argument
202 AMRSource( const sp<DataSource> &source, const sp<MetaData> &meta, bool isWide, const off64_t *offset_table, size_t offset_table_length) argument
H A DAMRWriter.cpp83 bool isWide = false; local
85 isWide = true;
95 CHECK_EQ(sampleRate, (isWide ? 16000 : 8000));
99 const char *kHeader = isWide ? "#!AMR-WB\n" : "#!AMR\n";

Completed in 693 milliseconds