Searched defs:isWide (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/
H A DAMRWriter.cpp72 bool isWide = false; local
74 isWide = true;
84 CHECK_EQ(sampleRate, (isWide ? 16000 : 8000));
88 const char *kHeader = isWide ? "#!AMR-WB\n" : "#!AMR\n";
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) {
112 *frameSize = getFrameSize(isWide, FT);
210 bool isWide, const off64_t *offset_table, size_t offset_table_length)
213 mIsWide(isWide),
100 getFrameSizeByOffset(const sp<DataSource> &source, off64_t offset, bool isWide, size_t *frameSize) argument
208 AMRSource( const sp<DataSource> &source, const sp<MetaData> &meta, bool isWide, const off64_t *offset_table, size_t offset_table_length) argument
/frameworks/av/media/libstagefright/rtsp/
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/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCallbackHandler.java128 final String description, final boolean isWide, final int subId, boolean roaming) {
134 activityIn, activityOut, typeContentDescription, description, isWide,
125 setMobileDataIndicators(final IconState statusIcon, final IconState qsIcon, final int statusType, final int qsType,final boolean activityIn, final boolean activityOut, final String typeContentDescription, final String description, final boolean isWide, final int subId, boolean roaming) argument
H A DNetworkController.java53 String description, boolean isWide, int subId, boolean roaming) {}
51 setMobileDataIndicators(IconState statusIcon, IconState qsIcon, int statusType, int qsType, boolean activityIn, boolean activityOut, String typeContentDescription, String description, boolean isWide, int subId, boolean roaming) argument
H A DMobileSignalController.java575 int discContentDesc, int dataContentDesc, int dataType, boolean isWide,
581 mIsWide = isWide;
573 MobileIconGroup(String name, int[][] sbIcons, int[][] qsIcons, int[] contentDesc, int sbNullState, int qsNullState, int sbDiscState, int qsDiscState, int discContentDesc, int dataContentDesc, int dataType, boolean isWide, int qsDataType) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCellularTile.java247 String description, boolean isWide, int subId, boolean roaming) {
260 mInfo.isDataTypeIconWide = qsType != 0 && isWide;
245 setMobileDataIndicators(IconState statusIcon, IconState qsIcon, int statusType, int qsType, boolean activityIn, boolean activityOut, String typeContentDescription, String description, boolean isWide, int subId, boolean roaming) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java302 String description, boolean isWide, int subId, boolean roaming) {
312 state.mIsMobileTypeIconWide = statusType != 0 && isWide;
300 setMobileDataIndicators(IconState statusIcon, IconState qsIcon, int statusType, int qsType, boolean activityIn, boolean activityOut, String typeContentDescription, String description, boolean isWide, int subId, boolean roaming) argument

Completed in 227 milliseconds