opencv读取视频,Mat->ffmpeg, BGR24->YUV420最后压缩成H264格式,写成MP4文件
staticvoidencode(AVCodecContext*enc_ctx,AVFrame*frame,AVPacket*pkt,FILE*outfile){intret;/*sendtheframetotheencoder*/if(frame)printf("Sendframe%lld\n",frame->pts);ret=avcodec_send_frame(enc_ctx,frame);