实例介绍
基于mfc对话框的ffmpeg简易播放器,是学习音视频同步的很好的例子,适合初学者,希望对大家有帮助。
【实例截图】
【核心代码】
16291092ffmpeg简易播放器-音视频同步
├── incs
│ ├── cxi
│ │ ├── xfile.h
│ │ ├── ximacfg.h
│ │ ├── ximadef.h
│ │ ├── ximage.h
│ │ ├── xiofile.h
│ │ └── xmemfile.h
│ ├── ffmpeg
│ │ ├── inttypes.h
│ │ ├── libavcodec
│ │ │ ├── audioconvert.h
│ │ │ ├── avcodec.h
│ │ │ ├── avfft.h
│ │ │ ├── dxva2.h
│ │ │ ├── inttypes.h
│ │ │ ├── opt.h
│ │ │ ├── rdft.h
│ │ │ ├── stdint.h
│ │ │ ├── vaapi.h
│ │ │ ├── vdpau.h
│ │ │ ├── version.h
│ │ │ └── xvmc.h
│ │ ├── libavdevice
│ │ │ ├── avdevice.h
│ │ │ ├── inttypes.h
│ │ │ └── stdint.h
│ │ ├── libavfilter
│ │ │ ├── avcodec.h
│ │ │ ├── avfiltergraph.h
│ │ │ ├── avfilter.h
│ │ │ ├── inttypes.h
│ │ │ ├── stdint.h
│ │ │ ├── vsink_buffer.h
│ │ │ └── vsrc_buffer.h
│ │ ├── libavformat
│ │ │ ├── avformat.h
│ │ │ ├── avio.h
│ │ │ ├── inttypes.h
│ │ │ ├── stdint.h
│ │ │ └── version.h
│ │ ├── libavutil
│ │ │ ├── adler32.h
│ │ │ ├── aes.h
│ │ │ ├── attributes.h
│ │ │ ├── audioconvert.h
│ │ │ ├── avassert.h
│ │ │ ├── avconfig.h
│ │ │ ├── avstring.h
│ │ │ ├── avutil.h
│ │ │ ├── base64.h
│ │ │ ├── bswap.h
│ │ │ ├── cmdutils.h
│ │ │ ├── colorspace.h
│ │ │ ├── common.h
│ │ │ ├── cpu.h
│ │ │ ├── crc.h
│ │ │ ├── dict.h
│ │ │ ├── error.h
│ │ │ ├── eval.h
│ │ │ ├── fifo.h
│ │ │ ├── file.h
│ │ │ ├── imgutils.h
│ │ │ ├── internal.h
│ │ │ ├── intfloat_readwrite.h
│ │ │ ├── intreadwrite.h
│ │ │ ├── inttypes.h
│ │ │ ├── lfg.h
│ │ │ ├── log.h
│ │ │ ├── lzo.h
│ │ │ ├── mathematics.h
│ │ │ ├── md5.h
│ │ │ ├── mem.h
│ │ │ ├── opt.h
│ │ │ ├── parseutils.h
│ │ │ ├── pixdesc.h
│ │ │ ├── pixfmt.h
│ │ │ ├── random_seed.h
│ │ │ ├── rational.h
│ │ │ ├── samplefmt.h
│ │ │ ├── sha.h
│ │ │ └── stdint.h
│ │ ├── libswscale
│ │ │ ├── inttypes.h
│ │ │ ├── stdint.h
│ │ │ └── swscale.h
│ │ └── stdint.h
│ ├── rvb
│ │ ├── anlz.h
│ │ ├── blob.h
│ │ ├── cgui.h
│ │ ├── cutt.h
│ │ ├── dsm.h
│ │ ├── img.h
│ │ ├── imio.h
│ │ ├── mpm.h
│ │ ├── msk.h
│ │ ├── mtx.h
│ │ ├── pick.h
│ │ ├── pprs.h
│ │ ├── rdg.h
│ │ ├── RvDefs.h
│ │ ├── RvErr.h
│ │ ├── rv.h
│ │ ├── rvtypes.h
│ │ ├── smath.h
│ │ ├── util.h
│ │ └── xgui.h
│ ├── sst
│ │ ├── DiskHelper.h
│ │ ├── ucb.h
│ │ ├── ucut.h
│ │ └── WindowDelegate.h
│ └── uc
│ ├── Animator.h
│ ├── AreaCal.h
│ ├── BlobExtractor.h
│ ├── Button.h
│ ├── CaliX.h
│ ├── CheckBox.h
│ ├── ComboBox.h
│ ├── DigitalWatch.h
│ ├── EditBox.h
│ ├── Element.h
│ ├── Illustrater.h
│ ├── IndiEllipse.h
│ ├── IndiLine.h
│ ├── IndiParallel.h
│ ├── IndiRect.h
│ ├── IndiRing.h
│ ├── IndiStar.h
│ ├── IndiX.h
│ ├── Label.h
│ ├── LineCal.h
│ ├── ListBox.h
│ ├── Mark.h
│ ├── RadioButton.h
│ ├── RunningLabel.h
│ ├── ScrollBar.h
│ ├── Static.h
│ ├── SymbolReader.h
│ └── TimeLabel.h
├── libs
│ ├── beta
│ │ ├── eeh.dll
│ │ └── eeh.lib
│ ├── bug
│ │ ├── anlz.dll
│ │ ├── anlz.lib
│ │ ├── blob.dll
│ │ ├── blob.lib
│ │ ├── CaliX.dll
│ │ ├── CaliX.lib
│ │ ├── cgui.dll
│ │ ├── cgui.lib
│ │ ├── cutt.dll
│ │ ├── cutt.lib
│ │ ├── dsm.dll
│ │ ├── dsm.lib
│ │ ├── eeh.dll
│ │ ├── eeh.lib
│ │ ├── img.dll
│ │ ├── img.lib
│ │ ├── imio.dll
│ │ ├── imio.lib
│ │ ├── IndiX.dll
│ │ ├── IndiX.lib
│ │ ├── mpm.dll
│ │ ├── mpm.lib
│ │ ├── msk.dll
│ │ ├── msk.lib
│ │ ├── mtx.dll
│ │ ├── mtx.lib
│ │ ├── mtx.obj
│ │ ├── pick.dll
│ │ ├── pick.lib
│ │ ├── pprs.dll
│ │ ├── pprs.lib
│ │ ├── rdg.dll
│ │ ├── rdg.lib
│ │ ├── SmartDisk.dll
│ │ ├── SmartDisk.lib
│ │ ├── smath.dll
│ │ ├── smath.lib
│ │ ├── ucb.dll
│ │ ├── ucb.lib
│ │ ├── ucut.dll
│ │ ├── ucut.lib
│ │ ├── util.dll
│ │ ├── util.lib
│ │ ├── wd.dll
│ │ ├── wd.lib
│ │ ├── xgui.dll
│ │ └── xgui.lib
│ ├── cix
│ │ ├── cximagecrtd.dll
│ │ ├── cximagecrtd.lib
│ │ ├── cximagecrt.dll
│ │ └── cximagecrt.lib
│ └── ffmpeg
│ ├── avcodec-53.dll
│ ├── avcodec-53.lib
│ ├── avcodec.dll
│ ├── avcodec.h
│ ├── avcodec.lib
│ ├── avdevice-53.dll
│ ├── avdevice-53.lib
│ ├── avdevice.dll
│ ├── avdevice.lib
│ ├── avfilter.dll
│ ├── avfilter.lib
│ ├── avformat-53.dll
│ ├── avformat-53.lib
│ ├── avformat.dll
│ ├── avformat.h
│ ├── avformat.lib
│ ├── avutil-51.dll
│ ├── avutil-51.lib
│ ├── avutil.dll
│ ├── avutil.lib
│ ├── pthreadGC2.dll
│ ├── swscale-2.dll
│ ├── swscale-2.lib
│ ├── swscale.dll
│ ├── swscale.lib
│ └── winmm.lib
└── TestFFmpegV2
├── AudioCvt.cpp
├── AudioCvt.h
├── avcodec-53.dll
├── avformat-53.dll
├── AvLib.cpp
├── AvLib.h
├── avutil-51.dll
├── cmdutils.c
├── cmdutils.h
├── DibAudio.cpp
├── DibAudio.h
├── pthreadGC2.dll
├── ReadMe.txt
├── res
│ ├── TestFFmpeg.ico
│ └── TestFFmpeg.rc2
├── resource.h
├── StdAfx.cpp
├── StdAfx.h
├── swscale-2.dll
├── TestFFmpeg.aps
├── TestFFmpeg.clw
├── TestFFmpeg.cpp
├── TestFFmpegDlg.cpp
├── TestFFmpegDlg.h
├── TestFFmpeg.dsp
├── TestFFmpeg.dsw
├── TestFFmpeg.h
├── TestFFmpeg.ncb
├── TestFFmpeg.opt
├── TestFFmpeg.plg
├── TestFFmpeg.rc
├── TestFFmpeg.sln
├── TestFFmpeg.suo
├── TestFFmpeg.vcproj
├── TestFFmpeg.vcproj.WWW-88991CA8623.tomwong.user
├── WaveAudio.cpp
└── WaveAudio.h
19 directories, 246 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论