Home | History | Annotate | Download | only in rtsp

Lines Matching refs:audioObjectType

99         ABitReader *bits, unsigned *audioObjectType) {
100 *audioObjectType = bits->getBits(5);
101 if ((*audioObjectType) == 31) {
102 *audioObjectType = 32 + bits->getBits(6);
110 unsigned audioObjectType, unsigned channelConfiguration) {
123 if (audioObjectType == 6 || audioObjectType == 20) {
128 if (audioObjectType == 22) {
131 } else if (audioObjectType == 17 || audioObjectType == 19
132 || audioObjectType == 20 || audioObjectType == 23) {
149 unsigned audioObjectType;
150 CHECK_EQ(parseAudioObjectType(bits, &audioObjectType), (status_t)OK);
162 if (audioObjectType == 5) {
163 extensionAudioObjectType = audioObjectType;
169 CHECK_EQ(parseAudioObjectType(bits, &audioObjectType), (status_t)OK);
172 CHECK((audioObjectType >= 1 && audioObjectType <= 4)
173 || (audioObjectType >= 6 && audioObjectType <= 7)
174 || audioObjectType == 17
175 || (audioObjectType >= 19 && audioObjectType <= 23));
178 bits, audioObjectType, channelConfiguration), (status_t)OK);
180 if (audioObjectType == 17
181 || (audioObjectType >= 19 && audioObjectType <= 27)) {