美文网首页
Android 默认的软件编码器

Android 默认的软件编码器

作者: Hemsl | 来源:发表于2021-08-10 11:40 被阅读0次

    Android 默认的软件编码都是这个:
    frameworks/av/media/libstagefright/codecs/avcenc

    也就是:libstagefright_soft_avcevc.so
    而非:libstagefright_soft_h264enc.so(frameworks/av/media/libstagefright/codecs/avc/enc/)

    判断来自这里:
    frameworks/av/media/libstagefright/omx/SoftOMXPlugin.cpp: { "OMX.google.h264.encoder", "avcenc", "video_encoder.avc" },

    如果需要修改的话。修改如下:
    frameworks/av/media/libstagefright/omx/SoftOMXPlugin.cpp: { "OMX.google.h264.encoder", "h264enc", "video_encoder.avc" },

    相关文章

      网友评论

          本文标题:Android 默认的软件编码器

          本文链接:https://www.haomeiwen.com/subject/nbpxbltx.html