ffmpeg视频格式转换代码.docVIP

  • 74
  • 0
  • 约6.69千字
  • 约 9页
  • 2021-10-01 发布于湖北
  • 举报
ffmpeg视频格式转换代码 int main(int argc, char **argv) { char *filename = d:\\1.asf; char *outfilename = d:\\test.mp4; AVFormatContext *pFormatCtxDec, *pFormatCtxEnc; AVCodecContext *pCodecCtxDec, *pCodecCtxEnc; AVCodec *pCodecDec, *pCodecEnc; AVFrame *pFrameDec, *pFrameEnc; AVOutputFormat *pOutputFormat; AVStream *video_st; int i, videoStream; int outbuf_size; uint8_t *outbuf; AVPacket packet; int frameFinished,frames=0; int out_size; // Register all formats and codecs av_register_all(); // Open video file if(av_open_input_file(pFormatCtxDec, filename, NULL, 0, NULL)!=0) return ;

文档评论(0)

1亿VIP精品文档

相关文档