int block_x = 8*(b8 & 0x01)+4*(b4 & 0x01);
int block_y = 8*(b8 >> 1)+4*(b4 >> 1);
请问下老大 这两句定义是什么意思啊?
带些值进去算一下就知道了 b8 = 0 1 2 3
b4 = 0 1 2 3
A:0 ........Err Concealment(0:Off,1:Frame Copy,2:Motion Copy)
老大 这是差错隐藏的开关吧?
是
A:老大,那你如何把差错隐藏关掉啊?注释代码吗?在哪里啊?
ercConcealIntraFrame 和 ercConcealInterFrame
A:采用RDO技术比非RDO编码后,码率居然要高
码率要看总体情况
//++ FFMPEG 初始化
avcodec_init();
avcodec_register_all();
codec = avcodec_find_decoder(CODEC_ID_H264);
context = avcodec_alloc_context();
picture = avcodec_alloc_frame();
if(codec->capabilities & CODEC_CAP_TRUNCATED)
{
context->flags |= CODEC_FLAG_TRUNCATED;
}
avcodec_open(context, codec);
自己看看 FFMPEG 源码里的 apiexample.c 文件就知道怎么用了