Home | History | Annotate | Download | only in src

Lines Matching refs:aot

116     // I have only AOT, where tools are usually specified at eAOT.
117 // However, sometimes, AOT could tell us the tool involved. e.g.
118 // AOT==5 --> SBR
119 // AOT==29 --> PS
120 // AOT==2 --> AAC-LC
122 // we know SBR present only if it is indicated presence, or AOT says so.
123 guint aot = mix_acp_aac_get_aot(acp);
125 (aot == 5) ||
127 (aot == 29))?1:0;
134 // So MixAudio is implicitly selecting codec base on AOT, psPresentFlag and sbrPresentFlag.
136 if ((MIX_ACP_AAC_PS_FLAG(acp) == 1) || (aot == 29))
159 // AOT defined by MPEG spec is 5 for SBR but SST definition is 4 for SBR.
160 if (aot == 5)
161 p->aot = 4;
162 else if (aot == 2)
163 p->aot = aot;
208 AAC_DUMP(aot); /* Audio object type. 1=Main , 2=LC , 3=SSR, 4=SBR*/
385 // SST API specific 4 for SBR while AOT definition in MPEG 4 spec specific 5.
387 if (params->aot == 4)
389 else if (params->aot == 2)
390 mix_acp_aac_set_aot(acp, params->aot);