如何使用FFmpeg注册某些编解码器?

时间:2012-03-12 14:34:33

标签: ffmpeg h.264

我只想在FFmpeg中使用H264解码器。如何注册而不是使用以下代码。提前谢谢。

avcodec_register_all();
codec=avcodec_find_decoder(CODEC_ID_H264);  // find the decoder with the corresponding FCC

1 个答案:

答案 0 :(得分:1)

avcodec_register调用将注册单个编解码器,而不是注册avcodec_register_all的所有可用编解码器。有关ffmpeg如何自行完成,请参阅libavcodec \ allcodecs.c。