avformat, avcodec. avformat . avcodec ( ).
AVPacket avpkt; int err, frame_decoded = 0;
AVCodec *codec = avcodec_find_decoder ( AV_CODEC_ID_H264 );
AVCodecContext *codecCtx = avcodec_alloc_context3 ( codec );
avcodec_open2 ( codecCtx, codec, NULL );
err = avcodec_decode_video2 ( codecCtx, avframe, &frame_decoded, &avpkt );