libavcodec バージョン 9.7 を使用して、公式の例の例とほぼ同じように、簡単なデモを作成しています。
ただし、エンコーダーを開くことができません。また、av_opt_set(context->priv_data, "preset", "slow", 0)
常にクラッシュにつながります。
これは私のコードです:
// other code...
int ret = 0;
avcodec_register_all();
AVCodec* codec = NULL;
AVCodecContext* context = NULL;
AVFrame* frame = NULL;
uint8_t endcode[] = { 0, 0, 1, 0xb7 };
codec = avcodec_find_encoder(AV_CODEC_ID_H264);
if(!codec){
qDebug()<<"cannot find encoder";
return;
}
qDebug()<<"encoder found";
context = avcodec_alloc_context3(codec);
if(!context){
qDebug()<<"cannot alloc context";
return;
}
qDebug()<<"context allocted";
context->bit_rate = 400000;
/* resolution must be a multiple of two */
context->width = 352;
context->height = 288;
/* frames per second */
context->time_base= (AVRational){1,25};
context->gop_size = 10; /* emit one intra frame every ten frames */
context->max_b_frames=1;
context->pix_fmt = AV_PIX_FMT_YUV420P;
qDebug()<<"context init";
// av_opt_set(context->priv_data, "preset", "slow", 0); // this will crush
AVDictionary *d = NULL;
av_dict_set(&d, "preset", "ultrafast",0); // this won't
ret = avcodec_open2(context, codec, &d);
if ( ret < 0) {
qDebug()<<"cannot open codec"<<ret;
return;
}
qDebug()<<"codec open";
// other code...
これは以下を出力します:
エンコーダが見つかりました
割り当てられたコンテキスト
コンテキスト初期化
コーデックを開けません -22
[libx264 @ 0340B340] [IMGUTILS @ 0028FC34] 画像サイズ 0x10 は無効です
[libx264 @ 0340B340] 無効な幅/高さの値を無視する
[libx264 @ 0340B340] 指定された pix_fmt はサポートされていません
幅/高さが無効であるとは思わず、そこにもフォーマットします。ここで何が問題なのかわかりません。
どんな助けでも。お願いします?