柯凡真实身高:Android平台Stagefright中增加flv/f4v支持及相关原理介绍

来源:百度文库 编辑:偶看新闻 时间:2024/04/30 20:50:43

Android平台Stagefright框架的文档非常少,以下两篇文章比较好,可以参考一下:

http://blogold.chinaunix.net/u1/57901/showart_2423206.html

http://blogold.chinaunix.net/u2/61880/showart_2339481.html

笔者最近在NV Tegra2的Android平台完成了stagefright中增加flv支持,基本能正常播所有本地和在线flv(h264+aac)文件。细节还是非常多的,一不留神就可能在一个小细节上卡上好几天。

--------------------------------------------------------------------------------------------------------------------

整个视频播放的过程(我就懒得画图了):
MediaPlayerService调用StagefrightPlayer
StagefrightPlayer调用AwesomePlayer
AwesomePlayer调用OMXCodec
OMXCodec调用Extractor中相关方法
OMXCodec调用Android标准的IOMX接口(即Stagefright中的OMX实现),OMX实现调用OMXMaster,OMXMaster调用OMXPluginBase插件接口获得外部codec的插件
OMXCodec调用render模块实现渲染

--------------------------------------------------------------------------------------------------------------------

Google大牛教我们如何在Stagefright中增加FLAC的支持,其他音视频格式同理(不过视频比纯音频要难得多):

There is no documentation on Stagefright. I haven't tried implementing a new stream type yet, but it does look pretty straightforward:

1. Create a FLAC stream extractor. See MP3Extractor.cpp or AMRExtractor.cpp for examples of audio stream extractors. It needs to be able to handle things like sniff a file to recognize FLAC content, seek in the stream, resync, etc. Add the new extractor to the list of stream extractors registered in DataSource.cpp.

2. Create a FLAC decoder node. See MP3Decoder.cpp or AMRNBDecoder.cpp for examples. Add the new codec to various places in OMXCodec.cpp so that the player engine can find it. Add the new mime type to the list of supported formats.

3. Add the FLAC container format to the MediaScanner (3 place if I remember correctly). This may already in Kenny's original FLAC submission.

4. Add FLAC to the unit tests in the media test framework.

This took all of about 5 minutes of spelunking in the code. The trick is just to use the existing audio formats as a guide.