android 4.1中的媒体编解码器示例实现

我试图在
Android上显示视频缓冲区.我正在使用Android 4.1 Jelly Bean中发布的媒体编解码器API.

样本如下:

 MediaCodec codec = MediaCodec.createDecoderByType(type);
 codec.configure(format, ...);

除了MediaFormat之外,configure方法还接受3个其他参数.我已经能够以某种方式弄清楚MediaFormat,但我不确定其他3个参数. (下面).

 MediaSurface, MediaCrypto and Flags. 

任何线索?

另外,如果我不加密我的视频缓冲区,我应该怎么处理MediaCrypto参数.

要求:

1) Decode the buffers on the android device, 
2) Display them on the screen. 

最佳答案 你可以从这里看到文章:

http://dpsm.wordpress.com/2012/07/28/android-mediacodec-decoded/

点赞