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" },
网友评论