使用最新版ffmpeg-0.11
libx264-125,使用默认编码时,用Eyecard发现profile-idc一直是PROFILE_H264_HIGH
(profile-idc=100),但是项目要求是baseline,设置了AVCodecContext的->profile=FF_PROFILE_H264_BASELINE也没用,经过多方查找,需要如下解决方法:
1 AVDictionary *opts = NULL;
1 av_dict_set(&opts, "profile", "baseline", 0);
2 /* open the codec */
3 if (avcodec_open2(m_pEncoderCtx, encoder, &opts) < 0)
http://blog.csdn.net/kisaa133/article/details/7792008
时间: 2024-11-08 19:09:48