《android 视频帧帧速控制》

本文介绍了在Android中使用MediaCodec和SurfaceView处理网络视频流时,如何进行帧速控制以确保视频流畅性和及时性。算法基于固定间隔的视频帧PTS,通过调整帧解码和渲染的时机,有效控制延迟在约200ms,同时兼顾了流畅性和及时性。
摘要由CSDN通过智能技术生成

private long current_pts = 0;
private long last_pts = 0;
private long start_time =0;
private long end_time = 0;
private long round_interval = 0;
private long sum_interval = 0;
private long over_count = 0;

public void decodeFrame(byte[] buf, int frameSize, long pts,int dataSize) {

        synchronized (mDecoder) {

            current_pts = pts;
            if (start_time == 0) {
                start_time = new Date().getTime();
                last_pts = current_pts - 33;
            }

            int inputIndex = mDecoder.dequeueInputBuffer(0);

            if (inputIndex >= 0) {
                ByteBuffer inputBuffer;
                if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
                    inputBuffer = mInputBuffers[inputIndex];
                } else {
                    inputBuffer = mDecoder.getInputBuffer(inputIndex);
                }
             
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值