Searched refs:aot (Results 1 - 6 of 6) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | adts_header.c | 33 int aot, crc_abs; in ff_adts_header_parse() local 41 aot = get_bits(gbc, 2); /* profile_objecttype */ in ff_adts_header_parse() 61 hdr->object_type = aot + 1; in ff_adts_header_parse()
|
H A D | libfdk-aacenc.c | 128 int aot = FF_PROFILE_AAC_LOW + 1; in aac_encode_init() local 138 aot = avctx->profile + 1; in aac_encode_init() 140 if ((err = aacEncoder_SetParam(s->handle, AACENC_AOT, aot)) != AACENC_OK) { in aac_encode_init() 142 aot, aac_get_error(err)); in aac_encode_init() 146 if (aot == FF_PROFILE_AAC_ELD + 1 && s->eld_sbr) { in aac_encode_init() 167 if (aot == FF_PROFILE_AAC_ELD + 1 && s->eld_v2) { in aac_encode_init()
|
H A D | aacdec_template.c | 1427 const int aot = m4ac->object_type; in decode_ics_info() local 1431 if (aot != AOT_ER_AAC_ELD) { in decode_ics_info() 1439 if (aot == AOT_ER_AAC_LD && in decode_ics_info() 1476 if (aot == AOT_ER_AAC_LD || aot == AOT_ER_AAC_ELD) { in decode_ics_info() 1500 if (aot != AOT_ER_AAC_ELD) { in decode_ics_info() 1505 if (aot == AOT_AAC_MAIN) { in decode_ics_info() 1509 } else if (aot == AOT_AAC_LC || in decode_ics_info() 1510 aot == AOT_ER_AAC_LC) { in decode_ics_info() 1515 if (aot in decode_ics_info() 3176 int aot = m4ac->object_type; global() local [all...] |
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-unittests/ |
H A D | to_toml.py | 279 aot = tomlkit.aot() 281 aot.append(create_test(test)) 282 document.add(key, aot)
|
/third_party/ffmpeg/tools/ |
H A D | sidxindex.c | 69 int aot = codecpar->extradata[0] >> 3; in set_codec_str() local 70 if (aot == 31) in set_codec_str() 71 aot = ((AV_RB16(codecpar->extradata) >> 5) & 0x3f) + 32; in set_codec_str() 72 av_strlcatf(str, size, ".%d", aot); in set_codec_str()
|
/third_party/ffmpeg/libavformat/ |
H A D | dashenc.c | 398 int aot = par->extradata[0] >> 3; in set_codec_str() local 399 if (aot == 31) in set_codec_str() 400 aot = ((AV_RB16(par->extradata) >> 5) & 0x3f) + 32; in set_codec_str() 401 av_strlcatf(str, size, ".%d", aot); in set_codec_str()
|
Completed in 9 milliseconds