├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── avbsf ├── Makefile ├── avbsf.vcxproj ├── avbsf.vcxproj.filters ├── avbsf.xcodeproj │ └── project.pbxproj ├── include │ ├── avbsf.h │ ├── avpbs.h │ ├── avpkt2bs.h │ ├── avpktutil.h │ ├── avpktutil2.h │ └── flv │ │ ├── flv2pkt.h │ │ └── pkt2flv.h └── src │ ├── avbsf-aac.c │ ├── avbsf-h264.c │ ├── avbsf-h265.c │ ├── avbsf-h266.c │ ├── avbsf.c │ ├── avpbs-aac.c │ ├── avpbs-av1.c │ ├── avpbs-g7xx.c │ ├── avpbs-h264.c │ ├── avpbs-h265.c │ ├── avpbs-h266.c │ ├── avpbs-mp3.c │ ├── avpbs-opus.c │ ├── avpbs-vpx.c │ ├── avpbs.c │ └── avpkt2bs.c ├── avcodec.sln ├── avcodec ├── Makefile ├── avcodec.vcxproj ├── avcodec.vcxproj.filters ├── avcodec.xcodeproj │ └── project.pbxproj ├── include │ ├── audio-decoder.h │ ├── audio-encoder.h │ ├── audio-mixer.h │ ├── audio-resampler.h │ ├── avbuffer.h │ ├── avcodecid.h │ ├── avdtsinfer.h │ ├── avframe.h │ ├── avpacket.h │ ├── avscale.h │ ├── avsegment.h │ ├── avstatistic.h │ ├── avstream.h │ ├── avtimeline.h │ ├── bitmap.h │ ├── colorspace.h │ ├── h264-encoder.h │ ├── h264-parameter.h │ ├── text-render.h │ └── yuv-overlay.h ├── source │ ├── audio-mixer.c │ ├── audio-resampler.c │ ├── avbuffer.c │ ├── avdtsinfer.c │ ├── avframe.c │ ├── avpacket.c │ ├── avsegment.c │ ├── avstatistic.c │ ├── avstream.c │ ├── avtimeline.c │ ├── bitmap.c │ ├── colorspace.c │ ├── faac-decoder.c │ ├── faac-encoder.c │ ├── fdk-decoder.c │ ├── g711-decoder.c │ ├── g711-encoder.c │ ├── interpolation-bilinear.c │ ├── mp2lame-encoder.c │ ├── openh264enc.cpp │ ├── opus-decoder.c │ ├── opus-encoder.c │ ├── rgb-overlay.c │ ├── text-render-freetype.c │ ├── text-render-gdi.c │ ├── x262enc.c │ ├── x264enc.c │ └── yuv-overlay.c ├── test │ ├── faac-decoder-test.cpp │ ├── faac-encoder-test.cpp │ ├── fdk-decoder-test.cpp │ ├── g711-decoder-test.cpp │ ├── g711-encoder-test.cpp │ ├── interpolation-test.cpp │ ├── text-render-test.cpp │ ├── x264-encode-test.cpp │ └── yuv-overlay-test.cpp └── version.ver ├── avplayer ├── Android.mk ├── Application.mk ├── Makefile ├── avplayer.vcxproj ├── avplayer.vcxproj.filters ├── avplayer.xcodeproj │ └── project.pbxproj ├── include │ ├── AVFilter.h │ ├── AudioDecoder.h │ ├── VOFilter.h │ ├── VideoDecoder.h │ ├── avplayer-file.h │ ├── avplayer-live.h │ └── avplayer.h ├── source │ ├── AVFrameQ.h │ ├── AVInterval.h │ ├── AVPlayerCore.cpp │ ├── AVPlayerCore.h │ ├── avplayer.cpp │ ├── file-player │ │ ├── AVFilePlayer.cpp │ │ ├── AVFilePlayer.h │ │ └── avplayer-file.cpp │ └── live-player │ │ ├── AVLivePlayer.cpp │ │ ├── AVLivePlayer.h │ │ └── avplayer-live.cpp ├── test │ ├── ff-player-test.cpp │ ├── file-player-test.cpp │ ├── h264-player-test.cpp │ └── live-player-test.cpp └── version.ver ├── ffutils ├── Android.mk ├── Makefile ├── ffutils.def ├── ffutils.map ├── ffutils.vcxproj ├── ffutils.vcxproj.filters ├── ffutils.xcodeproj │ └── project.pbxproj ├── include │ ├── avdecoder.h │ ├── avencoder.h │ ├── avtranscode.h │ ├── ffdecoder.h │ ├── ffencoder.h │ ├── fffilter.h │ ├── ffhelper.h │ ├── ffinput.h │ ├── ffoutput.h │ ├── ffresample.h │ ├── ffscale.h │ └── fftranscode.h ├── source │ ├── avdecoder.c │ ├── avencoder.c │ ├── avtranscode.c │ ├── ffdecoder.c │ ├── ffencoder.c │ ├── fffilter.c │ ├── ffhelper.c │ ├── ffinit.c │ ├── ffinput.c │ ├── ffoutput.c │ ├── ffresample.c │ ├── ffscale.c │ └── fftranscode.c ├── test │ └── video-transcode-test.cpp └── version.ver ├── h264 ├── Makefile ├── h264.vcxproj ├── h264.vcxproj.filters ├── h264.xcodeproj │ └── project.pbxproj ├── include │ ├── bitstream.h │ ├── h264-hrd.h │ ├── h264-internal.h │ ├── h264-nal.h │ ├── h264-parser.h │ ├── h264-pps.h │ ├── h264-scaling.h │ ├── h264-sei.h │ ├── h264-slice-header.h │ ├── h264-sps.h │ ├── h264-util.h │ └── h264-vui.h ├── source │ ├── bitstream.c │ ├── h264-hrd.c │ ├── h264-nal.c │ ├── h264-parser.c │ ├── h264-pps.c │ ├── h264-profile.c │ ├── h264-rbsp.c │ ├── h264-scaling.c │ ├── h264-sei.c │ ├── h264-slice-header.c │ ├── h264-sps.c │ ├── h264-stream.c │ └── h264-vui.c └── version.ver ├── h265 ├── Makefile ├── h265.vcxproj ├── h265.vcxproj.filters ├── h265.xcodeproj │ └── project.pbxproj ├── include │ ├── h265-hrd.h │ ├── h265-nal.h │ ├── h265-parser.h │ ├── h265-pps.h │ ├── h265-sps.h │ ├── h265-vps.h │ └── h265-vui.h └── src │ ├── h265-hrd.c │ ├── h265-internal.h │ ├── h265-nal.c │ ├── h265-parser.c │ ├── h265-pps.c │ ├── h265-sps.c │ ├── h265-vps.c │ └── h265-vui.c ├── libavo ├── Android.mk ├── Application.mk ├── Makefile ├── include │ ├── audio_input.h │ ├── audio_output.h │ ├── av_register.h │ ├── video_output.h │ └── video_write.h ├── libavo.def ├── libavo.map ├── libavo.vcxproj ├── libavo.vcxproj.filters ├── libavo.xcodeproj │ └── project.pbxproj ├── src │ ├── audio_input │ │ ├── alsa │ │ │ └── alsa_recorder.c │ │ ├── audio_input.c │ │ ├── audio_queue │ │ │ └── audio_queue_record.c │ │ ├── directsound8 │ │ │ ├── direct_capture_8.cpp │ │ │ └── direct_capture_8.h │ │ └── opensles │ │ │ ├── opensles_callback.h │ │ │ ├── opensles_engine.h │ │ │ ├── opensles_format.h │ │ │ ├── opensles_input.c │ │ │ ├── opensles_input.h │ │ │ └── opensles_recorder.h │ ├── audio_output │ │ ├── alsa │ │ │ ├── alsa_format.h │ │ │ ├── alsa_mixer.h │ │ │ ├── alsa_param.h │ │ │ ├── alsa_player.c │ │ │ └── alsa_recovery.h │ │ ├── audio_output.c │ │ ├── audio_queue │ │ │ └── audio_queue_play.c │ │ ├── directsound8 │ │ │ ├── direct_sound_8.cpp │ │ │ └── direct_sound_8.h │ │ └── opensles │ │ │ ├── opensles_engine.h │ │ │ ├── opensles_format.h │ │ │ ├── opensles_output.c │ │ │ ├── opensles_output.h │ │ │ ├── opensles_outputmix.h │ │ │ └── opensles_player.h │ ├── av_register.c │ ├── av_register_all.cpp │ └── render │ │ ├── direct3d11 │ │ ├── d3d11_buffer.h │ │ ├── d3d11_compile.h │ │ ├── d3d11_device.h │ │ ├── d3d11_render.cpp │ │ ├── d3d11_render.h │ │ ├── d3d11_shader.h │ │ ├── d3d11_shader.hlsl │ │ ├── d3d11_target.h │ │ └── d3d11_texture.h │ │ ├── direct3d9 │ │ ├── d3d9_device.h │ │ ├── d3d9_overlay.h │ │ ├── d3d9_read.h │ │ ├── d3d9_render.cpp │ │ ├── d3d9_render.h │ │ └── d3d9_surface.h │ │ ├── metal │ │ ├── metal_render.c │ │ └── metal_render.h │ │ ├── opengl │ │ ├── opengl_context.h │ │ ├── opengl_context_cgl.c │ │ ├── opengl_render.c │ │ ├── opengl_render.h │ │ ├── opengl_texture.h │ │ └── opengl_vertex.h │ │ ├── opengl_matrix.h │ │ ├── opengl_shader.h │ │ ├── opengles2 │ │ ├── gles2_buffer.h │ │ ├── gles2_egl.h │ │ ├── gles2_matrix.h │ │ ├── gles2_render.c │ │ ├── gles2_render.h │ │ ├── gles2_shader.h │ │ └── gles2_texture.h │ │ ├── video_output.c │ │ ├── video_read.c │ │ ├── video_read.h │ │ ├── video_write.c │ │ └── yuv_color.h ├── test │ ├── 1280x720-NV21.yuv │ ├── 1920x1080.yuv │ ├── 352x288.yuv │ ├── IEEE-Float-2ch-32bits-48000Hz-1024samples.dat │ ├── audio-input-test.cpp │ ├── audio-output-test.cpp │ ├── audio-s16-1ch-8000hz.pcm │ ├── video-output-win32-prof.c │ ├── video-output-win32.cpp │ └── video-output-xvideo.cpp └── version.ver └── test ├── audio-transcode-test.cpp ├── test.cpp ├── test.vcxproj └── test.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/SECURITY.md -------------------------------------------------------------------------------- /avbsf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/Makefile -------------------------------------------------------------------------------- /avbsf/avbsf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/avbsf.vcxproj -------------------------------------------------------------------------------- /avbsf/avbsf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/avbsf.vcxproj.filters -------------------------------------------------------------------------------- /avbsf/avbsf.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/avbsf.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /avbsf/include/avbsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/include/avbsf.h -------------------------------------------------------------------------------- /avbsf/include/avpbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/include/avpbs.h -------------------------------------------------------------------------------- /avbsf/include/avpkt2bs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/include/avpkt2bs.h -------------------------------------------------------------------------------- /avbsf/include/avpktutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/include/avpktutil.h -------------------------------------------------------------------------------- /avbsf/include/avpktutil2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/include/avpktutil2.h -------------------------------------------------------------------------------- /avbsf/include/flv/flv2pkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/include/flv/flv2pkt.h -------------------------------------------------------------------------------- /avbsf/include/flv/pkt2flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/include/flv/pkt2flv.h -------------------------------------------------------------------------------- /avbsf/src/avbsf-aac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avbsf-aac.c -------------------------------------------------------------------------------- /avbsf/src/avbsf-h264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avbsf-h264.c -------------------------------------------------------------------------------- /avbsf/src/avbsf-h265.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avbsf-h265.c -------------------------------------------------------------------------------- /avbsf/src/avbsf-h266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avbsf-h266.c -------------------------------------------------------------------------------- /avbsf/src/avbsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avbsf.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-aac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-aac.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-av1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-av1.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-g7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-g7xx.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-h264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-h264.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-h265.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-h265.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-h266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-h266.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-mp3.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-opus.c -------------------------------------------------------------------------------- /avbsf/src/avpbs-vpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs-vpx.c -------------------------------------------------------------------------------- /avbsf/src/avpbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpbs.c -------------------------------------------------------------------------------- /avbsf/src/avpkt2bs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avbsf/src/avpkt2bs.c -------------------------------------------------------------------------------- /avcodec.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec.sln -------------------------------------------------------------------------------- /avcodec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/Makefile -------------------------------------------------------------------------------- /avcodec/avcodec.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/avcodec.vcxproj -------------------------------------------------------------------------------- /avcodec/avcodec.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/avcodec.vcxproj.filters -------------------------------------------------------------------------------- /avcodec/avcodec.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/avcodec.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /avcodec/include/audio-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/audio-decoder.h -------------------------------------------------------------------------------- /avcodec/include/audio-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/audio-encoder.h -------------------------------------------------------------------------------- /avcodec/include/audio-mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/audio-mixer.h -------------------------------------------------------------------------------- /avcodec/include/audio-resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/audio-resampler.h -------------------------------------------------------------------------------- /avcodec/include/avbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avbuffer.h -------------------------------------------------------------------------------- /avcodec/include/avcodecid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avcodecid.h -------------------------------------------------------------------------------- /avcodec/include/avdtsinfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avdtsinfer.h -------------------------------------------------------------------------------- /avcodec/include/avframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avframe.h -------------------------------------------------------------------------------- /avcodec/include/avpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avpacket.h -------------------------------------------------------------------------------- /avcodec/include/avscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avscale.h -------------------------------------------------------------------------------- /avcodec/include/avsegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avsegment.h -------------------------------------------------------------------------------- /avcodec/include/avstatistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avstatistic.h -------------------------------------------------------------------------------- /avcodec/include/avstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avstream.h -------------------------------------------------------------------------------- /avcodec/include/avtimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/avtimeline.h -------------------------------------------------------------------------------- /avcodec/include/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/bitmap.h -------------------------------------------------------------------------------- /avcodec/include/colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/colorspace.h -------------------------------------------------------------------------------- /avcodec/include/h264-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/h264-encoder.h -------------------------------------------------------------------------------- /avcodec/include/h264-parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/h264-parameter.h -------------------------------------------------------------------------------- /avcodec/include/text-render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/text-render.h -------------------------------------------------------------------------------- /avcodec/include/yuv-overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/include/yuv-overlay.h -------------------------------------------------------------------------------- /avcodec/source/audio-mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/audio-mixer.c -------------------------------------------------------------------------------- /avcodec/source/audio-resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/audio-resampler.c -------------------------------------------------------------------------------- /avcodec/source/avbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avbuffer.c -------------------------------------------------------------------------------- /avcodec/source/avdtsinfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avdtsinfer.c -------------------------------------------------------------------------------- /avcodec/source/avframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avframe.c -------------------------------------------------------------------------------- /avcodec/source/avpacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avpacket.c -------------------------------------------------------------------------------- /avcodec/source/avsegment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avsegment.c -------------------------------------------------------------------------------- /avcodec/source/avstatistic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avstatistic.c -------------------------------------------------------------------------------- /avcodec/source/avstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avstream.c -------------------------------------------------------------------------------- /avcodec/source/avtimeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/avtimeline.c -------------------------------------------------------------------------------- /avcodec/source/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/bitmap.c -------------------------------------------------------------------------------- /avcodec/source/colorspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/colorspace.c -------------------------------------------------------------------------------- /avcodec/source/faac-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/faac-decoder.c -------------------------------------------------------------------------------- /avcodec/source/faac-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/faac-encoder.c -------------------------------------------------------------------------------- /avcodec/source/fdk-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/fdk-decoder.c -------------------------------------------------------------------------------- /avcodec/source/g711-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/g711-decoder.c -------------------------------------------------------------------------------- /avcodec/source/g711-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/g711-encoder.c -------------------------------------------------------------------------------- /avcodec/source/interpolation-bilinear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/interpolation-bilinear.c -------------------------------------------------------------------------------- /avcodec/source/mp2lame-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/mp2lame-encoder.c -------------------------------------------------------------------------------- /avcodec/source/openh264enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/openh264enc.cpp -------------------------------------------------------------------------------- /avcodec/source/opus-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/opus-decoder.c -------------------------------------------------------------------------------- /avcodec/source/opus-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/opus-encoder.c -------------------------------------------------------------------------------- /avcodec/source/rgb-overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/rgb-overlay.c -------------------------------------------------------------------------------- /avcodec/source/text-render-freetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/text-render-freetype.c -------------------------------------------------------------------------------- /avcodec/source/text-render-gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/text-render-gdi.c -------------------------------------------------------------------------------- /avcodec/source/x262enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/x262enc.c -------------------------------------------------------------------------------- /avcodec/source/x264enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/x264enc.c -------------------------------------------------------------------------------- /avcodec/source/yuv-overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/source/yuv-overlay.c -------------------------------------------------------------------------------- /avcodec/test/faac-decoder-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/faac-decoder-test.cpp -------------------------------------------------------------------------------- /avcodec/test/faac-encoder-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/faac-encoder-test.cpp -------------------------------------------------------------------------------- /avcodec/test/fdk-decoder-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/fdk-decoder-test.cpp -------------------------------------------------------------------------------- /avcodec/test/g711-decoder-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/g711-decoder-test.cpp -------------------------------------------------------------------------------- /avcodec/test/g711-encoder-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/g711-encoder-test.cpp -------------------------------------------------------------------------------- /avcodec/test/interpolation-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/interpolation-test.cpp -------------------------------------------------------------------------------- /avcodec/test/text-render-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/text-render-test.cpp -------------------------------------------------------------------------------- /avcodec/test/x264-encode-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/x264-encode-test.cpp -------------------------------------------------------------------------------- /avcodec/test/yuv-overlay-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/test/yuv-overlay-test.cpp -------------------------------------------------------------------------------- /avcodec/version.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avcodec/version.ver -------------------------------------------------------------------------------- /avplayer/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/Android.mk -------------------------------------------------------------------------------- /avplayer/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/Application.mk -------------------------------------------------------------------------------- /avplayer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/Makefile -------------------------------------------------------------------------------- /avplayer/avplayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/avplayer.vcxproj -------------------------------------------------------------------------------- /avplayer/avplayer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/avplayer.vcxproj.filters -------------------------------------------------------------------------------- /avplayer/avplayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/avplayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /avplayer/include/AVFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/include/AVFilter.h -------------------------------------------------------------------------------- /avplayer/include/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/include/AudioDecoder.h -------------------------------------------------------------------------------- /avplayer/include/VOFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/include/VOFilter.h -------------------------------------------------------------------------------- /avplayer/include/VideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/include/VideoDecoder.h -------------------------------------------------------------------------------- /avplayer/include/avplayer-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/include/avplayer-file.h -------------------------------------------------------------------------------- /avplayer/include/avplayer-live.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/include/avplayer-live.h -------------------------------------------------------------------------------- /avplayer/include/avplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/include/avplayer.h -------------------------------------------------------------------------------- /avplayer/source/AVFrameQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/AVFrameQ.h -------------------------------------------------------------------------------- /avplayer/source/AVInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/AVInterval.h -------------------------------------------------------------------------------- /avplayer/source/AVPlayerCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/AVPlayerCore.cpp -------------------------------------------------------------------------------- /avplayer/source/AVPlayerCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/AVPlayerCore.h -------------------------------------------------------------------------------- /avplayer/source/avplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/avplayer.cpp -------------------------------------------------------------------------------- /avplayer/source/file-player/AVFilePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/file-player/AVFilePlayer.cpp -------------------------------------------------------------------------------- /avplayer/source/file-player/AVFilePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/file-player/AVFilePlayer.h -------------------------------------------------------------------------------- /avplayer/source/file-player/avplayer-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/file-player/avplayer-file.cpp -------------------------------------------------------------------------------- /avplayer/source/live-player/AVLivePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/live-player/AVLivePlayer.cpp -------------------------------------------------------------------------------- /avplayer/source/live-player/AVLivePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/live-player/AVLivePlayer.h -------------------------------------------------------------------------------- /avplayer/source/live-player/avplayer-live.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/source/live-player/avplayer-live.cpp -------------------------------------------------------------------------------- /avplayer/test/ff-player-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/test/ff-player-test.cpp -------------------------------------------------------------------------------- /avplayer/test/file-player-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/test/file-player-test.cpp -------------------------------------------------------------------------------- /avplayer/test/h264-player-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/test/h264-player-test.cpp -------------------------------------------------------------------------------- /avplayer/test/live-player-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/test/live-player-test.cpp -------------------------------------------------------------------------------- /avplayer/version.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/avplayer/version.ver -------------------------------------------------------------------------------- /ffutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/Android.mk -------------------------------------------------------------------------------- /ffutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/Makefile -------------------------------------------------------------------------------- /ffutils/ffutils.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/ffutils.def -------------------------------------------------------------------------------- /ffutils/ffutils.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/ffutils.map -------------------------------------------------------------------------------- /ffutils/ffutils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/ffutils.vcxproj -------------------------------------------------------------------------------- /ffutils/ffutils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/ffutils.vcxproj.filters -------------------------------------------------------------------------------- /ffutils/ffutils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/ffutils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ffutils/include/avdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/avdecoder.h -------------------------------------------------------------------------------- /ffutils/include/avencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/avencoder.h -------------------------------------------------------------------------------- /ffutils/include/avtranscode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/avtranscode.h -------------------------------------------------------------------------------- /ffutils/include/ffdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/ffdecoder.h -------------------------------------------------------------------------------- /ffutils/include/ffencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/ffencoder.h -------------------------------------------------------------------------------- /ffutils/include/fffilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/fffilter.h -------------------------------------------------------------------------------- /ffutils/include/ffhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/ffhelper.h -------------------------------------------------------------------------------- /ffutils/include/ffinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/ffinput.h -------------------------------------------------------------------------------- /ffutils/include/ffoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/ffoutput.h -------------------------------------------------------------------------------- /ffutils/include/ffresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/ffresample.h -------------------------------------------------------------------------------- /ffutils/include/ffscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/ffscale.h -------------------------------------------------------------------------------- /ffutils/include/fftranscode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/include/fftranscode.h -------------------------------------------------------------------------------- /ffutils/source/avdecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/avdecoder.c -------------------------------------------------------------------------------- /ffutils/source/avencoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/avencoder.c -------------------------------------------------------------------------------- /ffutils/source/avtranscode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/avtranscode.c -------------------------------------------------------------------------------- /ffutils/source/ffdecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffdecoder.c -------------------------------------------------------------------------------- /ffutils/source/ffencoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffencoder.c -------------------------------------------------------------------------------- /ffutils/source/fffilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/fffilter.c -------------------------------------------------------------------------------- /ffutils/source/ffhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffhelper.c -------------------------------------------------------------------------------- /ffutils/source/ffinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffinit.c -------------------------------------------------------------------------------- /ffutils/source/ffinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffinput.c -------------------------------------------------------------------------------- /ffutils/source/ffoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffoutput.c -------------------------------------------------------------------------------- /ffutils/source/ffresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffresample.c -------------------------------------------------------------------------------- /ffutils/source/ffscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/ffscale.c -------------------------------------------------------------------------------- /ffutils/source/fftranscode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/source/fftranscode.c -------------------------------------------------------------------------------- /ffutils/test/video-transcode-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/test/video-transcode-test.cpp -------------------------------------------------------------------------------- /ffutils/version.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/ffutils/version.ver -------------------------------------------------------------------------------- /h264/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/Makefile -------------------------------------------------------------------------------- /h264/h264.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/h264.vcxproj -------------------------------------------------------------------------------- /h264/h264.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/h264.vcxproj.filters -------------------------------------------------------------------------------- /h264/h264.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/h264.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /h264/include/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/bitstream.h -------------------------------------------------------------------------------- /h264/include/h264-hrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-hrd.h -------------------------------------------------------------------------------- /h264/include/h264-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-internal.h -------------------------------------------------------------------------------- /h264/include/h264-nal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-nal.h -------------------------------------------------------------------------------- /h264/include/h264-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-parser.h -------------------------------------------------------------------------------- /h264/include/h264-pps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-pps.h -------------------------------------------------------------------------------- /h264/include/h264-scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-scaling.h -------------------------------------------------------------------------------- /h264/include/h264-sei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-sei.h -------------------------------------------------------------------------------- /h264/include/h264-slice-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-slice-header.h -------------------------------------------------------------------------------- /h264/include/h264-sps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-sps.h -------------------------------------------------------------------------------- /h264/include/h264-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-util.h -------------------------------------------------------------------------------- /h264/include/h264-vui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/include/h264-vui.h -------------------------------------------------------------------------------- /h264/source/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/bitstream.c -------------------------------------------------------------------------------- /h264/source/h264-hrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-hrd.c -------------------------------------------------------------------------------- /h264/source/h264-nal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-nal.c -------------------------------------------------------------------------------- /h264/source/h264-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-parser.c -------------------------------------------------------------------------------- /h264/source/h264-pps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-pps.c -------------------------------------------------------------------------------- /h264/source/h264-profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-profile.c -------------------------------------------------------------------------------- /h264/source/h264-rbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-rbsp.c -------------------------------------------------------------------------------- /h264/source/h264-scaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-scaling.c -------------------------------------------------------------------------------- /h264/source/h264-sei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-sei.c -------------------------------------------------------------------------------- /h264/source/h264-slice-header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-slice-header.c -------------------------------------------------------------------------------- /h264/source/h264-sps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-sps.c -------------------------------------------------------------------------------- /h264/source/h264-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-stream.c -------------------------------------------------------------------------------- /h264/source/h264-vui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/source/h264-vui.c -------------------------------------------------------------------------------- /h264/version.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h264/version.ver -------------------------------------------------------------------------------- /h265/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/Makefile -------------------------------------------------------------------------------- /h265/h265.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/h265.vcxproj -------------------------------------------------------------------------------- /h265/h265.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/h265.vcxproj.filters -------------------------------------------------------------------------------- /h265/h265.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/h265.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /h265/include/h265-hrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/include/h265-hrd.h -------------------------------------------------------------------------------- /h265/include/h265-nal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/include/h265-nal.h -------------------------------------------------------------------------------- /h265/include/h265-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/include/h265-parser.h -------------------------------------------------------------------------------- /h265/include/h265-pps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/include/h265-pps.h -------------------------------------------------------------------------------- /h265/include/h265-sps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/include/h265-sps.h -------------------------------------------------------------------------------- /h265/include/h265-vps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/include/h265-vps.h -------------------------------------------------------------------------------- /h265/include/h265-vui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/include/h265-vui.h -------------------------------------------------------------------------------- /h265/src/h265-hrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-hrd.c -------------------------------------------------------------------------------- /h265/src/h265-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-internal.h -------------------------------------------------------------------------------- /h265/src/h265-nal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-nal.c -------------------------------------------------------------------------------- /h265/src/h265-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-parser.c -------------------------------------------------------------------------------- /h265/src/h265-pps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-pps.c -------------------------------------------------------------------------------- /h265/src/h265-sps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-sps.c -------------------------------------------------------------------------------- /h265/src/h265-vps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-vps.c -------------------------------------------------------------------------------- /h265/src/h265-vui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/h265/src/h265-vui.c -------------------------------------------------------------------------------- /libavo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/Android.mk -------------------------------------------------------------------------------- /libavo/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/Application.mk -------------------------------------------------------------------------------- /libavo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/Makefile -------------------------------------------------------------------------------- /libavo/include/audio_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/include/audio_input.h -------------------------------------------------------------------------------- /libavo/include/audio_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/include/audio_output.h -------------------------------------------------------------------------------- /libavo/include/av_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/include/av_register.h -------------------------------------------------------------------------------- /libavo/include/video_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/include/video_output.h -------------------------------------------------------------------------------- /libavo/include/video_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/include/video_write.h -------------------------------------------------------------------------------- /libavo/libavo.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/libavo.def -------------------------------------------------------------------------------- /libavo/libavo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/libavo.map -------------------------------------------------------------------------------- /libavo/libavo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/libavo.vcxproj -------------------------------------------------------------------------------- /libavo/libavo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/libavo.vcxproj.filters -------------------------------------------------------------------------------- /libavo/libavo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/libavo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /libavo/src/audio_input/alsa/alsa_recorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/alsa/alsa_recorder.c -------------------------------------------------------------------------------- /libavo/src/audio_input/audio_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/audio_input.c -------------------------------------------------------------------------------- /libavo/src/audio_input/audio_queue/audio_queue_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/audio_queue/audio_queue_record.c -------------------------------------------------------------------------------- /libavo/src/audio_input/directsound8/direct_capture_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/directsound8/direct_capture_8.cpp -------------------------------------------------------------------------------- /libavo/src/audio_input/directsound8/direct_capture_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/directsound8/direct_capture_8.h -------------------------------------------------------------------------------- /libavo/src/audio_input/opensles/opensles_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/opensles/opensles_callback.h -------------------------------------------------------------------------------- /libavo/src/audio_input/opensles/opensles_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/opensles/opensles_engine.h -------------------------------------------------------------------------------- /libavo/src/audio_input/opensles/opensles_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/opensles/opensles_format.h -------------------------------------------------------------------------------- /libavo/src/audio_input/opensles/opensles_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/opensles/opensles_input.c -------------------------------------------------------------------------------- /libavo/src/audio_input/opensles/opensles_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/opensles/opensles_input.h -------------------------------------------------------------------------------- /libavo/src/audio_input/opensles/opensles_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_input/opensles/opensles_recorder.h -------------------------------------------------------------------------------- /libavo/src/audio_output/alsa/alsa_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/alsa/alsa_format.h -------------------------------------------------------------------------------- /libavo/src/audio_output/alsa/alsa_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/alsa/alsa_mixer.h -------------------------------------------------------------------------------- /libavo/src/audio_output/alsa/alsa_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/alsa/alsa_param.h -------------------------------------------------------------------------------- /libavo/src/audio_output/alsa/alsa_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/alsa/alsa_player.c -------------------------------------------------------------------------------- /libavo/src/audio_output/alsa/alsa_recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/alsa/alsa_recovery.h -------------------------------------------------------------------------------- /libavo/src/audio_output/audio_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/audio_output.c -------------------------------------------------------------------------------- /libavo/src/audio_output/audio_queue/audio_queue_play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/audio_queue/audio_queue_play.c -------------------------------------------------------------------------------- /libavo/src/audio_output/directsound8/direct_sound_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/directsound8/direct_sound_8.cpp -------------------------------------------------------------------------------- /libavo/src/audio_output/directsound8/direct_sound_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/directsound8/direct_sound_8.h -------------------------------------------------------------------------------- /libavo/src/audio_output/opensles/opensles_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/opensles/opensles_engine.h -------------------------------------------------------------------------------- /libavo/src/audio_output/opensles/opensles_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/opensles/opensles_format.h -------------------------------------------------------------------------------- /libavo/src/audio_output/opensles/opensles_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/opensles/opensles_output.c -------------------------------------------------------------------------------- /libavo/src/audio_output/opensles/opensles_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/opensles/opensles_output.h -------------------------------------------------------------------------------- /libavo/src/audio_output/opensles/opensles_outputmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/opensles/opensles_outputmix.h -------------------------------------------------------------------------------- /libavo/src/audio_output/opensles/opensles_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/audio_output/opensles/opensles_player.h -------------------------------------------------------------------------------- /libavo/src/av_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/av_register.c -------------------------------------------------------------------------------- /libavo/src/av_register_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/av_register_all.cpp -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_buffer.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_compile.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_device.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_render.cpp -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_render.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_shader.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_shader.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_shader.hlsl -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_target.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /libavo/src/render/direct3d11/d3d11_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d11/d3d11_texture.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d9/d3d9_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d9/d3d9_device.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d9/d3d9_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d9/d3d9_overlay.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d9/d3d9_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d9/d3d9_read.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d9/d3d9_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d9/d3d9_render.cpp -------------------------------------------------------------------------------- /libavo/src/render/direct3d9/d3d9_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d9/d3d9_render.h -------------------------------------------------------------------------------- /libavo/src/render/direct3d9/d3d9_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/direct3d9/d3d9_surface.h -------------------------------------------------------------------------------- /libavo/src/render/metal/metal_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/metal/metal_render.c -------------------------------------------------------------------------------- /libavo/src/render/metal/metal_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/metal/metal_render.h -------------------------------------------------------------------------------- /libavo/src/render/opengl/opengl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl/opengl_context.h -------------------------------------------------------------------------------- /libavo/src/render/opengl/opengl_context_cgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl/opengl_context_cgl.c -------------------------------------------------------------------------------- /libavo/src/render/opengl/opengl_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl/opengl_render.c -------------------------------------------------------------------------------- /libavo/src/render/opengl/opengl_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl/opengl_render.h -------------------------------------------------------------------------------- /libavo/src/render/opengl/opengl_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl/opengl_texture.h -------------------------------------------------------------------------------- /libavo/src/render/opengl/opengl_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl/opengl_vertex.h -------------------------------------------------------------------------------- /libavo/src/render/opengl_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl_matrix.h -------------------------------------------------------------------------------- /libavo/src/render/opengl_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengl_shader.h -------------------------------------------------------------------------------- /libavo/src/render/opengles2/gles2_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengles2/gles2_buffer.h -------------------------------------------------------------------------------- /libavo/src/render/opengles2/gles2_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengles2/gles2_egl.h -------------------------------------------------------------------------------- /libavo/src/render/opengles2/gles2_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengles2/gles2_matrix.h -------------------------------------------------------------------------------- /libavo/src/render/opengles2/gles2_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengles2/gles2_render.c -------------------------------------------------------------------------------- /libavo/src/render/opengles2/gles2_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengles2/gles2_render.h -------------------------------------------------------------------------------- /libavo/src/render/opengles2/gles2_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengles2/gles2_shader.h -------------------------------------------------------------------------------- /libavo/src/render/opengles2/gles2_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/opengles2/gles2_texture.h -------------------------------------------------------------------------------- /libavo/src/render/video_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/video_output.c -------------------------------------------------------------------------------- /libavo/src/render/video_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/video_read.c -------------------------------------------------------------------------------- /libavo/src/render/video_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/video_read.h -------------------------------------------------------------------------------- /libavo/src/render/video_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/video_write.c -------------------------------------------------------------------------------- /libavo/src/render/yuv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/src/render/yuv_color.h -------------------------------------------------------------------------------- /libavo/test/1280x720-NV21.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/1280x720-NV21.yuv -------------------------------------------------------------------------------- /libavo/test/1920x1080.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/1920x1080.yuv -------------------------------------------------------------------------------- /libavo/test/352x288.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/352x288.yuv -------------------------------------------------------------------------------- /libavo/test/IEEE-Float-2ch-32bits-48000Hz-1024samples.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/IEEE-Float-2ch-32bits-48000Hz-1024samples.dat -------------------------------------------------------------------------------- /libavo/test/audio-input-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/audio-input-test.cpp -------------------------------------------------------------------------------- /libavo/test/audio-output-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/audio-output-test.cpp -------------------------------------------------------------------------------- /libavo/test/audio-s16-1ch-8000hz.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/audio-s16-1ch-8000hz.pcm -------------------------------------------------------------------------------- /libavo/test/video-output-win32-prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/video-output-win32-prof.c -------------------------------------------------------------------------------- /libavo/test/video-output-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/video-output-win32.cpp -------------------------------------------------------------------------------- /libavo/test/video-output-xvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/test/video-output-xvideo.cpp -------------------------------------------------------------------------------- /libavo/version.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/libavo/version.ver -------------------------------------------------------------------------------- /test/audio-transcode-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/test/audio-transcode-test.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/test/test.vcxproj -------------------------------------------------------------------------------- /test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireader/avcodec/HEAD/test/test.vcxproj.filters --------------------------------------------------------------------------------