├── H264PlayDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── wangshuang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── wangshuang.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── H264PlayDemo.xcscheme │ └── xcschememanagement.plist ├── H264PlayDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── FFMPEGH264Decoder.h ├── FFMPEGH264Decoder.mm ├── FFmpeg-iOS │ ├── include │ │ ├── libavcodec │ │ │ ├── avcodec.h │ │ │ ├── avfft.h │ │ │ ├── d3d11va.h │ │ │ ├── dv_profile.h │ │ │ ├── dxva2.h │ │ │ ├── old_codec_ids.h │ │ │ ├── qsv.h │ │ │ ├── vaapi.h │ │ │ ├── vda.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ ├── videotoolbox.h │ │ │ ├── vorbis_parser.h │ │ │ └── xvmc.h │ │ ├── libavdevice │ │ │ ├── avdevice.h │ │ │ └── version.h │ │ ├── libavfilter │ │ │ ├── asrc_abuffer.h │ │ │ ├── avcodec.h │ │ │ ├── avfilter.h │ │ │ ├── avfiltergraph.h │ │ │ ├── buffersink.h │ │ │ ├── buffersrc.h │ │ │ └── version.h │ │ ├── libavformat │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ └── version.h │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── audioconvert.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── downmix_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hmac.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── lzo.h │ │ │ ├── macros.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── old_pix_fmts.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── stereo3d.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── twofish.h │ │ │ ├── version.h │ │ │ └── xtea.h │ │ ├── libswresample │ │ │ ├── swresample.h │ │ │ └── version.h │ │ └── libswscale │ │ │ ├── swscale.h │ │ │ └── version.h │ └── lib │ │ ├── libavcodec.a │ │ ├── libavdevice.a │ │ ├── libavfilter.a │ │ ├── libavformat.a │ │ ├── libavutil.a │ │ ├── libswresample.a │ │ └── libswscale.a ├── Info.plist ├── OpenGLView20.h ├── OpenGLView20.m ├── VideoFileParser.h ├── VideoFileParser.m ├── ViewController.h ├── ViewController.mm ├── demo.h264 └── main.m ├── H264PlayDemoTests ├── H264PlayDemoTests.m └── Info.plist ├── H264PlayDemoUITests ├── H264PlayDemoUITests.m └── Info.plist └── README.md /H264PlayDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /H264PlayDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /H264PlayDemo.xcodeproj/project.xcworkspace/xcuserdata/wangshuang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo.xcodeproj/project.xcworkspace/xcuserdata/wangshuang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /H264PlayDemo.xcodeproj/xcuserdata/wangshuang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo.xcodeproj/xcuserdata/wangshuang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /H264PlayDemo.xcodeproj/xcuserdata/wangshuang.xcuserdatad/xcschemes/H264PlayDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo.xcodeproj/xcuserdata/wangshuang.xcuserdatad/xcschemes/H264PlayDemo.xcscheme -------------------------------------------------------------------------------- /H264PlayDemo.xcodeproj/xcuserdata/wangshuang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo.xcodeproj/xcuserdata/wangshuang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /H264PlayDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/AppDelegate.h -------------------------------------------------------------------------------- /H264PlayDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/AppDelegate.m -------------------------------------------------------------------------------- /H264PlayDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /H264PlayDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /H264PlayDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /H264PlayDemo/FFMPEGH264Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFMPEGH264Decoder.h -------------------------------------------------------------------------------- /H264PlayDemo/FFMPEGH264Decoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFMPEGH264Decoder.mm -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/vda.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/version.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavdevice/version.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavfilter/version.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavformat/avformat.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavformat/avio.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavformat/version.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/adler32.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/aes.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/attributes.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/avassert.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/avstring.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/avutil.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/base64.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/bprint.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/bswap.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/buffer.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/camellia.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/cast5.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/common.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/cpu.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/crc.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/dict.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/display.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/error.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/eval.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/fifo.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/file.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/frame.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/hash.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/hmac.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/lfg.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/log.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/lzo.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/macros.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/md5.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/mem.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/old_pix_fmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/old_pix_fmts.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/opt.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/rational.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/sha.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/sha512.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/tea.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/time.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/timecode.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/twofish.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/version.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libavutil/xtea.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libswresample/swresample.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libswresample/version.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libswscale/swscale.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/include/libswscale/version.h -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/lib/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/lib/libavcodec.a -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/lib/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/lib/libavdevice.a -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/lib/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/lib/libavfilter.a -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/lib/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/lib/libavformat.a -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/lib/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/lib/libavutil.a -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/lib/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/lib/libswresample.a -------------------------------------------------------------------------------- /H264PlayDemo/FFmpeg-iOS/lib/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/FFmpeg-iOS/lib/libswscale.a -------------------------------------------------------------------------------- /H264PlayDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/Info.plist -------------------------------------------------------------------------------- /H264PlayDemo/OpenGLView20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/OpenGLView20.h -------------------------------------------------------------------------------- /H264PlayDemo/OpenGLView20.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/OpenGLView20.m -------------------------------------------------------------------------------- /H264PlayDemo/VideoFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/VideoFileParser.h -------------------------------------------------------------------------------- /H264PlayDemo/VideoFileParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/VideoFileParser.m -------------------------------------------------------------------------------- /H264PlayDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/ViewController.h -------------------------------------------------------------------------------- /H264PlayDemo/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/ViewController.mm -------------------------------------------------------------------------------- /H264PlayDemo/demo.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/demo.h264 -------------------------------------------------------------------------------- /H264PlayDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemo/main.m -------------------------------------------------------------------------------- /H264PlayDemoTests/H264PlayDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemoTests/H264PlayDemoTests.m -------------------------------------------------------------------------------- /H264PlayDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemoTests/Info.plist -------------------------------------------------------------------------------- /H264PlayDemoUITests/H264PlayDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemoUITests/H264PlayDemoUITests.m -------------------------------------------------------------------------------- /H264PlayDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/H264PlayDemoUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShirleyiOS/iOSH264PlayDemo/HEAD/README.md --------------------------------------------------------------------------------