Android如何提高ffmpeg的mp4性能



我已经检测到功能avcodec_decode_audio3在mp4格式下工作缓慢,这里是我解码音频的代码周期:

while (av_read_frame(av_format_context, &packet) >= 0 && is_play == 1) {
        if (av_codec_context->codec_type == AVMEDIA_TYPE_AUDIO
                && is_play == 1) {
            int out_size = AVCODEC_MAX_AUDIO_FRAME_SIZE;
            int size = packet.size;
            int n;
            int dataLength = size;
            int decoded = 0;
            while (size > 0) {
                //start measure time
                gettimeofday(&tvBegin, NULL);
                int len = avcodec_decode_audio3(av_codec_context,
                        (int16_t *) pAudioBuffer, &out_size, &packet);
                //stop measure time
                gettimeofday(&tvEnd, NULL);
                timeval_subtract(&tvDiff, &tvEnd, &tvBegin);
                LOGI("%d", tvDiff.tv_usec / 1000);
                LOGI("len='%d'", len);
                LOGI("out_size='%d'", out_size);
                if (len < 0) {
                    break;
                    return 1;
                }
                if (out_size > 0) {

                    jbyte *bytes = (*env)->GetByteArrayElements(env, array,
                            NULL);
                    memcpy(bytes, (int16_t *) pAudioBuffer, out_size);
                    (*env)->ReleaseByteArrayElements(env, array, bytes, 0);
                    (*env)->CallVoidMethod(env, obj, play, array, out_size,
                            is_play);
                }
                size -= len;
            }
        }
        if (packet.data)
            av_free_packet(&packet);
    }
但对于其他格式,如flac和mp3,它工作得很好。avcodec_decode_audio3解码mp3帧需要1-2毫秒,out_size = 4608,而相同帧大小的mp4解码需要6-7毫秒。我从这里得到了我的构建脚本。

这是正常行为吗?有什么方法可以提高解码mp4的性能吗?

你可以搜索硬件加速…

" Android上H/W加速H.264解码"

例如:

如何在Android上使用硬件加速视频解码?

http://readlist.com/lists/mplayerhq.hu/mplayer-users/5/26751.html

IMO - ffmpeg仍然主要在软件中,但在较新的android版本上,你可能能够找到一些stagefright API提供GPU加速的方式来访问framebuffer??

相关内容

  • 没有找到相关文章

最新更新