zoukankan      html  css  js  c++  java
  • [工作记录] Android OpenSL ES: references & AAC related

    AAC V.S. MP3

    http://en.wikipedia.org/wiki/Advanced_Audio_Coding#AAC.27s_improvements_over_MP3

    AAC patent lisense FAQ:

    http://www.vialicensing.com/licensing/aac-faq.aspx

    you may need a license(with a charge once and for all, $1000-$1500 ) but usually no fees, exept that when end user products are(/contain?) encoders/decoders.

    OpenSL ES Overview:

    $(NDK_ROOT)/docs/opensles/index.html

    Decode audio to PCM

    Note: this feature is available at API level 14 and higher.

    A standard audio player plays back to an audio device, and the data sink is specified as an output mix. However, as an Android extension, an audio player instead acts as a decoder if the data source is specified as a URI or Android file descriptor data locator with MIME data format, and the data sink is an Android simple buffer queue data locator with PCM data format.

    This feature is primarily intended for games to pre-load their audio assets when changing to a new game level, similar to android.media.SoundPool.

    The application should initially enqueue a set of empty buffers to the Android simple buffer queue, which will be filled with PCM data. The Android simple buffer queue callback is invoked after each buffer is filled. The callback handler should process the PCM data, re-enqueue the now-empty buffer, and then return. The application is responsible for keeping track of decoded buffers; the callback parameter list does not include sufficient information to indicate which buffer was filled or which buffer to enqueue next.

    The end of stream is determined implicitly by the data source. At the end of stream a SL_PLAYEVENT_HEADATEND event is delivered. The Android simple buffer queue callback will no longer be called after all consumed data is decoded.

    The sink's PCM data format typically matches that of the encoded data source with respect to sample rate, channel count, and bit depth. However, the platform implementation is permitted to decode to a different sample rate, channel count, or bit depth. There is a provision to detect the actual PCM format; see section "Determining the format of decoded PCM data via metadata" below.

    Decode to PCM supports pause and initial seek. Volume control, effects, looping, and playback rate are not supported.

    Depending on the platform implementation, decoding may require resources that cannot be left idle. Therefore it is not recommended to starve the decoder by failing to provide a sufficient number of empty PCM buffers, e.g. by returning from the Android simple buffer queue callback without enqueueing another empty buffer. The result of decoder starvation is unspecified; the implementation may choose to either drop the decoded PCM data, pause the decoding process, or in severe cases terminate the decoder.  

    OpenSL ES API docs:

    $(NDK_ROOT)/docs/opensles/OpenSL_ES_Specification_1.0.1.pdf

    Samples:

    $(NDK_ROOT)/samples/NativeAudio

    ADTS header (http://wiki.multimedia.cx/index.php?title=ADTS):

    LetterLength (bits)Description
    A 12 syncword 0xFFF, all bits must be 1
    B 1 MPEG Version: 0 for MPEG-4, 1 for MPEG-2
    C 2 Layer: always 0
    D 1 protection absent, Warning, set to 1 if there is no CRC and 0 if there is CRC
    E 2 profile, the MPEG-4 Audio Object Type minus 1
    F 4 MPEG-4 Sampling Frequency Index (15 is forbidden)
    G 1 private stream, set to 0 when encoding, ignore when decoding
    H 3 MPEG-4 Channel Configuration (in the case of 0, the channel configuration is sent via an inband PCE)
    I 1 originality, set to 0 when encoding, ignore when decoding
    J 1 home, set to 0 when encoding, ignore when decoding
    K 1 copyrighted stream, set to 0 when encoding, ignore when decoding
    L 1 copyright start, set to 0 when encoding, ignore when decoding
    M 13 frame length, this value must include 7 or 9 bytes of header length: FrameLength = (ProtectionAbsent == 1 ? 7 : 9) + size(AACFrame)
    O 11 Buffer fullness
    P 2 Number of AAC frames (RDBs) in ADTS frame minus 1, for maximum compatibility always use 1 AAC frame per ADTS frame
    Q 16 CRC if protection absent is 0 

    AAC decoding test sample (decoding only):

    https://android.googlesource.com/platform/frameworks/wilhelm/+/master/tests/examples/slesTestDecodeAac.cpp

    AAC encoding (offline):

    https://trac.ffmpeg.org/wiki/Encode/AAC

    AAC profile suitable for streaming:

    HE-AACv1(AAC+) / HE-AACv2( enhanced-AAC+)

    http://en.wikipedia.org/wiki/High_Efficiency_Advanced_Audio_Coding

  • 相关阅读:
    Dart中的类型转换总结:
    【Dart学习】--Dart之数组(List)的相关方法总结
    Navigator的使用:
    001——Angular环境搭建、运行项目、搭建项目
    Dart中的数据类型转换:
    Flutter中的Stack、Align、Positioned的使用
    Flutter设置图片为正方形
    顶部导航TabBar、TabBarView、DefaultTabController
    《慕客网:IOS基础入门之Foundation框架初体验》学习笔记 <二> NSMutableString
    Swift随记
  • 原文地址:https://www.cnblogs.com/crazii/p/3875033.html
Copyright © 2011-2022 走看看