FFIVE
使用最新版ffmpeg-0.11 libx264-125,使用默认编码时,用Eyecard发现profile-idc一直是PROFILE_H264_HIGH (profile-idc=100),但是项目要求是baseline,设置了AVCodecContext的->profile=FF_PROFILE_H264_BASELINE也没用,经过多方查找,需要如下解决方法:AVDictionary *opts = NULL;av_dict_set(&opts, "profile", "baseline", 0); /* open the codec */ if (avcodec_open2(m_pEncoderCtx, encoder, &opts) < 0)