您的位置:首页 > 移动开发 > Android开发

Android平台Stagefright中增加flv/f4v支持及相关原理介绍

2016-05-26 21:57 447 查看
http://blog.csdn.net/bonderwu/article/details/6261798

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.

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

先在此打个桩,容我日后完善此篇博客。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: