├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── COPYING.GPLv2 ├── COPYING.GPLv3 ├── COPYING.LGPLv2.1 ├── COPYING.LGPLv3 ├── CREDITS ├── Changelog ├── INSTALL.md ├── LICENSE.md ├── MAINTAINERS ├── Makefile ├── README.md ├── RELEASE ├── compat ├── aix │ └── math.h ├── atomics │ ├── dummy │ │ └── stdatomic.h │ ├── gcc │ │ └── stdatomic.h │ ├── pthread │ │ ├── stdatomic.c │ │ └── stdatomic.h │ ├── suncc │ │ └── stdatomic.h │ └── win32 │ │ └── stdatomic.h ├── avisynth │ ├── avisynth_c.h │ ├── avs │ │ ├── capi.h │ │ ├── config.h │ │ └── types.h │ ├── avxsynth_c.h │ └── windowsPorts │ │ ├── basicDataTypeConversions.h │ │ └── windows2linux.h ├── cuda │ ├── dynlink_loader.h │ └── ptx2c.sh ├── dispatch_semaphore │ └── semaphore.h ├── float │ ├── float.h │ └── limits.h ├── getopt.c ├── msvcrt │ ├── snprintf.c │ └── snprintf.h ├── os2threads.h ├── solaris │ └── make_sunver.pl ├── strtod.c ├── va_copy.h ├── w32dlfcn.h ├── w32pthreads.h └── windows │ ├── makedef │ └── mslink ├── configure ├── doc ├── .gitignore ├── APIchanges ├── Doxyfile ├── Makefile ├── authors.texi ├── bitstream_filters.texi ├── bootstrap.min.css ├── build_system.txt ├── codecs.texi ├── decoders.texi ├── default.css ├── demuxers.texi ├── developer.texi ├── devices.texi ├── doxy-wrapper.sh ├── doxy │ └── .gitignore ├── encoders.texi ├── errno.txt ├── examples │ ├── .gitignore │ ├── Makefile │ ├── Makefile.example │ ├── README │ ├── avio_dir_cmd.c │ ├── avio_reading.c │ ├── decode_audio.c │ ├── decode_video.c │ ├── demuxing_decoding.c │ ├── encode_audio.c │ ├── encode_video.c │ ├── extract_mvs.c │ ├── filter_audio.c │ ├── filtering_audio.c │ ├── filtering_video.c │ ├── http_multiclient.c │ ├── hw_decode.c │ ├── metadata.c │ ├── muxing.c │ ├── qsvdec.c │ ├── remuxing.c │ ├── resampling_audio.c │ ├── scaling_video.c │ ├── transcode_aac.c │ ├── transcoding.c │ ├── vaapi_encode.c │ └── vaapi_transcode.c ├── faq.texi ├── fate.texi ├── fate_config.sh.template ├── ffmpeg-bitstream-filters.texi ├── ffmpeg-codecs.texi ├── ffmpeg-devices.texi ├── ffmpeg-filters.texi ├── ffmpeg-formats.texi ├── ffmpeg-protocols.texi ├── ffmpeg-resampler.texi ├── ffmpeg-scaler.texi ├── ffmpeg-utils.texi ├── ffmpeg.texi ├── ffmpeg.txt ├── ffplay.texi ├── ffprobe.texi ├── ffprobe.xsd ├── fftools-common-opts.texi ├── filter_design.txt ├── filters.texi ├── formats.texi ├── general.texi ├── git-howto.texi ├── indevs.texi ├── issue_tracker.txt ├── lexicon ├── libav-merge.txt ├── libavcodec.texi ├── libavdevice.texi ├── libavfilter.texi ├── libavformat.texi ├── libavutil.texi ├── libswresample.texi ├── libswscale.texi ├── mailing-list-faq.texi ├── metadata.texi ├── mips.txt ├── multithreading.txt ├── muxers.texi ├── nut.texi ├── optimization.txt ├── outdevs.texi ├── patchwork ├── platform.texi ├── print_options.c ├── protocols.texi ├── rate_distortion.txt ├── resampler.texi ├── scaler.texi ├── snow.txt ├── style.min.css ├── swresample.txt ├── swscale.txt ├── t2h.init ├── t2h.pm ├── tablegen.txt ├── texi2pod.pl ├── texidep.pl ├── undefined.txt ├── utils.texi └── writing_filters.txt ├── ffbuild ├── .gitignore ├── arch.mak ├── common.mak ├── library.mak ├── libversion.sh ├── pkgconfig_generate.sh └── version.sh ├── fftools ├── Makefile ├── cmdutils.c ├── cmdutils.h ├── ffmpeg.c ├── ffmpeg.h ├── ffmpeg_cuvid.c ├── ffmpeg_filter.c ├── ffmpeg_hw.c ├── ffmpeg_opt.c ├── ffmpeg_qsv.c ├── ffmpeg_videotoolbox.c ├── ffplay.c └── ffprobe.c ├── libavcodec ├── .gitignore ├── 012v.c ├── 4xm.c ├── 8bps.c ├── 8svx.c ├── Makefile ├── a64colors.h ├── a64multienc.c ├── a64tables.h ├── aac.h ├── aac_ac3_parser.c ├── aac_ac3_parser.h ├── aac_adtstoasc_bsf.c ├── aac_defines.h ├── aac_parser.c ├── aaccoder.c ├── aaccoder_trellis.h ├── aaccoder_twoloop.h ├── aacdec.c ├── aacdec_fixed.c ├── aacdec_template.c ├── aacdectab.h ├── aacenc.c ├── aacenc.h ├── aacenc_is.c ├── aacenc_is.h ├── aacenc_ltp.c ├── aacenc_ltp.h ├── aacenc_pred.c ├── aacenc_pred.h ├── aacenc_quantization.h ├── aacenc_quantization_misc.h ├── aacenc_tns.c ├── aacenc_tns.h ├── aacenc_utils.h ├── aacenctab.c ├── aacenctab.h ├── aacps.c ├── aacps.h ├── aacps_fixed.c ├── aacps_fixed_tablegen.c ├── aacps_fixed_tablegen.h ├── aacps_float.c ├── aacps_tablegen.c ├── aacps_tablegen.h ├── aacps_tablegen_template.c ├── aacpsdata.c ├── aacpsdsp.h ├── aacpsdsp_fixed.c ├── aacpsdsp_float.c ├── aacpsdsp_template.c ├── aacpsy.c ├── aacsbr.c ├── aacsbr.h ├── aacsbr_fixed.c ├── aacsbr_fixed_tablegen.h ├── aacsbr_tablegen.h ├── aacsbr_tablegen_common.h ├── aacsbr_template.c ├── aacsbrdata.h ├── aactab.c ├── aactab.h ├── aandcttab.c ├── aandcttab.h ├── aarch64 │ ├── Makefile │ ├── aacpsdsp_init_aarch64.c │ ├── aacpsdsp_neon.S │ ├── asm-offsets.h │ ├── cabac.h │ ├── fft_init_aarch64.c │ ├── fft_neon.S │ ├── fmtconvert_init.c │ ├── fmtconvert_neon.S │ ├── h264chroma_init_aarch64.c │ ├── h264cmc_neon.S │ ├── h264dsp_init_aarch64.c │ ├── h264dsp_neon.S │ ├── h264idct_neon.S │ ├── h264pred_init.c │ ├── h264pred_neon.S │ ├── h264qpel_init_aarch64.c │ ├── h264qpel_neon.S │ ├── hpeldsp_init_aarch64.c │ ├── hpeldsp_neon.S │ ├── idct.h │ ├── idctdsp_init_aarch64.c │ ├── mdct_neon.S │ ├── mpegaudiodsp_init.c │ ├── mpegaudiodsp_neon.S │ ├── neon.S │ ├── neontest.c │ ├── rv40dsp_init_aarch64.c │ ├── sbrdsp_init_aarch64.c │ ├── sbrdsp_neon.S │ ├── simple_idct_neon.S │ ├── synth_filter_init.c │ ├── synth_filter_neon.S │ ├── vc1dsp_init_aarch64.c │ ├── videodsp.S │ ├── videodsp_init.c │ ├── vorbisdsp_init.c │ ├── vorbisdsp_neon.S │ ├── vp9dsp_init.h │ ├── vp9dsp_init_10bpp_aarch64.c │ ├── vp9dsp_init_12bpp_aarch64.c │ ├── vp9dsp_init_16bpp_aarch64_template.c │ ├── vp9dsp_init_aarch64.c │ ├── vp9itxfm_16bpp_neon.S │ ├── vp9itxfm_neon.S │ ├── vp9lpf_16bpp_neon.S │ ├── vp9lpf_neon.S │ ├── vp9mc_16bpp_neon.S │ └── vp9mc_neon.S ├── aasc.c ├── ac3.c ├── ac3.h ├── ac3_parser.c ├── ac3_parser.h ├── ac3_parser_internal.h ├── ac3dec.c ├── ac3dec.h ├── ac3dec_data.c ├── ac3dec_data.h ├── ac3dec_fixed.c ├── ac3dec_float.c ├── ac3dsp.c ├── ac3dsp.h ├── ac3enc.c ├── ac3enc.h ├── ac3enc_fixed.c ├── ac3enc_float.c ├── ac3enc_opts_template.c ├── ac3enc_template.c ├── ac3tab.c ├── ac3tab.h ├── acelp_filters.c ├── acelp_filters.h ├── acelp_pitch_delay.c ├── acelp_pitch_delay.h ├── acelp_vectors.c ├── acelp_vectors.h ├── adpcm.c ├── adpcm.h ├── adpcm_data.c ├── adpcm_data.h ├── adpcmenc.c ├── adts_header.c ├── adts_header.h ├── adts_parser.c ├── adts_parser.h ├── adx.c ├── adx.h ├── adx_parser.c ├── adxdec.c ├── adxenc.c ├── aic.c ├── alac.c ├── alac_data.c ├── alac_data.h ├── alacdsp.c ├── alacdsp.h ├── alacenc.c ├── aliaspixdec.c ├── aliaspixenc.c ├── allcodecs.c ├── alpha │ ├── Makefile │ ├── asm.h │ ├── blockdsp_alpha.c │ ├── hpeldsp_alpha.c │ ├── hpeldsp_alpha.h │ ├── hpeldsp_alpha_asm.S │ ├── idctdsp_alpha.c │ ├── idctdsp_alpha.h │ ├── idctdsp_alpha_asm.S │ ├── me_cmp_alpha.c │ ├── me_cmp_mvi_asm.S │ ├── mpegvideo_alpha.c │ ├── pixblockdsp_alpha.c │ ├── regdef.h │ └── simple_idct_alpha.c ├── alsdec.c ├── amfenc.c ├── amfenc.h ├── amfenc_h264.c ├── amfenc_hevc.c ├── amr.h ├── amrnbdata.h ├── amrnbdec.c ├── amrwbdata.h ├── amrwbdec.c ├── anm.c ├── ansi.c ├── apedec.c ├── apng.h ├── aptx.c ├── arm │ ├── Makefile │ ├── aac.h │ ├── aacpsdsp_init_arm.c │ ├── aacpsdsp_neon.S │ ├── ac3dsp_arm.S │ ├── ac3dsp_armv6.S │ ├── ac3dsp_init_arm.c │ ├── ac3dsp_neon.S │ ├── asm-offsets.h │ ├── audiodsp_arm.h │ ├── audiodsp_init_arm.c │ ├── audiodsp_init_neon.c │ ├── audiodsp_neon.S │ ├── blockdsp_arm.h │ ├── blockdsp_init_arm.c │ ├── blockdsp_init_neon.c │ ├── blockdsp_neon.S │ ├── cabac.h │ ├── dca.h │ ├── fft_fixed_init_arm.c │ ├── fft_fixed_neon.S │ ├── fft_init_arm.c │ ├── fft_neon.S │ ├── fft_vfp.S │ ├── flacdsp_arm.S │ ├── flacdsp_init_arm.c │ ├── fmtconvert_init_arm.c │ ├── fmtconvert_neon.S │ ├── fmtconvert_vfp.S │ ├── g722dsp_init_arm.c │ ├── g722dsp_neon.S │ ├── h264chroma_init_arm.c │ ├── h264cmc_neon.S │ ├── h264dsp_init_arm.c │ ├── h264dsp_neon.S │ ├── h264idct_neon.S │ ├── h264pred_init_arm.c │ ├── h264pred_neon.S │ ├── h264qpel_init_arm.c │ ├── h264qpel_neon.S │ ├── hevcdsp_arm.h │ ├── hevcdsp_deblock_neon.S │ ├── hevcdsp_idct_neon.S │ ├── hevcdsp_init_arm.c │ ├── hevcdsp_init_neon.c │ ├── hevcdsp_qpel_neon.S │ ├── hevcdsp_sao_neon.S │ ├── hpeldsp_arm.S │ ├── hpeldsp_arm.h │ ├── hpeldsp_armv6.S │ ├── hpeldsp_init_arm.c │ ├── hpeldsp_init_armv6.c │ ├── hpeldsp_init_neon.c │ ├── hpeldsp_neon.S │ ├── idct.h │ ├── idctdsp_arm.S │ ├── idctdsp_arm.h │ ├── idctdsp_armv6.S │ ├── idctdsp_init_arm.c │ ├── idctdsp_init_armv5te.c │ ├── idctdsp_init_armv6.c │ ├── idctdsp_init_neon.c │ ├── idctdsp_neon.S │ ├── int_neon.S │ ├── jrevdct_arm.S │ ├── lossless_audiodsp_init_arm.c │ ├── lossless_audiodsp_neon.S │ ├── mathops.h │ ├── mdct_fixed_neon.S │ ├── mdct_neon.S │ ├── mdct_vfp.S │ ├── me_cmp_armv6.S │ ├── me_cmp_init_arm.c │ ├── mlpdsp_armv5te.S │ ├── mlpdsp_armv6.S │ ├── mlpdsp_init_arm.c │ ├── mpegaudiodsp_fixed_armv6.S │ ├── mpegaudiodsp_init_arm.c │ ├── mpegvideo_arm.c │ ├── mpegvideo_arm.h │ ├── mpegvideo_armv5te.c │ ├── mpegvideo_armv5te_s.S │ ├── mpegvideo_neon.S │ ├── mpegvideoencdsp_armv6.S │ ├── mpegvideoencdsp_init_arm.c │ ├── neon.S │ ├── neontest.c │ ├── pixblockdsp_armv6.S │ ├── pixblockdsp_init_arm.c │ ├── rdft_init_arm.c │ ├── rdft_neon.S │ ├── rv34dsp_init_arm.c │ ├── rv34dsp_neon.S │ ├── rv40dsp_init_arm.c │ ├── rv40dsp_neon.S │ ├── sbcdsp_armv6.S │ ├── sbcdsp_init_arm.c │ ├── sbcdsp_neon.S │ ├── sbrdsp_init_arm.c │ ├── sbrdsp_neon.S │ ├── simple_idct_arm.S │ ├── simple_idct_armv5te.S │ ├── simple_idct_armv6.S │ ├── simple_idct_neon.S │ ├── startcode.h │ ├── startcode_armv6.S │ ├── synth_filter_init_arm.c │ ├── synth_filter_neon.S │ ├── synth_filter_vfp.S │ ├── vc1dsp.h │ ├── vc1dsp_init_arm.c │ ├── vc1dsp_init_neon.c │ ├── vc1dsp_neon.S │ ├── videodsp_arm.h │ ├── videodsp_armv5te.S │ ├── videodsp_init_arm.c │ ├── videodsp_init_armv5te.c │ ├── vorbisdsp_init_arm.c │ ├── vorbisdsp_neon.S │ ├── vp3dsp_init_arm.c │ ├── vp3dsp_neon.S │ ├── vp56_arith.h │ ├── vp6dsp_init_arm.c │ ├── vp6dsp_neon.S │ ├── vp8.h │ ├── vp8_armv6.S │ ├── vp8dsp.h │ ├── vp8dsp_armv6.S │ ├── vp8dsp_init_arm.c │ ├── vp8dsp_init_armv6.c │ ├── vp8dsp_init_neon.c │ ├── vp8dsp_neon.S │ ├── vp9dsp_init.h │ ├── vp9dsp_init_10bpp_arm.c │ ├── vp9dsp_init_12bpp_arm.c │ ├── vp9dsp_init_16bpp_arm_template.c │ ├── vp9dsp_init_arm.c │ ├── vp9itxfm_16bpp_neon.S │ ├── vp9itxfm_neon.S │ ├── vp9lpf_16bpp_neon.S │ ├── vp9lpf_neon.S │ ├── vp9mc_16bpp_neon.S │ └── vp9mc_neon.S ├── ass.c ├── ass.h ├── ass_split.c ├── ass_split.h ├── assdec.c ├── assenc.c ├── asv.c ├── asv.h ├── asvdec.c ├── asvenc.c ├── atrac.c ├── atrac.h ├── atrac1.c ├── atrac1data.h ├── atrac3.c ├── atrac3data.h ├── atrac3plus.c ├── atrac3plus.h ├── atrac3plus_data.h ├── atrac3plusdec.c ├── atrac3plusdsp.c ├── audio_frame_queue.c ├── audio_frame_queue.h ├── audiodsp.c ├── audiodsp.h ├── audiotoolboxdec.c ├── audiotoolboxenc.c ├── aura.c ├── avcodec.h ├── avcodecres.rc ├── avdct.c ├── avdct.h ├── avfft.c ├── avfft.h ├── avpacket.c ├── avpicture.c ├── avr32 │ └── mathops.h ├── avrndec.c ├── avs.c ├── avuidec.c ├── avuienc.c ├── bethsoftvideo.c ├── bethsoftvideo.h ├── bfi.c ├── bfin │ └── README ├── bgmc.c ├── bgmc.h ├── bink.c ├── binkaudio.c ├── binkdata.h ├── binkdsp.c ├── binkdsp.h ├── bintext.c ├── bintext.h ├── bit_depth_template.c ├── bitpacked.c ├── bitstream.c ├── bitstream_filter.c ├── bitstream_filters.c ├── blockdsp.c ├── blockdsp.h ├── bmp.c ├── bmp.h ├── bmp_parser.c ├── bmpenc.c ├── bmvaudio.c ├── bmvvideo.c ├── brenderpix.c ├── bsf.c ├── bsf.h ├── bswapdsp.c ├── bswapdsp.h ├── bytestream.h ├── c93.c ├── cabac.c ├── cabac.h ├── cabac_functions.h ├── canopus.c ├── canopus.h ├── cavs.c ├── cavs.h ├── cavs_parser.c ├── cavsdata.c ├── cavsdec.c ├── cavsdsp.c ├── cavsdsp.h ├── cbrt_data.c ├── cbrt_data.h ├── cbrt_data_fixed.c ├── cbrt_fixed_tablegen.c ├── cbrt_tablegen.c ├── cbrt_tablegen.h ├── cbrt_tablegen_template.c ├── cbs.c ├── cbs.h ├── cbs_h264.h ├── cbs_h2645.c ├── cbs_h2645.h ├── cbs_h264_syntax_template.c ├── cbs_h265.h ├── cbs_h265_syntax_template.c ├── cbs_internal.h ├── cbs_mpeg2.c ├── cbs_mpeg2.h ├── cbs_mpeg2_syntax_template.c ├── ccaption_dec.c ├── cdgraphics.c ├── cdxl.c ├── celp_filters.c ├── celp_filters.h ├── celp_math.c ├── celp_math.h ├── cfhd.c ├── cfhd.h ├── cfhddata.c ├── cga_data.c ├── cga_data.h ├── chomp_bsf.c ├── cinepak.c ├── cinepakenc.c ├── clearvideo.c ├── clearvideodata.h ├── cljrdec.c ├── cljrenc.c ├── cllc.c ├── cngdec.c ├── cngenc.c ├── codec2utils.c ├── codec2utils.h ├── codec_desc.c ├── cook.c ├── cook_parser.c ├── cookdata.h ├── copy_block.h ├── cos_tablegen.c ├── cpia.c ├── crystalhd.c ├── cscd.c ├── cuviddec.c ├── cyuv.c ├── d3d11va.c ├── d3d11va.h ├── dca.c ├── dca.h ├── dca_core.c ├── dca_core.h ├── dca_core_bsf.c ├── dca_exss.c ├── dca_exss.h ├── dca_lbr.c ├── dca_lbr.h ├── dca_parser.c ├── dca_syncwords.h ├── dca_xll.c ├── dca_xll.h ├── dcaadpcm.c ├── dcaadpcm.h ├── dcadata.c ├── dcadata.h ├── dcadct.c ├── dcadct.h ├── dcadec.c ├── dcadec.h ├── dcadsp.c ├── dcadsp.h ├── dcaenc.c ├── dcaenc.h ├── dcahuff.c ├── dcahuff.h ├── dcamath.h ├── dct.c ├── dct.h ├── dct32.h ├── dct32_fixed.c ├── dct32_float.c ├── dct32_template.c ├── dctref.c ├── dctref.h ├── dds.c ├── decode.c ├── decode.h ├── dfa.c ├── dirac.c ├── dirac.h ├── dirac_arith.c ├── dirac_arith.h ├── dirac_dwt.c ├── dirac_dwt.h ├── dirac_dwt_template.c ├── dirac_parser.c ├── dirac_vlc.c ├── dirac_vlc.h ├── diracdec.c ├── diracdsp.c ├── diracdsp.h ├── diractab.c ├── diractab.h ├── dnxhd_parser.c ├── dnxhddata.c ├── dnxhddata.h ├── dnxhddec.c ├── dnxhdenc.c ├── dnxhdenc.h ├── dolby_e.c ├── dolby_e.h ├── dpcm.c ├── dpx.c ├── dpx_parser.c ├── dpxenc.c ├── dsd.c ├── dsd.h ├── dsd_tablegen.h ├── dsddec.c ├── dsicinaudio.c ├── dsicinvideo.c ├── dss_sp.c ├── dstdec.c ├── dump_extradata_bsf.c ├── dv.c ├── dv.h ├── dv_profile.c ├── dv_profile.h ├── dv_profile_internal.h ├── dv_tablegen.c ├── dv_tablegen.h ├── dvaudio.h ├── dvaudio_parser.c ├── dvaudiodec.c ├── dvbsub.c ├── dvbsub_parser.c ├── dvbsubdec.c ├── dvbtxt.h ├── dvd_nav_parser.c ├── dvdata.c ├── dvdata.h ├── dvdec.c ├── dvdsub_parser.c ├── dvdsubdec.c ├── dvdsubenc.c ├── dvenc.c ├── dxa.c ├── dxtory.c ├── dxv.c ├── dxva2.c ├── dxva2.h ├── dxva2_h264.c ├── dxva2_hevc.c ├── dxva2_internal.h ├── dxva2_mpeg2.c ├── dxva2_vc1.c ├── dxva2_vp9.c ├── eac3_core_bsf.c ├── eac3_data.c ├── eac3_data.h ├── eac3dec.c ├── eac3enc.c ├── eac3enc.h ├── eacmv.c ├── eaidct.c ├── eaidct.h ├── eamad.c ├── eatgq.c ├── eatgv.c ├── eatqi.c ├── elbg.c ├── elbg.h ├── elsdec.c ├── elsdec.h ├── encode.c ├── error_resilience.c ├── error_resilience.h ├── escape124.c ├── escape130.c ├── evrcdata.h ├── evrcdec.c ├── exif.c ├── exif.h ├── exr.c ├── exrdsp.c ├── exrdsp.h ├── extract_extradata_bsf.c ├── faandct.c ├── faandct.h ├── faanidct.c ├── faanidct.h ├── faxcompr.c ├── faxcompr.h ├── fdctdsp.c ├── fdctdsp.h ├── ffjni.c ├── ffjni.h ├── fft-internal.h ├── fft.h ├── fft_fixed.c ├── fft_fixed_32.c ├── fft_float.c ├── fft_init_table.c ├── fft_table.h ├── fft_template.c ├── ffv1.c ├── ffv1.h ├── ffv1_template.c ├── ffv1dec.c ├── ffv1dec_template.c ├── ffv1enc.c ├── ffv1enc_template.c ├── ffwavesynth.c ├── fic.c ├── file_open.c ├── filter_units_bsf.c ├── fits.c ├── fits.h ├── fitsdec.c ├── fitsenc.c ├── flac.c ├── flac.h ├── flac_parser.c ├── flacdata.c ├── flacdata.h ├── flacdec.c ├── flacdsp.c ├── flacdsp.h ├── flacdsp_lpc_template.c ├── flacdsp_template.c ├── flacenc.c ├── flashsv.c ├── flashsv2enc.c ├── flashsvenc.c ├── flicvideo.c ├── flv.h ├── flvdec.c ├── flvenc.c ├── fmtconvert.c ├── fmtconvert.h ├── fmvc.c ├── frame_thread_encoder.c ├── frame_thread_encoder.h ├── fraps.c ├── frwu.c ├── g2meet.c ├── g722.c ├── g722.h ├── g722dec.c ├── g722dsp.c ├── g722dsp.h ├── g722enc.c ├── g723_1.c ├── g723_1.h ├── g723_1dec.c ├── g723_1enc.c ├── g726.c ├── g729.h ├── g729_parser.c ├── g729data.h ├── g729dec.c ├── g729postfilter.c ├── g729postfilter.h ├── gdv.c ├── get_bits.h ├── gif.c ├── gif.h ├── gifdec.c ├── golomb.c ├── golomb.h ├── gsm.h ├── gsm_parser.c ├── gsmdec.c ├── gsmdec_data.c ├── gsmdec_data.h ├── gsmdec_template.c ├── h261.c ├── h261.h ├── h261_parser.c ├── h261data.c ├── h261dec.c ├── h261enc.c ├── h263.c ├── h263.h ├── h263_parser.c ├── h263_parser.h ├── h263data.c ├── h263data.h ├── h263dec.c ├── h263dsp.c ├── h263dsp.h ├── h264.h ├── h2645_parse.c ├── h2645_parse.h ├── h264_cabac.c ├── h264_cavlc.c ├── h264_direct.c ├── h264_loopfilter.c ├── h264_mb.c ├── h264_mb_template.c ├── h264_mc_template.c ├── h264_metadata_bsf.c ├── h264_mp4toannexb_bsf.c ├── h264_mvpred.h ├── h264_parse.c ├── h264_parse.h ├── h264_parser.c ├── h264_picture.c ├── h264_ps.c ├── h264_ps.h ├── h264_redundant_pps_bsf.c ├── h264_refs.c ├── h264_sei.c ├── h264_sei.h ├── h264_slice.c ├── h264addpx_template.c ├── h264chroma.c ├── h264chroma.h ├── h264chroma_template.c ├── h264data.c ├── h264data.h ├── h264dec.c ├── h264dec.h ├── h264dsp.c ├── h264dsp.h ├── h264dsp_template.c ├── h264idct.c ├── h264idct.h ├── h264idct_template.c ├── h264pred.c ├── h264pred.h ├── h264pred_template.c ├── h264qpel.c ├── h264qpel.h ├── h264qpel_template.c ├── h265_metadata_bsf.c ├── hap.c ├── hap.h ├── hapdec.c ├── hapenc.c ├── hapqa_extract_bsf.c ├── hevc.h ├── hevc_cabac.c ├── hevc_data.c ├── hevc_data.h ├── hevc_filter.c ├── hevc_mp4toannexb_bsf.c ├── hevc_mvs.c ├── hevc_parse.c ├── hevc_parse.h ├── hevc_parser.c ├── hevc_ps.c ├── hevc_ps.h ├── hevc_ps_enc.c ├── hevc_refs.c ├── hevc_sei.c ├── hevc_sei.h ├── hevcdec.c ├── hevcdec.h ├── hevcdsp.c ├── hevcdsp.h ├── hevcdsp_template.c ├── hevcpred.c ├── hevcpred.h ├── hevcpred_template.c ├── hnm4video.c ├── hpel_template.c ├── hpeldsp.c ├── hpeldsp.h ├── hq_hqa.c ├── hq_hqa.h ├── hq_hqadata.c ├── hq_hqadsp.c ├── hq_hqadsp.h ├── hqx.c ├── hqx.h ├── hqxdsp.c ├── hqxdsp.h ├── hqxvlc.c ├── htmlsubtitles.c ├── htmlsubtitles.h ├── huffman.c ├── huffman.h ├── huffyuv.c ├── huffyuv.h ├── huffyuvdec.c ├── huffyuvdsp.c ├── huffyuvdsp.h ├── huffyuvenc.c ├── huffyuvencdsp.c ├── huffyuvencdsp.h ├── hwaccel.h ├── hwaccels.h ├── idcinvideo.c ├── idctdsp.c ├── idctdsp.h ├── iff.c ├── iirfilter.c ├── iirfilter.h ├── imc.c ├── imcdata.h ├── imgconvert.c ├── imx_dump_header_bsf.c ├── indeo2.c ├── indeo2data.h ├── indeo3.c ├── indeo3data.h ├── indeo4.c ├── indeo4data.h ├── indeo5.c ├── indeo5data.h ├── intelh263dec.c ├── internal.h ├── interplayacm.c ├── interplayvideo.c ├── intrax8.c ├── intrax8.h ├── intrax8dsp.c ├── intrax8dsp.h ├── intrax8huf.h ├── ituh263dec.c ├── ituh263enc.c ├── ivi.c ├── ivi.h ├── ivi_dsp.c ├── ivi_dsp.h ├── j2kenc.c ├── jacosub.h ├── jacosubdec.c ├── jfdctfst.c ├── jfdctint.c ├── jfdctint_template.c ├── jni.c ├── jni.h ├── jpeg2000.c ├── jpeg2000.h ├── jpeg2000dec.c ├── jpeg2000dsp.c ├── jpeg2000dsp.h ├── jpeg2000dwt.c ├── jpeg2000dwt.h ├── jpegls.c ├── jpegls.h ├── jpeglsdec.c ├── jpeglsdec.h ├── jpeglsenc.c ├── jpegtables.c ├── jpegtables.h ├── jrevdct.c ├── jvdec.c ├── kbdwin.c ├── kbdwin.h ├── kgv1dec.c ├── kmvc.c ├── lagarith.c ├── lagarithrac.c ├── lagarithrac.h ├── latm_parser.c ├── lcl.h ├── lcldec.c ├── lclenc.c ├── libaomdec.c ├── libaomenc.c ├── libavcodec.v ├── libcelt_dec.c ├── libcodec2.c ├── libfdk-aacdec.c ├── libfdk-aacenc.c ├── libgsmdec.c ├── libgsmenc.c ├── libilbc.c ├── libkvazaar.c ├── libmp3lame.c ├── libopencore-amr.c ├── libopenh264.c ├── libopenh264.h ├── libopenh264dec.c ├── libopenh264enc.c ├── libopenjpegdec.c ├── libopenjpegenc.c ├── libopus.c ├── libopus.h ├── libopusdec.c ├── libopusenc.c ├── librsvgdec.c ├── libshine.c ├── libspeexdec.c ├── libspeexenc.c ├── libtheoraenc.c ├── libtwolame.c ├── libvo-amrwbenc.c ├── libvorbisdec.c ├── libvorbisenc.c ├── libvpx.c ├── libvpx.h ├── libvpxdec.c ├── libvpxenc.c ├── libwavpackenc.c ├── libwebpenc.c ├── libwebpenc_animencoder.c ├── libwebpenc_common.c ├── libwebpenc_common.h ├── libx264.c ├── libx265.c ├── libxavs.c ├── libxvid.c ├── libxvid.h ├── libxvid_rc.c ├── libzvbi-teletextdec.c ├── ljpegenc.c ├── loco.c ├── log2_tab.c ├── lossless_audiodsp.c ├── lossless_audiodsp.h ├── lossless_videodsp.c ├── lossless_videodsp.h ├── lossless_videoencdsp.c ├── lossless_videoencdsp.h ├── lpc.c ├── lpc.h ├── lsp.c ├── lsp.h ├── lzf.c ├── lzf.h ├── lzw.c ├── lzw.h ├── lzwenc.c ├── m101.c ├── mace.c ├── magicyuv.c ├── magicyuvenc.c ├── mathops.h ├── mathtables.c ├── mdct15.c ├── mdct15.h ├── mdct_fixed.c ├── mdct_fixed_32.c ├── mdct_float.c ├── mdct_template.c ├── mdec.c ├── me_cmp.c ├── me_cmp.h ├── mediacodec.c ├── mediacodec.h ├── mediacodec_surface.c ├── mediacodec_surface.h ├── mediacodec_sw_buffer.c ├── mediacodec_sw_buffer.h ├── mediacodec_wrapper.c ├── mediacodec_wrapper.h ├── mediacodecdec.c ├── mediacodecdec_common.c ├── mediacodecdec_common.h ├── metasound.c ├── metasound_data.c ├── metasound_data.h ├── microdvddec.c ├── mimic.c ├── mips │ ├── Makefile │ ├── aaccoder_mips.c │ ├── aacdec_mips.c │ ├── aacdec_mips.h │ ├── aacpsdsp_mips.c │ ├── aacpsy_mips.h │ ├── aacsbr_mips.c │ ├── aacsbr_mips.h │ ├── ac3dsp_mips.c │ ├── acelp_filters_mips.c │ ├── acelp_vectors_mips.c │ ├── amrwbdec_mips.c │ ├── amrwbdec_mips.h │ ├── blockdsp_init_mips.c │ ├── blockdsp_mips.h │ ├── blockdsp_mmi.c │ ├── blockdsp_msa.c │ ├── celp_filters_mips.c │ ├── celp_math_mips.c │ ├── compute_antialias_fixed.h │ ├── compute_antialias_float.h │ ├── constants.c │ ├── constants.h │ ├── fft_mips.c │ ├── fmtconvert_mips.c │ ├── h263dsp_init_mips.c │ ├── h263dsp_mips.h │ ├── h263dsp_msa.c │ ├── h264chroma_init_mips.c │ ├── h264chroma_mips.h │ ├── h264chroma_mmi.c │ ├── h264chroma_msa.c │ ├── h264dsp_init_mips.c │ ├── h264dsp_mips.h │ ├── h264dsp_mmi.c │ ├── h264dsp_msa.c │ ├── h264idct_msa.c │ ├── h264pred_init_mips.c │ ├── h264pred_mips.h │ ├── h264pred_mmi.c │ ├── h264pred_msa.c │ ├── h264qpel_init_mips.c │ ├── h264qpel_mmi.c │ ├── h264qpel_msa.c │ ├── hevc_idct_msa.c │ ├── hevc_lpf_sao_msa.c │ ├── hevc_macros_msa.h │ ├── hevc_mc_bi_msa.c │ ├── hevc_mc_biw_msa.c │ ├── hevc_mc_uni_msa.c │ ├── hevc_mc_uniw_msa.c │ ├── hevcdsp_init_mips.c │ ├── hevcdsp_mips.h │ ├── hevcdsp_msa.c │ ├── hevcpred_init_mips.c │ ├── hevcpred_mips.h │ ├── hevcpred_msa.c │ ├── hpeldsp_init_mips.c │ ├── hpeldsp_mips.h │ ├── hpeldsp_mmi.c │ ├── hpeldsp_msa.c │ ├── idctdsp_init_mips.c │ ├── idctdsp_mips.h │ ├── idctdsp_mmi.c │ ├── idctdsp_msa.c │ ├── iirfilter_mips.c │ ├── lsp_mips.h │ ├── mathops.h │ ├── me_cmp_init_mips.c │ ├── me_cmp_mips.h │ ├── me_cmp_msa.c │ ├── mpegaudiodsp_mips_fixed.c │ ├── mpegaudiodsp_mips_float.c │ ├── mpegvideo_init_mips.c │ ├── mpegvideo_mips.h │ ├── mpegvideo_mmi.c │ ├── mpegvideo_msa.c │ ├── mpegvideoencdsp_init_mips.c │ ├── mpegvideoencdsp_msa.c │ ├── pixblockdsp_init_mips.c │ ├── pixblockdsp_mips.h │ ├── pixblockdsp_mmi.c │ ├── pixblockdsp_msa.c │ ├── qpeldsp_init_mips.c │ ├── qpeldsp_mips.h │ ├── qpeldsp_msa.c │ ├── sbrdsp_mips.c │ ├── simple_idct_mmi.c │ ├── simple_idct_msa.c │ ├── vc1dsp_init_mips.c │ ├── vc1dsp_mips.h │ ├── vc1dsp_mmi.c │ ├── videodsp_init.c │ ├── vp8_idct_msa.c │ ├── vp8_lpf_msa.c │ ├── vp8_mc_msa.c │ ├── vp8dsp_init_mips.c │ ├── vp8dsp_mips.h │ ├── vp8dsp_mmi.c │ ├── vp9_idct_msa.c │ ├── vp9_intra_msa.c │ ├── vp9_lpf_msa.c │ ├── vp9_mc_msa.c │ ├── vp9dsp_init_mips.c │ ├── vp9dsp_mips.h │ ├── wmv2dsp_init_mips.c │ ├── wmv2dsp_mips.h │ ├── wmv2dsp_mmi.c │ ├── xvid_idct_mmi.c │ ├── xvididct_init_mips.c │ └── xvididct_mips.h ├── mjpeg.h ├── mjpeg2jpeg_bsf.c ├── mjpeg_parser.c ├── mjpega_dump_header_bsf.c ├── mjpegbdec.c ├── mjpegdec.c ├── mjpegdec.h ├── mjpegenc.c ├── mjpegenc.h ├── mjpegenc_common.c ├── mjpegenc_common.h ├── mjpegenc_huffman.c ├── mjpegenc_huffman.h ├── mlp.c ├── mlp.h ├── mlp_parser.c ├── mlp_parser.h ├── mlpdec.c ├── mlpdsp.c ├── mlpdsp.h ├── mlpenc.c ├── mlz.c ├── mlz.h ├── mmaldec.c ├── mmvideo.c ├── motion_est.c ├── motion_est.h ├── motion_est_template.c ├── motionpixels.c ├── motionpixels_tablegen.c ├── motionpixels_tablegen.h ├── movsub_bsf.c ├── movtextdec.c ├── movtextenc.c ├── mp3_header_decompress_bsf.c ├── mpc.c ├── mpc.h ├── mpc7.c ├── mpc7data.h ├── mpc8.c ├── mpc8data.h ├── mpc8huff.h ├── mpcdata.h ├── mpeg12.c ├── mpeg12.h ├── mpeg12data.c ├── mpeg12data.h ├── mpeg12dec.c ├── mpeg12enc.c ├── mpeg12framerate.c ├── mpeg12vlc.h ├── mpeg2_metadata_bsf.c ├── mpeg4_unpack_bframes_bsf.c ├── mpeg4audio.c ├── mpeg4audio.h ├── mpeg4data.h ├── mpeg4video.c ├── mpeg4video.h ├── mpeg4video_parser.c ├── mpeg4video_parser.h ├── mpeg4videodec.c ├── mpeg4videoenc.c ├── mpeg_er.c ├── mpeg_er.h ├── mpegaudio.c ├── mpegaudio.h ├── mpegaudio_parser.c ├── mpegaudio_tablegen.c ├── mpegaudio_tablegen.h ├── mpegaudiodata.c ├── mpegaudiodata.h ├── mpegaudiodec_fixed.c ├── mpegaudiodec_float.c ├── mpegaudiodec_template.c ├── mpegaudiodecheader.c ├── mpegaudiodecheader.h ├── mpegaudiodectab.h ├── mpegaudiodsp.c ├── mpegaudiodsp.h ├── mpegaudiodsp_data.c ├── mpegaudiodsp_fixed.c ├── mpegaudiodsp_float.c ├── mpegaudiodsp_template.c ├── mpegaudioenc_fixed.c ├── mpegaudioenc_float.c ├── mpegaudioenc_template.c ├── mpegaudiotab.h ├── mpegpicture.c ├── mpegpicture.h ├── mpegutils.c ├── mpegutils.h ├── mpegvideo.c ├── mpegvideo.h ├── mpegvideo_enc.c ├── mpegvideo_motion.c ├── mpegvideo_parser.c ├── mpegvideo_xvmc.c ├── mpegvideodata.c ├── mpegvideodata.h ├── mpegvideodsp.c ├── mpegvideodsp.h ├── mpegvideoencdsp.c ├── mpegvideoencdsp.h ├── mpl2dec.c ├── mqc.c ├── mqc.h ├── mqcdec.c ├── mqcenc.c ├── mscc.c ├── msgsmdec.c ├── msgsmdec.h ├── msmpeg4.c ├── msmpeg4.h ├── msmpeg4data.c ├── msmpeg4data.h ├── msmpeg4dec.c ├── msmpeg4enc.c ├── msrle.c ├── msrledec.c ├── msrledec.h ├── mss1.c ├── mss12.c ├── mss12.h ├── mss2.c ├── mss2dsp.c ├── mss2dsp.h ├── mss3.c ├── mss34dsp.c ├── mss34dsp.h ├── mss4.c ├── msvideo1.c ├── msvideo1enc.c ├── mvcdec.c ├── mxpegdec.c ├── nellymoser.c ├── nellymoser.h ├── nellymoserdec.c ├── nellymoserenc.c ├── neon │ ├── Makefile │ └── mpegvideo.c ├── noise_bsf.c ├── null_bsf.c ├── nuv.c ├── nvdec.c ├── nvdec.h ├── nvdec_h264.c ├── nvdec_hevc.c ├── nvdec_mjpeg.c ├── nvdec_mpeg12.c ├── nvdec_mpeg4.c ├── nvdec_vc1.c ├── nvdec_vp8.c ├── nvdec_vp9.c ├── nvenc.c ├── nvenc.h ├── nvenc_h264.c ├── nvenc_hevc.c ├── omx.c ├── on2avc.c ├── on2avcdata.c ├── on2avcdata.h ├── options.c ├── options_table.h ├── opus.c ├── opus.h ├── opus_celt.c ├── opus_celt.h ├── opus_parser.c ├── opus_pvq.c ├── opus_pvq.h ├── opus_rc.c ├── opus_rc.h ├── opus_silk.c ├── opusdec.c ├── opusenc.c ├── opusenc.h ├── opusenc_psy.c ├── opusenc_psy.h ├── opusenc_utils.h ├── opustab.c ├── opustab.h ├── paf.h ├── pafaudio.c ├── pafvideo.c ├── pamenc.c ├── parser.c ├── parser.h ├── pcm-bluray.c ├── pcm-dvd.c ├── pcm.c ├── pcm_tablegen.c ├── pcm_tablegen.h ├── pcx.c ├── pcxenc.c ├── pel_template.c ├── pgssubdec.c ├── pictordec.c ├── pixblockdsp.c ├── pixblockdsp.h ├── pixels.h ├── pixlet.c ├── png.c ├── png.h ├── png_parser.c ├── pngdec.c ├── pngdsp.c ├── pngdsp.h ├── pngenc.c ├── pnm.c ├── pnm.h ├── pnm_parser.c ├── pnmdec.c ├── pnmenc.c ├── ppc │ ├── Makefile │ ├── asm.S │ ├── audiodsp.c │ ├── blockdsp.c │ ├── fdct.h │ ├── fdctdsp.c │ ├── fft_altivec.S │ ├── fft_init.c │ ├── fft_vsx.c │ ├── fft_vsx.h │ ├── fmtconvert_altivec.c │ ├── h264chroma_init.c │ ├── h264chroma_template.c │ ├── h264dsp.c │ ├── h264qpel.c │ ├── h264qpel_template.c │ ├── hevcdsp.c │ ├── hevcdsp_template.c │ ├── hpeldsp_altivec.c │ ├── hpeldsp_altivec.h │ ├── idctdsp.c │ ├── lossless_audiodsp_altivec.c │ ├── lossless_videodsp_altivec.c │ ├── mathops.h │ ├── me_cmp.c │ ├── mpegaudiodsp_altivec.c │ ├── mpegvideo_altivec.c │ ├── mpegvideodsp.c │ ├── mpegvideoencdsp.c │ ├── pixblockdsp.c │ ├── svq1enc_altivec.c │ ├── vc1dsp_altivec.c │ ├── videodsp.c │ ├── vorbisdsp_altivec.c │ ├── vp3dsp_altivec.c │ └── vp8dsp_altivec.c ├── profiles.c ├── profiles.h ├── proresdata.c ├── proresdata.h ├── proresdec.h ├── proresdec2.c ├── proresdec_lgpl.c ├── proresdsp.c ├── proresdsp.h ├── proresenc_anatoliy.c ├── proresenc_kostya.c ├── psd.c ├── psymodel.c ├── psymodel.h ├── pthread.c ├── pthread_frame.c ├── pthread_internal.h ├── pthread_slice.c ├── ptx.c ├── put_bits.h ├── qcelpdata.h ├── qcelpdec.c ├── qdm2.c ├── qdm2_tablegen.c ├── qdm2_tablegen.h ├── qdm2data.h ├── qdmc.c ├── qdrw.c ├── qpeg.c ├── qpel_template.c ├── qpeldsp.c ├── qpeldsp.h ├── qsv.c ├── qsv.h ├── qsv_api.c ├── qsv_internal.h ├── qsvdec.c ├── qsvdec.h ├── qsvdec_h2645.c ├── qsvdec_other.c ├── qsvenc.c ├── qsvenc.h ├── qsvenc_h264.c ├── qsvenc_hevc.c ├── qsvenc_jpeg.c ├── qsvenc_mpeg2.c ├── qtrle.c ├── qtrleenc.c ├── r210dec.c ├── r210enc.c ├── ra144.c ├── ra144.h ├── ra144dec.c ├── ra144enc.c ├── ra288.c ├── ra288.h ├── ralf.c ├── ralfdata.h ├── rangecoder.c ├── rangecoder.h ├── ratecontrol.c ├── ratecontrol.h ├── raw.c ├── raw.h ├── rawdec.c ├── rawenc.c ├── rdft.c ├── rdft.h ├── realtextdec.c ├── rectangle.h ├── remove_extradata_bsf.c ├── reverse.c ├── rkmppdec.c ├── rl.c ├── rl.h ├── rl2.c ├── rle.c ├── rle.h ├── rnd_avg.h ├── roqaudioenc.c ├── roqvideo.c ├── roqvideo.h ├── roqvideodec.c ├── roqvideoenc.c ├── rpza.c ├── rscc.c ├── rtjpeg.c ├── rtjpeg.h ├── rv10.c ├── rv10.h ├── rv10enc.c ├── rv20enc.c ├── rv30.c ├── rv30data.h ├── rv30dsp.c ├── rv34.c ├── rv34.h ├── rv34_parser.c ├── rv34data.h ├── rv34dsp.c ├── rv34dsp.h ├── rv34vlc.h ├── rv40.c ├── rv40data.h ├── rv40dsp.c ├── rv40vlc2.h ├── s302m.c ├── s302menc.c ├── samidec.c ├── sanm.c ├── sbc.c ├── sbc.h ├── sbc_parser.c ├── sbcdec.c ├── sbcdec_data.c ├── sbcdec_data.h ├── sbcdsp.c ├── sbcdsp.h ├── sbcdsp_data.c ├── sbcdsp_data.h ├── sbcenc.c ├── sbr.h ├── sbrdsp.c ├── sbrdsp.h ├── sbrdsp_fixed.c ├── sbrdsp_template.c ├── scpr.c ├── screenpresso.c ├── sgi.h ├── sgidec.c ├── sgienc.c ├── sgirledec.c ├── sh4 │ └── README ├── sheervideo.c ├── sheervideodata.h ├── shorten.c ├── simple_idct.c ├── simple_idct.h ├── simple_idct_template.c ├── sinewin.c ├── sinewin.h ├── sinewin_fixed.c ├── sinewin_fixed_tablegen.c ├── sinewin_tablegen.c ├── sinewin_tablegen.h ├── sinewin_tablegen_template.c ├── sipr.c ├── sipr.h ├── sipr16k.c ├── sipr16kdata.h ├── sipr_parser.c ├── siprdata.h ├── smacker.c ├── smc.c ├── smvjpegdec.c ├── snappy.c ├── snappy.h ├── snow.c ├── snow.h ├── snow_dwt.c ├── snow_dwt.h ├── snowdata.h ├── snowdec.c ├── snowenc.c ├── sonic.c ├── sp5x.h ├── sp5xdec.c ├── sparc │ └── README ├── speedhq.c ├── srtdec.c ├── srtenc.c ├── startcode.c ├── startcode.h ├── subviewerdec.c ├── sunrast.c ├── sunrast.h ├── sunrastenc.c ├── svq1.c ├── svq1.h ├── svq13.c ├── svq1_cb.h ├── svq1_vlc.h ├── svq1dec.c ├── svq1enc.c ├── svq1enc.h ├── svq1enc_cb.h ├── svq3.c ├── synth_filter.c ├── synth_filter.h ├── tableprint.h ├── tableprint_vlc.h ├── tak.c ├── tak.h ├── tak_parser.c ├── takdec.c ├── takdsp.c ├── takdsp.h ├── targa.c ├── targa.h ├── targa_y216dec.c ├── targaenc.c ├── tdsc.c ├── tests │ ├── .gitignore │ ├── aarch64 │ │ └── dct.c │ ├── arm │ │ └── dct.c │ ├── avfft.c │ ├── avpacket.c │ ├── cabac.c │ ├── celp_math.c │ ├── codec_desc.c │ ├── dct.c │ ├── fft-fixed.c │ ├── fft-fixed32.c │ ├── fft.c │ ├── golomb.c │ ├── htmlsubtitles.c │ ├── iirfilter.c │ ├── imgconvert.c │ ├── jpeg2000dwt.c │ ├── mathops.c │ ├── mjpegenc_huffman.c │ ├── motion.c │ ├── mpeg12framerate.c │ ├── options.c │ ├── ppc │ │ └── dct.c │ ├── rangecoder.c │ ├── snowenc.c │ ├── utils.c │ └── x86 │ │ └── dct.c ├── textdec.c ├── texturedsp.c ├── texturedsp.h ├── texturedspenc.c ├── thread.h ├── tiertexseqv.c ├── tiff.c ├── tiff.h ├── tiff_common.c ├── tiff_common.h ├── tiff_data.c ├── tiff_data.h ├── tiffenc.c ├── tmv.c ├── tpeldsp.c ├── tpeldsp.h ├── trace_headers_bsf.c ├── truemotion1.c ├── truemotion1data.h ├── truemotion2.c ├── truemotion2rt.c ├── truespeech.c ├── truespeech_data.h ├── tscc.c ├── tscc2.c ├── tscc2data.h ├── tta.c ├── ttadata.c ├── ttadata.h ├── ttadsp.c ├── ttadsp.h ├── ttaenc.c ├── ttaencdsp.c ├── ttaencdsp.h ├── twinvq.c ├── twinvq.h ├── twinvq_data.h ├── twinvqdec.c ├── txd.c ├── ulti.c ├── ulti_cb.h ├── unary.h ├── utils.c ├── utvideo.c ├── utvideo.h ├── utvideodec.c ├── utvideodsp.c ├── utvideodsp.h ├── utvideoenc.c ├── v210dec.c ├── v210dec.h ├── v210enc.c ├── v210enc.h ├── v210x.c ├── v308dec.c ├── v308enc.c ├── v408dec.c ├── v408enc.c ├── v410dec.c ├── v410enc.c ├── v4l2_buffers.c ├── v4l2_buffers.h ├── v4l2_context.c ├── v4l2_context.h ├── v4l2_fmt.c ├── v4l2_fmt.h ├── v4l2_m2m.c ├── v4l2_m2m.h ├── v4l2_m2m_dec.c ├── v4l2_m2m_enc.c ├── vaapi.h ├── vaapi_decode.c ├── vaapi_decode.h ├── vaapi_encode.c ├── vaapi_encode.h ├── vaapi_encode_h264.c ├── vaapi_encode_h265.c ├── vaapi_encode_mjpeg.c ├── vaapi_encode_mpeg2.c ├── vaapi_encode_vp8.c ├── vaapi_encode_vp9.c ├── vaapi_h264.c ├── vaapi_hevc.c ├── vaapi_mjpeg.c ├── vaapi_mpeg2.c ├── vaapi_mpeg4.c ├── vaapi_vc1.c ├── vaapi_vp8.c ├── vaapi_vp9.c ├── vb.c ├── vble.c ├── vc1.c ├── vc1.h ├── vc1_block.c ├── vc1_common.h ├── vc1_loopfilter.c ├── vc1_mc.c ├── vc1_parser.c ├── vc1_pred.c ├── vc1_pred.h ├── vc1acdata.h ├── vc1data.c ├── vc1data.h ├── vc1dec.c ├── vc1dsp.c ├── vc1dsp.h ├── vc2enc.c ├── vc2enc_dwt.c ├── vc2enc_dwt.h ├── vcr1.c ├── vdpau.c ├── vdpau.h ├── vdpau_h264.c ├── vdpau_hevc.c ├── vdpau_internal.h ├── vdpau_mpeg12.c ├── vdpau_mpeg4.c ├── vdpau_vc1.c ├── version.h ├── videodsp.c ├── videodsp.h ├── videodsp_template.c ├── videotoolbox.c ├── videotoolbox.h ├── videotoolboxenc.c ├── vima.c ├── vlc.h ├── vmdaudio.c ├── vmdvideo.c ├── vmnc.c ├── vorbis.c ├── vorbis.h ├── vorbis_data.c ├── vorbis_enc_data.h ├── vorbis_parser.c ├── vorbis_parser.h ├── vorbis_parser_internal.h ├── vorbisdec.c ├── vorbisdsp.c ├── vorbisdsp.h ├── vorbisenc.c ├── vp3.c ├── vp3_parser.c ├── vp3data.h ├── vp3dsp.c ├── vp3dsp.h ├── vp5.c ├── vp56.c ├── vp56.h ├── vp56data.c ├── vp56data.h ├── vp56dsp.c ├── vp56dsp.h ├── vp56rac.c ├── vp5data.h ├── vp6.c ├── vp6data.h ├── vp6dsp.c ├── vp8.c ├── vp8.h ├── vp8_parser.c ├── vp8data.h ├── vp8dsp.c ├── vp8dsp.h ├── vp9.c ├── vp9.h ├── vp9_mc_template.c ├── vp9_parser.c ├── vp9_raw_reorder_bsf.c ├── vp9_superframe_bsf.c ├── vp9_superframe_split_bsf.c ├── vp9block.c ├── vp9data.c ├── vp9data.h ├── vp9dec.h ├── vp9dsp.c ├── vp9dsp.h ├── vp9dsp_10bpp.c ├── vp9dsp_12bpp.c ├── vp9dsp_8bpp.c ├── vp9dsp_template.c ├── vp9lpf.c ├── vp9mvs.c ├── vp9prob.c ├── vp9recon.c ├── vp9shared.h ├── vqavideo.c ├── vt_internal.h ├── wavpack.c ├── wavpack.h ├── wavpackenc.c ├── wavpackenc.h ├── webp.c ├── webvttdec.c ├── webvttenc.c ├── wma.c ├── wma.h ├── wma_common.c ├── wma_common.h ├── wma_freqs.c ├── wma_freqs.h ├── wmadata.h ├── wmadec.c ├── wmaenc.c ├── wmalosslessdec.c ├── wmaprodata.h ├── wmaprodec.c ├── wmavoice.c ├── wmavoice_data.h ├── wmv2.c ├── wmv2.h ├── wmv2data.c ├── wmv2data.h ├── wmv2dec.c ├── wmv2dsp.c ├── wmv2dsp.h ├── wmv2enc.c ├── wnv1.c ├── wrapped_avframe.c ├── ws-snd1.c ├── x86 │ ├── Makefile │ ├── aacencdsp.asm │ ├── aacencdsp_init.c │ ├── aacpsdsp.asm │ ├── aacpsdsp_init.c │ ├── ac3dsp.asm │ ├── ac3dsp_downmix.asm │ ├── ac3dsp_init.c │ ├── alacdsp.asm │ ├── alacdsp_init.c │ ├── audiodsp.asm │ ├── audiodsp_init.c │ ├── blockdsp.asm │ ├── blockdsp_init.c │ ├── bswapdsp.asm │ ├── bswapdsp_init.c │ ├── cabac.h │ ├── cavsdsp.c │ ├── cavsidct.asm │ ├── constants.c │ ├── constants.h │ ├── dcadsp.asm │ ├── dcadsp_init.c │ ├── dct32.asm │ ├── dct_init.c │ ├── dirac_dwt.asm │ ├── dirac_dwt_init.c │ ├── diracdsp.asm │ ├── diracdsp_init.c │ ├── dnxhdenc.asm │ ├── dnxhdenc_init.c │ ├── exrdsp.asm │ ├── exrdsp_init.c │ ├── fdct.c │ ├── fdct.h │ ├── fdctdsp_init.c │ ├── fft.asm │ ├── fft.h │ ├── fft_init.c │ ├── flac_dsp_gpl.asm │ ├── flacdsp.asm │ ├── flacdsp_init.c │ ├── fmtconvert.asm │ ├── fmtconvert_init.c │ ├── fpel.asm │ ├── fpel.h │ ├── g722dsp.asm │ ├── g722dsp_init.c │ ├── h263_loopfilter.asm │ ├── h263dsp_init.c │ ├── h264_cabac.c │ ├── h264_chromamc.asm │ ├── h264_chromamc_10bit.asm │ ├── h264_deblock.asm │ ├── h264_deblock_10bit.asm │ ├── h264_idct.asm │ ├── h264_idct_10bit.asm │ ├── h264_intrapred.asm │ ├── h264_intrapred_10bit.asm │ ├── h264_intrapred_init.c │ ├── h264_qpel.c │ ├── h264_qpel_10bit.asm │ ├── h264_qpel_8bit.asm │ ├── h264_weight.asm │ ├── h264_weight_10bit.asm │ ├── h264chroma_init.c │ ├── h264dsp_init.c │ ├── hevc_add_res.asm │ ├── hevc_deblock.asm │ ├── hevc_idct.asm │ ├── hevc_mc.asm │ ├── hevc_sao.asm │ ├── hevc_sao_10bit.asm │ ├── hevcdsp.h │ ├── hevcdsp_init.c │ ├── hpeldsp.asm │ ├── hpeldsp.h │ ├── hpeldsp_init.c │ ├── hpeldsp_rnd_template.c │ ├── hpeldsp_vp3.asm │ ├── hpeldsp_vp3_init.c │ ├── huffyuvdsp.asm │ ├── huffyuvdsp_init.c │ ├── huffyuvdsp_template.asm │ ├── huffyuvencdsp.asm │ ├── huffyuvencdsp_init.c │ ├── idctdsp.asm │ ├── idctdsp.h │ ├── idctdsp_init.c │ ├── imdct36.asm │ ├── inline_asm.h │ ├── jpeg2000dsp.asm │ ├── jpeg2000dsp_init.c │ ├── lossless_audiodsp.asm │ ├── lossless_audiodsp_init.c │ ├── lossless_videodsp.asm │ ├── lossless_videodsp_init.c │ ├── lossless_videoencdsp.asm │ ├── lossless_videoencdsp_init.c │ ├── lpc.c │ ├── mathops.h │ ├── mdct15.asm │ ├── mdct15_init.c │ ├── me_cmp.asm │ ├── me_cmp_init.c │ ├── mlpdsp.asm │ ├── mlpdsp_init.c │ ├── mpegaudiodsp.c │ ├── mpegvideo.c │ ├── mpegvideodsp.c │ ├── mpegvideoenc.c │ ├── mpegvideoenc_qns_template.c │ ├── mpegvideoenc_template.c │ ├── mpegvideoencdsp.asm │ ├── mpegvideoencdsp_init.c │ ├── opus_dsp_init.c │ ├── opus_pvq_search.asm │ ├── pixblockdsp.asm │ ├── pixblockdsp_init.c │ ├── pngdsp.asm │ ├── pngdsp_init.c │ ├── proresdsp.asm │ ├── proresdsp_init.c │ ├── qpel.asm │ ├── qpeldsp.asm │ ├── qpeldsp_init.c │ ├── rnd_template.c │ ├── rv34dsp.asm │ ├── rv34dsp_init.c │ ├── rv40dsp.asm │ ├── rv40dsp_init.c │ ├── sbcdsp.asm │ ├── sbcdsp_init.c │ ├── sbrdsp.asm │ ├── sbrdsp_init.c │ ├── simple_idct.asm │ ├── simple_idct.h │ ├── simple_idct10.asm │ ├── simple_idct10_template.asm │ ├── snowdsp.c │ ├── svq1enc.asm │ ├── svq1enc_init.c │ ├── synth_filter.asm │ ├── synth_filter_init.c │ ├── takdsp.asm │ ├── takdsp_init.c │ ├── ttadsp.asm │ ├── ttadsp_init.c │ ├── ttaencdsp.asm │ ├── ttaencdsp_init.c │ ├── utvideodsp.asm │ ├── utvideodsp_init.c │ ├── v210-init.c │ ├── v210.asm │ ├── v210enc.asm │ ├── v210enc_init.c │ ├── vc1dsp.h │ ├── vc1dsp_init.c │ ├── vc1dsp_loopfilter.asm │ ├── vc1dsp_mc.asm │ ├── vc1dsp_mmx.c │ ├── videodsp.asm │ ├── videodsp_init.c │ ├── vorbisdsp.asm │ ├── vorbisdsp_init.c │ ├── vp3dsp.asm │ ├── vp3dsp_init.c │ ├── vp56_arith.h │ ├── vp6dsp.asm │ ├── vp6dsp_init.c │ ├── vp8dsp.asm │ ├── vp8dsp_init.c │ ├── vp8dsp_loopfilter.asm │ ├── vp9dsp_init.c │ ├── vp9dsp_init.h │ ├── vp9dsp_init_10bpp.c │ ├── vp9dsp_init_12bpp.c │ ├── vp9dsp_init_16bpp.c │ ├── vp9dsp_init_16bpp_template.c │ ├── vp9intrapred.asm │ ├── vp9intrapred_16bpp.asm │ ├── vp9itxfm.asm │ ├── vp9itxfm_16bpp.asm │ ├── vp9itxfm_template.asm │ ├── vp9lpf.asm │ ├── vp9lpf_16bpp.asm │ ├── vp9mc.asm │ ├── vp9mc_16bpp.asm │ ├── w64xmmtest.c │ ├── xvididct.asm │ ├── xvididct.h │ └── xvididct_init.c ├── xan.c ├── xbmdec.c ├── xbmenc.c ├── xface.c ├── xface.h ├── xfacedec.c ├── xfaceenc.c ├── xiph.c ├── xiph.h ├── xl.c ├── xma_parser.c ├── xpmdec.c ├── xsubdec.c ├── xsubenc.c ├── xvididct.c ├── xvididct.h ├── xvmc.h ├── xvmc_internal.h ├── xwd.h ├── xwddec.c ├── xwdenc.c ├── xxan.c ├── y41pdec.c ├── y41penc.c ├── ylc.c ├── yop.c ├── yuv4dec.c ├── yuv4enc.c ├── zerocodec.c ├── zmbv.c └── zmbvenc.c ├── libavdevice ├── .gitignore ├── Makefile ├── alldevices.c ├── alsa.c ├── alsa.h ├── alsa_dec.c ├── alsa_enc.c ├── android_camera.c ├── avdevice.c ├── avdevice.h ├── avdeviceres.rc ├── avfoundation.m ├── bktr.c ├── caca.c ├── decklink_common.cpp ├── decklink_common.h ├── decklink_common_c.h ├── decklink_dec.cpp ├── decklink_dec.h ├── decklink_dec_c.c ├── decklink_enc.cpp ├── decklink_enc.h ├── decklink_enc_c.c ├── dshow.c ├── dshow_capture.h ├── dshow_common.c ├── dshow_crossbar.c ├── dshow_enummediatypes.c ├── dshow_enumpins.c ├── dshow_filter.c ├── dshow_pin.c ├── fbdev_common.c ├── fbdev_common.h ├── fbdev_dec.c ├── fbdev_enc.c ├── file_open.c ├── gdigrab.c ├── iec61883.c ├── internal.h ├── jack.c ├── kmsgrab.c ├── lavfi.c ├── libavdevice.v ├── libcdio.c ├── libdc1394.c ├── libndi_newtek_common.h ├── libndi_newtek_dec.c ├── libndi_newtek_enc.c ├── openal-dec.c ├── opengl_enc.c ├── opengl_enc_shaders.h ├── oss.c ├── oss.h ├── oss_dec.c ├── oss_enc.c ├── pulse_audio_common.c ├── pulse_audio_common.h ├── pulse_audio_dec.c ├── pulse_audio_enc.c ├── reverse.c ├── sdl2.c ├── sndio.c ├── sndio.h ├── sndio_dec.c ├── sndio_enc.c ├── tests │ ├── .gitignore │ └── timefilter.c ├── timefilter.c ├── timefilter.h ├── utils.c ├── v4l2-common.c ├── v4l2-common.h ├── v4l2.c ├── v4l2enc.c ├── version.h ├── vfwcap.c ├── xcbgrab.c └── xv.c ├── libavfilter ├── .gitignore ├── Makefile ├── aeval.c ├── af_acontrast.c ├── af_acopy.c ├── af_acrusher.c ├── af_adelay.c ├── af_aecho.c ├── af_aemphasis.c ├── af_afade.c ├── af_afftfilt.c ├── af_afir.c ├── af_afir.h ├── af_aformat.c ├── af_agate.c ├── af_aiir.c ├── af_alimiter.c ├── af_amerge.c ├── af_amix.c ├── af_anequalizer.c ├── af_anull.c ├── af_apad.c ├── af_aphaser.c ├── af_apulsator.c ├── af_aresample.c ├── af_asetnsamples.c ├── af_asetrate.c ├── af_ashowinfo.c ├── af_astats.c ├── af_atempo.c ├── af_biquads.c ├── af_bs2b.c ├── af_channelmap.c ├── af_channelsplit.c ├── af_chorus.c ├── af_compand.c ├── af_compensationdelay.c ├── af_crossfeed.c ├── af_crystalizer.c ├── af_dcshift.c ├── af_drmeter.c ├── af_dynaudnorm.c ├── af_earwax.c ├── af_extrastereo.c ├── af_firequalizer.c ├── af_flanger.c ├── af_haas.c ├── af_hdcd.c ├── af_headphone.c ├── af_join.c ├── af_ladspa.c ├── af_loudnorm.c ├── af_lv2.c ├── af_mcompand.c ├── af_pan.c ├── af_replaygain.c ├── af_resample.c ├── af_rubberband.c ├── af_sidechaincompress.c ├── af_silencedetect.c ├── af_silenceremove.c ├── af_sofalizer.c ├── af_stereotools.c ├── af_stereowiden.c ├── af_superequalizer.c ├── af_surround.c ├── af_tremolo.c ├── af_vibrato.c ├── af_volume.c ├── af_volume.h ├── af_volumedetect.c ├── all_channel_layouts.inc ├── allfilters.c ├── asink_anullsink.c ├── asrc_anoisesrc.c ├── asrc_anullsrc.c ├── asrc_flite.c ├── asrc_hilbert.c ├── asrc_sine.c ├── audio.c ├── audio.h ├── avf_abitscope.c ├── avf_ahistogram.c ├── avf_aphasemeter.c ├── avf_avectorscope.c ├── avf_concat.c ├── avf_showcqt.c ├── avf_showcqt.h ├── avf_showfreqs.c ├── avf_showspectrum.c ├── avf_showvolume.c ├── avf_showwaves.c ├── avfilter.c ├── avfilter.h ├── avfiltergraph.c ├── avfilterres.rc ├── bbox.c ├── bbox.h ├── blend.h ├── bufferqueue.h ├── buffersink.c ├── buffersink.h ├── buffersrc.c ├── buffersrc.h ├── bwdif.h ├── colorspacedsp.c ├── colorspacedsp.h ├── colorspacedsp_template.c ├── colorspacedsp_yuv2yuv_template.c ├── deshake.h ├── drawutils.c ├── drawutils.h ├── ebur128.c ├── ebur128.h ├── f_bench.c ├── f_drawgraph.c ├── f_ebur128.c ├── f_interleave.c ├── f_loop.c ├── f_metadata.c ├── f_perms.c ├── f_realtime.c ├── f_reverse.c ├── f_select.c ├── f_sendcmd.c ├── f_sidedata.c ├── f_streamselect.c ├── f_zmq.c ├── fifo.c ├── filters.h ├── formats.c ├── formats.h ├── framepool.c ├── framepool.h ├── framequeue.c ├── framequeue.h ├── framerate.h ├── framesync.c ├── framesync.h ├── generate_wave_table.c ├── generate_wave_table.h ├── gradfun.h ├── graphdump.c ├── graphparser.c ├── hermite.h ├── hflip.h ├── interlace.h ├── internal.h ├── lavfutils.c ├── lavfutils.h ├── libavfilter.v ├── limiter.h ├── log2_tab.c ├── lswsutils.c ├── lswsutils.h ├── maskedmerge.h ├── motion_estimation.c ├── motion_estimation.h ├── opencl.c ├── opencl.h ├── opencl │ ├── .gitignore │ ├── avgblur.cl │ ├── convolution.cl │ ├── overlay.cl │ └── unsharp.cl ├── opencl_source.h ├── psnr.h ├── pthread.c ├── qsvvpp.c ├── qsvvpp.h ├── removegrain.h ├── scale.c ├── scale.h ├── setpts.c ├── settb.c ├── signature.h ├── signature_lookup.c ├── split.c ├── src_movie.c ├── ssim.h ├── stereo3d.h ├── tests │ ├── .gitignore │ ├── drawutils.c │ ├── filtfmts.c │ ├── formats.c │ └── integral.c ├── thread.h ├── threshold.h ├── tinterlace.h ├── transform.c ├── transform.h ├── trim.c ├── unsharp.h ├── vaapi_vpp.c ├── vaapi_vpp.h ├── vaf_spectrumsynth.c ├── version.h ├── vf_alphamerge.c ├── vf_aspect.c ├── vf_atadenoise.c ├── vf_avgblur.c ├── vf_avgblur_opencl.c ├── vf_bbox.c ├── vf_bitplanenoise.c ├── vf_blackdetect.c ├── vf_blackframe.c ├── vf_blend.c ├── vf_boxblur.c ├── vf_bwdif.c ├── vf_chromakey.c ├── vf_ciescope.c ├── vf_codecview.c ├── vf_colorbalance.c ├── vf_colorchannelmixer.c ├── vf_colorkey.c ├── vf_colorlevels.c ├── vf_colormatrix.c ├── vf_colorspace.c ├── vf_convolution.c ├── vf_convolution_opencl.c ├── vf_convolve.c ├── vf_copy.c ├── vf_coreimage.m ├── vf_cover_rect.c ├── vf_crop.c ├── vf_cropdetect.c ├── vf_curves.c ├── vf_datascope.c ├── vf_dctdnoiz.c ├── vf_deband.c ├── vf_decimate.c ├── vf_deflicker.c ├── vf_deinterlace_qsv.c ├── vf_deinterlace_vaapi.c ├── vf_dejudder.c ├── vf_delogo.c ├── vf_deshake.c ├── vf_despill.c ├── vf_detelecine.c ├── vf_displace.c ├── vf_drawbox.c ├── vf_drawtext.c ├── vf_edgedetect.c ├── vf_elbg.c ├── vf_entropy.c ├── vf_eq.c ├── vf_eq.h ├── vf_extractplanes.c ├── vf_fade.c ├── vf_fftfilt.c ├── vf_field.c ├── vf_fieldhint.c ├── vf_fieldmatch.c ├── vf_fieldorder.c ├── vf_fillborders.c ├── vf_find_rect.c ├── vf_floodfill.c ├── vf_format.c ├── vf_fps.c ├── vf_framepack.c ├── vf_framerate.c ├── vf_framestep.c ├── vf_frei0r.c ├── vf_fspp.c ├── vf_fspp.h ├── vf_gblur.c ├── vf_geq.c ├── vf_gradfun.c ├── vf_hflip.c ├── vf_histeq.c ├── vf_histogram.c ├── vf_hqdn3d.c ├── vf_hqdn3d.h ├── vf_hqx.c ├── vf_hue.c ├── vf_hwdownload.c ├── vf_hwmap.c ├── vf_hwupload.c ├── vf_hwupload_cuda.c ├── vf_hysteresis.c ├── vf_idet.c ├── vf_idet.h ├── vf_il.c ├── vf_interlace.c ├── vf_kerndeint.c ├── vf_lenscorrection.c ├── vf_libopencv.c ├── vf_libvmaf.c ├── vf_limiter.c ├── vf_lumakey.c ├── vf_lut.c ├── vf_lut2.c ├── vf_lut3d.c ├── vf_maskedclamp.c ├── vf_maskedmerge.c ├── vf_mcdeint.c ├── vf_mergeplanes.c ├── vf_mestimate.c ├── vf_midequalizer.c ├── vf_minterpolate.c ├── vf_misc_vaapi.c ├── vf_mix.c ├── vf_mpdecimate.c ├── vf_neighbor.c ├── vf_nlmeans.c ├── vf_nnedi.c ├── vf_noise.c ├── vf_noise.h ├── vf_normalize.c ├── vf_null.c ├── vf_ocr.c ├── vf_overlay.c ├── vf_overlay_opencl.c ├── vf_overlay_qsv.c ├── vf_owdenoise.c ├── vf_pad.c ├── vf_palettegen.c ├── vf_paletteuse.c ├── vf_perspective.c ├── vf_phase.c ├── vf_pixdesctest.c ├── vf_pp.c ├── vf_pp7.c ├── vf_pp7.h ├── vf_premultiply.c ├── vf_procamp_vaapi.c ├── vf_program_opencl.c ├── vf_pseudocolor.c ├── vf_psnr.c ├── vf_pullup.c ├── vf_pullup.h ├── vf_qp.c ├── vf_random.c ├── vf_readeia608.c ├── vf_readvitc.c ├── vf_remap.c ├── vf_removegrain.c ├── vf_removelogo.c ├── vf_repeatfields.c ├── vf_rotate.c ├── vf_sab.c ├── vf_scale.c ├── vf_scale_cuda.c ├── vf_scale_cuda.cu ├── vf_scale_npp.c ├── vf_scale_qsv.c ├── vf_scale_vaapi.c ├── vf_selectivecolor.c ├── vf_separatefields.c ├── vf_setfield.c ├── vf_setparams.c ├── vf_showinfo.c ├── vf_showpalette.c ├── vf_shuffleframes.c ├── vf_shuffleplanes.c ├── vf_signalstats.c ├── vf_signature.c ├── vf_smartblur.c ├── vf_spp.c ├── vf_spp.h ├── vf_ssim.c ├── vf_stack.c ├── vf_stereo3d.c ├── vf_subtitles.c ├── vf_super2xsai.c ├── vf_swaprect.c ├── vf_swapuv.c ├── vf_telecine.c ├── vf_threshold.c ├── vf_thumbnail.c ├── vf_thumbnail_cuda.c ├── vf_thumbnail_cuda.cu ├── vf_tile.c ├── vf_tinterlace.c ├── vf_tonemap.c ├── vf_transpose.c ├── vf_unsharp.c ├── vf_unsharp_opencl.c ├── vf_uspp.c ├── vf_vaguedenoiser.c ├── vf_vectorscope.c ├── vf_vflip.c ├── vf_vfrdet.c ├── vf_vidstabdetect.c ├── vf_vidstabtransform.c ├── vf_vignette.c ├── vf_vmafmotion.c ├── vf_vpp_qsv.c ├── vf_w3fdif.c ├── vf_waveform.c ├── vf_weave.c ├── vf_xbr.c ├── vf_yadif.c ├── vf_zoompan.c ├── vf_zscale.c ├── video.c ├── video.h ├── vidstabutils.c ├── vidstabutils.h ├── vmaf_motion.h ├── vsink_nullsink.c ├── vsrc_cellauto.c ├── vsrc_life.c ├── vsrc_mandelbrot.c ├── vsrc_mptestsrc.c ├── vsrc_testsrc.c ├── w3fdif.h ├── window_func.h ├── x86 │ ├── Makefile │ ├── af_afir.asm │ ├── af_afir_init.c │ ├── af_volume.asm │ ├── af_volume_init.c │ ├── avf_showcqt.asm │ ├── avf_showcqt_init.c │ ├── colorspacedsp.asm │ ├── colorspacedsp_init.c │ ├── vf_blend.asm │ ├── vf_blend_init.c │ ├── vf_bwdif.asm │ ├── vf_bwdif_init.c │ ├── vf_eq.c │ ├── vf_framerate.asm │ ├── vf_framerate_init.c │ ├── vf_fspp.asm │ ├── vf_fspp_init.c │ ├── vf_gradfun.asm │ ├── vf_gradfun_init.c │ ├── vf_hflip.asm │ ├── vf_hflip_init.c │ ├── vf_hqdn3d.asm │ ├── vf_hqdn3d_init.c │ ├── vf_idet.asm │ ├── vf_idet_init.c │ ├── vf_interlace.asm │ ├── vf_interlace_init.c │ ├── vf_limiter.asm │ ├── vf_limiter_init.c │ ├── vf_maskedmerge.asm │ ├── vf_maskedmerge_init.c │ ├── vf_noise.c │ ├── vf_pp7.asm │ ├── vf_pp7_init.c │ ├── vf_psnr.asm │ ├── vf_psnr_init.c │ ├── vf_pullup.asm │ ├── vf_pullup_init.c │ ├── vf_removegrain.asm │ ├── vf_removegrain_init.c │ ├── vf_spp.c │ ├── vf_ssim.asm │ ├── vf_ssim_init.c │ ├── vf_stereo3d.asm │ ├── vf_stereo3d_init.c │ ├── vf_threshold.asm │ ├── vf_threshold_init.c │ ├── vf_tinterlace_init.c │ ├── vf_w3fdif.asm │ ├── vf_w3fdif_init.c │ ├── vf_yadif.asm │ ├── vf_yadif_init.c │ ├── yadif-10.asm │ └── yadif-16.asm └── yadif.h ├── libavformat ├── .gitignore ├── 3dostr.c ├── 4xm.c ├── Makefile ├── a64.c ├── aacdec.c ├── aadec.c ├── ac3dec.c ├── acm.c ├── act.c ├── adp.c ├── ads.c ├── adtsenc.c ├── adxdec.c ├── aea.c ├── afc.c ├── aiff.h ├── aiffdec.c ├── aiffenc.c ├── aixdec.c ├── allformats.c ├── amr.c ├── anm.c ├── apc.c ├── ape.c ├── apetag.c ├── apetag.h ├── apngdec.c ├── apngenc.c ├── aptxdec.c ├── aqtitledec.c ├── asf.c ├── asf.h ├── asfcrypt.c ├── asfcrypt.h ├── asfdec_f.c ├── asfdec_o.c ├── asfenc.c ├── assdec.c ├── assenc.c ├── ast.c ├── ast.h ├── astdec.c ├── astenc.c ├── async.c ├── au.c ├── audiointerleave.c ├── audiointerleave.h ├── avc.c ├── avc.h ├── avformat.h ├── avformatres.rc ├── avi.h ├── avidec.c ├── avienc.c ├── avio.c ├── avio.h ├── avio_internal.h ├── aviobuf.c ├── avisynth.c ├── avlanguage.c ├── avlanguage.h ├── avr.c ├── avs.c ├── bethsoftvid.c ├── bfi.c ├── bink.c ├── bintext.c ├── bit.c ├── bluray.c ├── bmv.c ├── boadec.c ├── brstm.c ├── c93.c ├── cache.c ├── caf.c ├── caf.h ├── cafdec.c ├── cafenc.c ├── cavsvideodec.c ├── cdg.c ├── cdxl.c ├── chromaprint.c ├── cinedec.c ├── codec2.c ├── concat.c ├── concatdec.c ├── crcenc.c ├── crypto.c ├── cutils.c ├── dash.c ├── dash.h ├── dashdec.c ├── dashenc.c ├── data_uri.c ├── dauddec.c ├── daudenc.c ├── dcstr.c ├── dfa.c ├── diracdec.c ├── dnxhddec.c ├── dsfdec.c ├── dsicin.c ├── dss.c ├── dtsdec.c ├── dtshddec.c ├── dump.c ├── dv.c ├── dv.h ├── dvbsub.c ├── dvbtxt.c ├── dvenc.c ├── dxa.c ├── eacdata.c ├── electronicarts.c ├── epafdec.c ├── ffmeta.h ├── ffmetadec.c ├── ffmetaenc.c ├── fifo.c ├── fifo_test.c ├── file.c ├── file_open.c ├── filmstripdec.c ├── filmstripenc.c ├── fitsdec.c ├── fitsenc.c ├── flac_picture.c ├── flac_picture.h ├── flacdec.c ├── flacenc.c ├── flacenc.h ├── flacenc_header.c ├── flic.c ├── flv.h ├── flvdec.c ├── flvenc.c ├── format.c ├── framecrcenc.c ├── framehash.c ├── frmdec.c ├── fsb.c ├── ftp.c ├── g722.c ├── g723_1.c ├── g726.c ├── g729dec.c ├── gdv.c ├── genh.c ├── gif.c ├── gifdec.c ├── golomb_tab.c ├── gopher.c ├── gsmdec.c ├── gxf.c ├── gxf.h ├── gxfenc.c ├── h261dec.c ├── h263dec.c ├── h264dec.c ├── hashenc.c ├── hdsenc.c ├── hevc.c ├── hevc.h ├── hevcdec.c ├── hls.c ├── hlsenc.c ├── hlsplaylist.c ├── hlsplaylist.h ├── hlsproto.c ├── hnm.c ├── http.c ├── http.h ├── httpauth.c ├── httpauth.h ├── icecast.c ├── icodec.c ├── icoenc.c ├── id3v1.c ├── id3v1.h ├── id3v2.c ├── id3v2.h ├── id3v2enc.c ├── idcin.c ├── idroqdec.c ├── idroqenc.c ├── iff.c ├── ilbc.c ├── img2.c ├── img2.h ├── img2_alias_pix.c ├── img2_brender_pix.c ├── img2dec.c ├── img2enc.c ├── ingenientdec.c ├── internal.h ├── ipmovie.c ├── ircam.c ├── ircam.h ├── ircamdec.c ├── ircamenc.c ├── isom.c ├── isom.h ├── iss.c ├── iv8.c ├── ivfdec.c ├── ivfenc.c ├── jacosubdec.c ├── jacosubenc.c ├── jvdec.c ├── latmenc.c ├── libavformat.v ├── libgme.c ├── libmodplug.c ├── libopenmpt.c ├── librtmp.c ├── libsmbclient.c ├── libsrt.c ├── libssh.c ├── lmlm4.c ├── loasdec.c ├── log2_tab.c ├── lrc.c ├── lrc.h ├── lrcdec.c ├── lrcenc.c ├── lvfdec.c ├── lxfdec.c ├── m4vdec.c ├── matroska.c ├── matroska.h ├── matroskadec.c ├── matroskaenc.c ├── md5proto.c ├── metadata.c ├── metadata.h ├── mgsts.c ├── microdvddec.c ├── microdvdenc.c ├── mj2kdec.c ├── mkvtimestamp_v2.c ├── mlpdec.c ├── mlvdec.c ├── mm.c ├── mmf.c ├── mms.c ├── mms.h ├── mmsh.c ├── mmst.c ├── mov.c ├── mov_chan.c ├── mov_chan.h ├── mov_esds.c ├── movenc.c ├── movenc.h ├── movenccenc.c ├── movenccenc.h ├── movenchint.c ├── mp3dec.c ├── mp3enc.c ├── mpc.c ├── mpc8.c ├── mpeg.c ├── mpeg.h ├── mpegenc.c ├── mpegts.c ├── mpegts.h ├── mpegtsenc.c ├── mpegvideodec.c ├── mpjpeg.c ├── mpjpegdec.c ├── mpl2dec.c ├── mpsubdec.c ├── msf.c ├── msnwc_tcp.c ├── mtaf.c ├── mtv.c ├── musx.c ├── mux.c ├── mvdec.c ├── mvi.c ├── mxf.c ├── mxf.h ├── mxfdec.c ├── mxfenc.c ├── mxg.c ├── ncdec.c ├── network.c ├── network.h ├── nistspheredec.c ├── nspdec.c ├── nsvdec.c ├── nullenc.c ├── nut.c ├── nut.h ├── nutdec.c ├── nutenc.c ├── nuv.c ├── oggdec.c ├── oggdec.h ├── oggenc.c ├── oggparsecelt.c ├── oggparsedaala.c ├── oggparsedirac.c ├── oggparseflac.c ├── oggparseogm.c ├── oggparseopus.c ├── oggparseskeleton.c ├── oggparsespeex.c ├── oggparsetheora.c ├── oggparsevorbis.c ├── oggparsevp8.c ├── oma.c ├── oma.h ├── omadec.c ├── omaenc.c ├── options.c ├── options_table.h ├── os_support.c ├── os_support.h ├── paf.c ├── pcm.c ├── pcm.h ├── pcmdec.c ├── pcmenc.c ├── pjsdec.c ├── pmpdec.c ├── prompeg.c ├── protocols.c ├── psxstr.c ├── pva.c ├── pvfdec.c ├── qcp.c ├── qtpalette.c ├── qtpalette.h ├── r3d.c ├── rawdec.c ├── rawdec.h ├── rawenc.c ├── rawenc.h ├── rawutils.c ├── rawvideodec.c ├── rdt.c ├── rdt.h ├── realtextdec.c ├── redspark.c ├── replaygain.c ├── replaygain.h ├── riff.c ├── riff.h ├── riffdec.c ├── riffenc.c ├── rl2.c ├── rm.c ├── rm.h ├── rmdec.c ├── rmenc.c ├── rmsipr.c ├── rmsipr.h ├── rpl.c ├── rsd.c ├── rso.c ├── rso.h ├── rsodec.c ├── rsoenc.c ├── rtmp.h ├── rtmpcrypt.c ├── rtmpcrypt.h ├── rtmpdh.c ├── rtmpdh.h ├── rtmpdigest.c ├── rtmphttp.c ├── rtmppkt.c ├── rtmppkt.h ├── rtmpproto.c ├── rtp.c ├── rtp.h ├── rtpdec.c ├── rtpdec.h ├── rtpdec_ac3.c ├── rtpdec_amr.c ├── rtpdec_asf.c ├── rtpdec_dv.c ├── rtpdec_formats.h ├── rtpdec_g726.c ├── rtpdec_h261.c ├── rtpdec_h263.c ├── rtpdec_h263_rfc2190.c ├── rtpdec_h264.c ├── rtpdec_hevc.c ├── rtpdec_ilbc.c ├── rtpdec_jpeg.c ├── rtpdec_latm.c ├── rtpdec_mpa_robust.c ├── rtpdec_mpeg12.c ├── rtpdec_mpeg4.c ├── rtpdec_mpegts.c ├── rtpdec_qcelp.c ├── rtpdec_qdm2.c ├── rtpdec_qt.c ├── rtpdec_rfc4175.c ├── rtpdec_svq3.c ├── rtpdec_vc2hq.c ├── rtpdec_vp8.c ├── rtpdec_vp9.c ├── rtpdec_xiph.c ├── rtpenc.c ├── rtpenc.h ├── rtpenc_aac.c ├── rtpenc_amr.c ├── rtpenc_chain.c ├── rtpenc_chain.h ├── rtpenc_h261.c ├── rtpenc_h263.c ├── rtpenc_h263_rfc2190.c ├── rtpenc_h264_hevc.c ├── rtpenc_jpeg.c ├── rtpenc_latm.c ├── rtpenc_mpegts.c ├── rtpenc_mpv.c ├── rtpenc_vc2hq.c ├── rtpenc_vp8.c ├── rtpenc_vp9.c ├── rtpenc_xiph.c ├── rtpproto.c ├── rtpproto.h ├── rtsp.c ├── rtsp.h ├── rtspcodes.h ├── rtspdec.c ├── rtspenc.c ├── s337m.c ├── samidec.c ├── sapdec.c ├── sapenc.c ├── sauce.c ├── sauce.h ├── sbcdec.c ├── sbgdec.c ├── sccdec.c ├── sccenc.c ├── sctp.c ├── sdp.c ├── sdr2.c ├── sdsdec.c ├── sdxdec.c ├── segafilm.c ├── segafilmenc.c ├── segment.c ├── shortendec.c ├── sierravmd.c ├── siff.c ├── smacker.c ├── smjpeg.c ├── smjpeg.h ├── smjpegdec.c ├── smjpegenc.c ├── smoothstreamingenc.c ├── smush.c ├── sol.c ├── sox.h ├── soxdec.c ├── soxenc.c ├── spdif.c ├── spdif.h ├── spdifdec.c ├── spdifenc.c ├── srtdec.c ├── srtenc.c ├── srtp.c ├── srtp.h ├── srtpproto.c ├── stldec.c ├── subfile.c ├── subtitles.c ├── subtitles.h ├── subviewer1dec.c ├── subviewerdec.c ├── supdec.c ├── supenc.c ├── svag.c ├── swf.c ├── swf.h ├── swfdec.c ├── swfenc.c ├── takdec.c ├── tcp.c ├── tedcaptionsdec.c ├── tee.c ├── tee_common.c ├── tee_common.h ├── teeproto.c ├── tests │ ├── .gitignore │ ├── fifo_muxer.c │ ├── movenc.c │ ├── noproxy.c │ ├── rtmpdh.c │ ├── seek.c │ ├── srtp.c │ └── url.c ├── thp.c ├── tiertexseq.c ├── tls.c ├── tls.h ├── tls_gnutls.c ├── tls_libtls.c ├── tls_openssl.c ├── tls_schannel.c ├── tls_securetransport.c ├── tmv.c ├── tta.c ├── ttaenc.c ├── tty.c ├── txd.c ├── ty.c ├── udp.c ├── uncodedframecrcenc.c ├── unix.c ├── url.c ├── url.h ├── urldecode.c ├── urldecode.h ├── utils.c ├── v210.c ├── vag.c ├── vc1dec.c ├── vc1test.c ├── vc1testenc.c ├── version.h ├── vivo.c ├── voc.c ├── voc.h ├── voc_packet.c ├── vocdec.c ├── vocenc.c ├── vorbiscomment.c ├── vorbiscomment.h ├── vpcc.c ├── vpcc.h ├── vpk.c ├── vplayerdec.c ├── vqf.c ├── w64.c ├── w64.h ├── wavdec.c ├── wavenc.c ├── wc3movie.c ├── webm_chunk.c ├── webmdashenc.c ├── webpenc.c ├── webvttdec.c ├── webvttenc.c ├── westwood_aud.c ├── westwood_vqa.c ├── wsddec.c ├── wtv.h ├── wtv_common.c ├── wtvdec.c ├── wtvenc.c ├── wv.c ├── wv.h ├── wvdec.c ├── wvedec.c ├── wvenc.c ├── xa.c ├── xmv.c ├── xvag.c ├── xwma.c ├── yop.c ├── yuv4mpeg.h ├── yuv4mpegdec.c └── yuv4mpegenc.c ├── libavresample ├── Makefile ├── aarch64 │ ├── Makefile │ ├── asm-offsets.h │ ├── audio_convert_init.c │ ├── audio_convert_neon.S │ ├── neontest.c │ ├── resample_init.c │ └── resample_neon.S ├── arm │ ├── Makefile │ ├── asm-offsets.h │ ├── audio_convert_init.c │ ├── audio_convert_neon.S │ ├── neontest.c │ ├── resample_init.c │ └── resample_neon.S ├── audio_convert.c ├── audio_convert.h ├── audio_data.c ├── audio_data.h ├── audio_mix.c ├── audio_mix.h ├── audio_mix_matrix.c ├── avresample.h ├── avresampleres.rc ├── dither.c ├── dither.h ├── internal.h ├── libavresample.v ├── options.c ├── resample.c ├── resample.h ├── resample_template.c ├── tests │ ├── .gitignore │ └── avresample.c ├── utils.c ├── version.h └── x86 │ ├── Makefile │ ├── audio_convert.asm │ ├── audio_convert_init.c │ ├── audio_mix.asm │ ├── audio_mix_init.c │ ├── dither.asm │ ├── dither_init.c │ ├── util.asm │ └── w64xmmtest.c ├── libavutil ├── .gitignore ├── Makefile ├── aarch64 │ ├── Makefile │ ├── asm.S │ ├── bswap.h │ ├── cpu.c │ ├── cpu.h │ ├── float_dsp_init.c │ ├── float_dsp_neon.S │ ├── neontest.h │ └── timer.h ├── adler32.c ├── adler32.h ├── aes.c ├── aes.h ├── aes_ctr.c ├── aes_ctr.h ├── aes_internal.h ├── arm │ ├── Makefile │ ├── asm.S │ ├── bswap.h │ ├── cpu.c │ ├── cpu.h │ ├── float_dsp_arm.h │ ├── float_dsp_init_arm.c │ ├── float_dsp_init_neon.c │ ├── float_dsp_init_vfp.c │ ├── float_dsp_neon.S │ ├── float_dsp_vfp.S │ ├── intmath.h │ ├── intreadwrite.h │ ├── neontest.h │ └── timer.h ├── attributes.h ├── audio_fifo.c ├── audio_fifo.h ├── avassert.h ├── avr32 │ ├── bswap.h │ └── intreadwrite.h ├── avstring.c ├── avstring.h ├── avutil.h ├── avutilres.rc ├── base64.c ├── base64.h ├── bfin │ ├── bswap.h │ └── timer.h ├── blowfish.c ├── blowfish.h ├── bprint.c ├── bprint.h ├── bswap.h ├── buffer.c ├── buffer.h ├── buffer_internal.h ├── camellia.c ├── camellia.h ├── cast5.c ├── cast5.h ├── channel_layout.c ├── channel_layout.h ├── color_utils.c ├── color_utils.h ├── colorspace.h ├── common.h ├── cpu.c ├── cpu.h ├── cpu_internal.h ├── crc.c ├── crc.h ├── des.c ├── des.h ├── dict.c ├── dict.h ├── display.c ├── display.h ├── downmix_info.c ├── downmix_info.h ├── dynarray.h ├── encryption_info.c ├── encryption_info.h ├── error.c ├── error.h ├── eval.c ├── eval.h ├── ffmath.h ├── fifo.c ├── fifo.h ├── file.c ├── file.h ├── file_open.c ├── fixed_dsp.c ├── fixed_dsp.h ├── float_dsp.c ├── float_dsp.h ├── frame.c ├── frame.h ├── hash.c ├── hash.h ├── hmac.c ├── hmac.h ├── hwcontext.c ├── hwcontext.h ├── hwcontext_cuda.c ├── hwcontext_cuda.h ├── hwcontext_cuda_internal.h ├── hwcontext_d3d11va.c ├── hwcontext_d3d11va.h ├── hwcontext_drm.c ├── hwcontext_drm.h ├── hwcontext_dxva2.c ├── hwcontext_dxva2.h ├── hwcontext_internal.h ├── hwcontext_mediacodec.c ├── hwcontext_mediacodec.h ├── hwcontext_opencl.c ├── hwcontext_opencl.h ├── hwcontext_qsv.c ├── hwcontext_qsv.h ├── hwcontext_vaapi.c ├── hwcontext_vaapi.h ├── hwcontext_vdpau.c ├── hwcontext_vdpau.h ├── hwcontext_videotoolbox.c ├── hwcontext_videotoolbox.h ├── imgutils.c ├── imgutils.h ├── imgutils_internal.h ├── integer.c ├── integer.h ├── internal.h ├── intfloat.h ├── intmath.c ├── intmath.h ├── intreadwrite.h ├── lfg.c ├── lfg.h ├── libavutil.v ├── libm.h ├── lls.c ├── lls.h ├── log.c ├── log.h ├── log2_tab.c ├── lzo.c ├── lzo.h ├── macros.h ├── mastering_display_metadata.c ├── mastering_display_metadata.h ├── mathematics.c ├── mathematics.h ├── md5.c ├── md5.h ├── mem.c ├── mem.h ├── mem_internal.h ├── mips │ ├── Makefile │ ├── asmdefs.h │ ├── float_dsp_mips.c │ ├── generic_macros_msa.h │ ├── intreadwrite.h │ ├── libm_mips.h │ └── mmiutils.h ├── motion_vector.h ├── murmur3.c ├── murmur3.h ├── opt.c ├── opt.h ├── parseutils.c ├── parseutils.h ├── pca.c ├── pca.h ├── pixdesc.c ├── pixdesc.h ├── pixelutils.c ├── pixelutils.h ├── pixfmt.h ├── ppc │ ├── Makefile │ ├── cpu.c │ ├── cpu.h │ ├── float_dsp_altivec.c │ ├── float_dsp_altivec.h │ ├── float_dsp_init.c │ ├── float_dsp_vsx.c │ ├── float_dsp_vsx.h │ ├── intreadwrite.h │ ├── timer.h │ └── util_altivec.h ├── qsort.h ├── random_seed.c ├── random_seed.h ├── rational.c ├── rational.h ├── rc4.c ├── rc4.h ├── replaygain.h ├── reverse.c ├── reverse.h ├── ripemd.c ├── ripemd.h ├── samplefmt.c ├── samplefmt.h ├── sh4 │ └── bswap.h ├── sha.c ├── sha.h ├── sha512.c ├── sha512.h ├── slicethread.c ├── slicethread.h ├── softfloat.h ├── softfloat_ieee754.h ├── softfloat_tables.h ├── spherical.c ├── spherical.h ├── stereo3d.c ├── stereo3d.h ├── tablegen.h ├── tea.c ├── tea.h ├── tests │ ├── .gitignore │ ├── adler32.c │ ├── aes.c │ ├── aes_ctr.c │ ├── audio_fifo.c │ ├── avstring.c │ ├── base64.c │ ├── blowfish.c │ ├── bprint.c │ ├── camellia.c │ ├── cast5.c │ ├── color_utils.c │ ├── cpu.c │ ├── cpu_init.c │ ├── crc.c │ ├── des.c │ ├── dict.c │ ├── display.c │ ├── error.c │ ├── eval.c │ ├── fifo.c │ ├── file.c │ ├── hash.c │ ├── hmac.c │ ├── imgutils.c │ ├── integer.c │ ├── lfg.c │ ├── lls.c │ ├── log.c │ ├── lzo.c │ ├── md5.c │ ├── murmur3.c │ ├── opt.c │ ├── parseutils.c │ ├── pca.c │ ├── pixdesc.c │ ├── pixelutils.c │ ├── pixfmt_best.c │ ├── random_seed.c │ ├── rational.c │ ├── ripemd.c │ ├── sha.c │ ├── sha512.c │ ├── softfloat.c │ ├── tea.c │ ├── tree.c │ ├── twofish.c │ ├── utf8.c │ └── xtea.c ├── thread.h ├── threadmessage.c ├── threadmessage.h ├── time.c ├── time.h ├── time_internal.h ├── timecode.c ├── timecode.h ├── timer.h ├── timestamp.h ├── tomi │ └── intreadwrite.h ├── tree.c ├── tree.h ├── twofish.c ├── twofish.h ├── utils.c ├── version.h ├── wchar_filename.h ├── x86 │ ├── Makefile │ ├── asm.h │ ├── bswap.h │ ├── cpu.c │ ├── cpu.h │ ├── cpuid.asm │ ├── emms.asm │ ├── emms.h │ ├── fixed_dsp.asm │ ├── fixed_dsp_init.c │ ├── float_dsp.asm │ ├── float_dsp_init.c │ ├── imgutils.asm │ ├── imgutils_init.c │ ├── intmath.h │ ├── intreadwrite.h │ ├── lls.asm │ ├── lls_init.c │ ├── pixelutils.asm │ ├── pixelutils.h │ ├── pixelutils_init.c │ ├── timer.h │ ├── w64xmmtest.h │ ├── x86inc.asm │ └── x86util.asm ├── xga_font_data.c ├── xga_font_data.h ├── xtea.c └── xtea.h ├── libpostproc ├── Makefile ├── libpostproc.v ├── postprocess.c ├── postprocess.h ├── postprocess_altivec_template.c ├── postprocess_internal.h ├── postprocess_template.c ├── postprocres.rc └── version.h ├── libswresample ├── Makefile ├── aarch64 │ ├── Makefile │ ├── audio_convert_init.c │ ├── audio_convert_neon.S │ ├── neontest.c │ ├── resample.S │ └── resample_init.c ├── arm │ ├── Makefile │ ├── audio_convert_init.c │ ├── audio_convert_neon.S │ ├── neontest.c │ ├── resample.S │ └── resample_init.c ├── audioconvert.c ├── audioconvert.h ├── dither.c ├── dither_template.c ├── libswresample.v ├── log2_tab.c ├── noise_shaping_data.c ├── options.c ├── rematrix.c ├── rematrix_template.c ├── resample.c ├── resample.h ├── resample_dsp.c ├── resample_template.c ├── soxr_resample.c ├── swresample.c ├── swresample.h ├── swresample_frame.c ├── swresample_internal.h ├── swresampleres.rc ├── tests │ ├── .gitignore │ └── swresample.c ├── version.h └── x86 │ ├── Makefile │ ├── audio_convert.asm │ ├── audio_convert_init.c │ ├── rematrix.asm │ ├── rematrix_init.c │ ├── resample.asm │ ├── resample_init.c │ └── w64xmmtest.c ├── libswscale ├── Makefile ├── aarch64 │ ├── Makefile │ ├── hscale.S │ ├── output.S │ ├── swscale.c │ ├── swscale_unscaled.c │ └── yuv2rgb_neon.S ├── alphablend.c ├── arm │ ├── Makefile │ ├── hscale.S │ ├── output.S │ ├── rgb2yuv_neon_16.S │ ├── rgb2yuv_neon_32.S │ ├── rgb2yuv_neon_common.S │ ├── swscale.c │ ├── swscale_unscaled.c │ └── yuv2rgb_neon.S ├── bayer_template.c ├── gamma.c ├── hscale.c ├── hscale_fast_bilinear.c ├── input.c ├── libswscale.v ├── log2_tab.c ├── options.c ├── output.c ├── ppc │ ├── Makefile │ ├── swscale_altivec.c │ ├── yuv2rgb_altivec.c │ ├── yuv2rgb_altivec.h │ └── yuv2yuv_altivec.c ├── rgb2rgb.c ├── rgb2rgb.h ├── rgb2rgb_template.c ├── slice.c ├── swscale.c ├── swscale.h ├── swscale_internal.h ├── swscale_unscaled.c ├── swscaleres.rc ├── tests │ ├── .gitignore │ ├── colorspace.c │ ├── pixdesc_query.c │ └── swscale.c ├── utils.c ├── version.h ├── vscale.c ├── x86 │ ├── Makefile │ ├── hscale_fast_bilinear_simd.c │ ├── input.asm │ ├── output.asm │ ├── rgb2rgb.c │ ├── rgb2rgb_template.c │ ├── rgb_2_rgb.asm │ ├── scale.asm │ ├── swscale.c │ ├── swscale_template.c │ ├── w64xmmtest.c │ ├── yuv2rgb.c │ └── yuv2rgb_template.c └── yuv2rgb.c ├── presets ├── libvpx-1080p.ffpreset ├── libvpx-1080p50_60.ffpreset ├── libvpx-360p.ffpreset ├── libvpx-720p.ffpreset └── libvpx-720p50_60.ffpreset ├── tests ├── .gitignore ├── Makefile ├── api │ ├── .gitignore │ ├── Makefile │ ├── api-band-test.c │ ├── api-codec-param-test.c │ ├── api-flac-test.c │ ├── api-h264-test.c │ ├── api-seek-test.c │ └── api-threadmessage-test.c ├── audiogen.c ├── audiomatch.c ├── base64.c ├── checkasm │ ├── .gitignore │ ├── Makefile │ ├── aacpsdsp.c │ ├── aarch64 │ │ └── checkasm.S │ ├── alacdsp.c │ ├── arm │ │ └── checkasm.S │ ├── audiodsp.c │ ├── blockdsp.c │ ├── bswapdsp.c │ ├── checkasm.c │ ├── checkasm.h │ ├── exrdsp.c │ ├── fixed_dsp.c │ ├── flacdsp.c │ ├── float_dsp.c │ ├── fmtconvert.c │ ├── g722dsp.c │ ├── h264dsp.c │ ├── h264pred.c │ ├── h264qpel.c │ ├── hevc_add_res.c │ ├── hevc_idct.c │ ├── hevc_sao.c │ ├── huffyuvdsp.c │ ├── jpeg2000dsp.c │ ├── llviddsp.c │ ├── llviddspenc.c │ ├── pixblockdsp.c │ ├── sbrdsp.c │ ├── sw_rgb.c │ ├── synth_filter.c │ ├── utvideodsp.c │ ├── v210enc.c │ ├── vf_blend.c │ ├── vf_colorspace.c │ ├── vf_hflip.c │ ├── vf_threshold.c │ ├── videodsp.c │ ├── vp8dsp.c │ ├── vp9dsp.c │ └── x86 │ │ └── checkasm.asm ├── copycooker.sh ├── extended.ffconcat ├── fate-run.sh ├── fate-valgrind.supp ├── fate.sh ├── fate │ ├── aac.mak │ ├── ac3.mak │ ├── acodec.mak │ ├── adpcm.mak │ ├── alac.mak │ ├── als.mak │ ├── amrnb.mak │ ├── amrwb.mak │ ├── api.mak │ ├── apng.mak │ ├── atrac.mak │ ├── audio.mak │ ├── avformat.mak │ ├── bmp.mak │ ├── build.mak │ ├── canopus.mak │ ├── cbs.mak │ ├── cdxl.mak │ ├── checkasm.mak │ ├── concatdec.mak │ ├── cover-art.mak │ ├── dca.mak │ ├── demux.mak │ ├── dfa.mak │ ├── dnxhd.mak │ ├── dpcm.mak │ ├── ea.mak │ ├── exif.mak │ ├── ffmpeg.mak │ ├── ffprobe.mak │ ├── fft.mak │ ├── fifo-muxer.mak │ ├── filter-audio.mak │ ├── filter-video.mak │ ├── fits.mak │ ├── flac.mak │ ├── flvenc.mak │ ├── gapless.mak │ ├── gif.mak │ ├── h264.mak │ ├── hap.mak │ ├── hevc.mak │ ├── id3v2.mak │ ├── image.mak │ ├── indeo.mak │ ├── libavcodec.mak │ ├── libavdevice.mak │ ├── libavformat.mak │ ├── libavresample.mak │ ├── libavutil.mak │ ├── libswresample.mak │ ├── libswscale.mak │ ├── lossless-audio.mak │ ├── lossless-video.mak │ ├── matroska.mak │ ├── microsoft.mak │ ├── monkeysaudio.mak │ ├── mov.mak │ ├── mp3.mak │ ├── mpc.mak │ ├── mpeg4.mak │ ├── mpegps.mak │ ├── mpegts.mak │ ├── mxf.mak │ ├── opus.mak │ ├── pcm.mak │ ├── pixlet.mak │ ├── probe.mak │ ├── prores.mak │ ├── qt.mak │ ├── qtrle.mak │ ├── real.mak │ ├── screen.mak │ ├── seek.mak │ ├── source-check.sh │ ├── source.mak │ ├── speedhq.mak │ ├── subtitles.mak │ ├── utvideo.mak │ ├── vcodec.mak │ ├── video.mak │ ├── voice.mak │ ├── vorbis.mak │ ├── vpx.mak │ ├── vqf.mak │ ├── wavpack.mak │ ├── wma.mak │ └── xvid.mak ├── filtergraphs │ ├── alphamerge_alphaextract_rgb │ ├── alphamerge_alphaextract_yuv │ ├── anequalizer │ ├── channelmap_one_int │ ├── channelmap_one_str │ ├── colorkey │ ├── compand │ ├── concat │ ├── firequalizer │ ├── gradfun │ ├── hqdn3d │ ├── hstack │ ├── lavr_mix_output_zero │ ├── mergeplanes │ ├── overlay │ ├── overlay-dvdsub-2397 │ ├── overlay_nv12 │ ├── overlay_nv21 │ ├── overlay_rgb │ ├── overlay_yuv420 │ ├── overlay_yuv422 │ ├── overlay_yuv444 │ ├── scale2ref_keep_aspect │ ├── scalenorm │ ├── select-alternate │ ├── setpts │ └── vstack ├── lavf-regression.sh ├── md5.sh ├── ref │ ├── acodec │ │ ├── adpcm-adx │ │ ├── adpcm-adx-trellis │ │ ├── adpcm-ima_qt │ │ ├── adpcm-ima_qt-trellis │ │ ├── adpcm-ima_wav │ │ ├── adpcm-ima_wav-trellis │ │ ├── adpcm-ms │ │ ├── adpcm-ms-trellis │ │ ├── adpcm-swf │ │ ├── adpcm-swf-trellis │ │ ├── adpcm-yamaha │ │ ├── adpcm-yamaha-trellis │ │ ├── adpcm_ima_qt │ │ ├── alac │ │ ├── flac │ │ ├── flac-exact-rice │ │ ├── g723_1 │ │ ├── mp2 │ │ ├── mp2fixed │ │ ├── pcm-alaw │ │ ├── pcm-f32be │ │ ├── pcm-f32le │ │ ├── pcm-f64be │ │ ├── pcm-f64le │ │ ├── pcm-mulaw │ │ ├── pcm-s16be │ │ ├── pcm-s16be_planar │ │ ├── pcm-s16le │ │ ├── pcm-s16le_planar │ │ ├── pcm-s24be │ │ ├── pcm-s24le │ │ ├── pcm-s24le_planar │ │ ├── pcm-s32be │ │ ├── pcm-s32le │ │ ├── pcm-s32le_planar │ │ ├── pcm-s8 │ │ ├── pcm-s8_planar │ │ ├── pcm-u16be │ │ ├── pcm-u16le │ │ ├── pcm-u24be │ │ ├── pcm-u24le │ │ ├── pcm-u32be │ │ ├── pcm-u32le │ │ ├── pcm-u8 │ │ ├── roqaudio │ │ ├── s302m │ │ ├── tta │ │ └── wavpack │ ├── fate │ │ ├── 012v │ │ ├── 4xm-1 │ │ ├── 4xm-2 │ │ ├── 8bps │ │ ├── aac-autobsf-adtstoasc │ │ ├── aasc │ │ ├── acodec-aref │ │ ├── adpcm-4xm │ │ ├── adpcm-afc │ │ ├── adpcm-creative │ │ ├── adpcm-creative-8-2.6bit │ │ ├── adpcm-creative-8-2bit │ │ ├── adpcm-creative-8-4bit │ │ ├── adpcm-dtk │ │ ├── adpcm-ea-1 │ │ ├── adpcm-ea-2 │ │ ├── adpcm-ea-maxis-xa │ │ ├── adpcm-ea-r1 │ │ ├── adpcm-ea-r2 │ │ ├── adpcm-ea-r3 │ │ ├── adpcm-ima-amv │ │ ├── adpcm-ima-apc │ │ ├── adpcm-ima-dk3 │ │ ├── adpcm-ima-dk4 │ │ ├── adpcm-ima-ea-eacs │ │ ├── adpcm-ima-ea-sead │ │ ├── adpcm-ima-iss │ │ ├── adpcm-ima-oki │ │ ├── adpcm-ima-rad │ │ ├── adpcm-ima-smjpeg │ │ ├── adpcm-ima-ws │ │ ├── adpcm-ima_wav-stereo │ │ ├── adpcm-ms-mono │ │ ├── adpcm-thp │ │ ├── adpcm-vima │ │ ├── adpcm-xa │ │ ├── adpcm_ms-stereo │ │ ├── adts-demux │ │ ├── adts-id3v1-demux │ │ ├── adts-id3v2-demux │ │ ├── adts-id3v2-two-tags-demux │ │ ├── adtstoasc_ticket3715 │ │ ├── aea-demux │ │ ├── aic │ │ ├── aic-oddsize │ │ ├── alg-mm │ │ ├── aliaspix-bgr │ │ ├── aliaspix-gray │ │ ├── amv │ │ ├── ansi │ │ ├── ansi256 │ │ ├── api-h264 │ │ ├── api-mjpeg-codec-param │ │ ├── api-png-codec-param │ │ ├── apng-clock │ │ ├── apng-osample │ │ ├── armovie-escape124 │ │ ├── armovie-escape130 │ │ ├── asf-repldata │ │ ├── ast │ │ ├── async │ │ ├── audio_fifo │ │ ├── audiomatch-afconvert-16000-mono-he-adts │ │ ├── audiomatch-afconvert-16000-mono-he-m4a │ │ ├── audiomatch-afconvert-16000-mono-lc-adts │ │ ├── audiomatch-afconvert-16000-mono-lc-m4a │ │ ├── audiomatch-afconvert-16000-stereo-he-adts │ │ ├── audiomatch-afconvert-16000-stereo-he-m4a │ │ ├── audiomatch-afconvert-16000-stereo-he2-adts │ │ ├── audiomatch-afconvert-16000-stereo-he2-m4a │ │ ├── audiomatch-afconvert-16000-stereo-lc-adts │ │ ├── audiomatch-afconvert-16000-stereo-lc-m4a │ │ ├── audiomatch-afconvert-44100-mono-he-adts │ │ ├── audiomatch-afconvert-44100-mono-he-m4a │ │ ├── audiomatch-afconvert-44100-mono-lc-adts │ │ ├── audiomatch-afconvert-44100-mono-lc-m4a │ │ ├── audiomatch-afconvert-44100-stereo-he-adts │ │ ├── audiomatch-afconvert-44100-stereo-he-m4a │ │ ├── audiomatch-afconvert-44100-stereo-he2-adts │ │ ├── audiomatch-afconvert-44100-stereo-he2-m4a │ │ ├── audiomatch-afconvert-44100-stereo-lc-adts │ │ ├── audiomatch-afconvert-44100-stereo-lc-m4a │ │ ├── audiomatch-dolby-44100-mono-he-mp4 │ │ ├── audiomatch-dolby-44100-mono-lc-mp4 │ │ ├── audiomatch-dolby-44100-stereo-he-mp4 │ │ ├── audiomatch-dolby-44100-stereo-he2-mp4 │ │ ├── audiomatch-dolby-44100-stereo-lc-mp4 │ │ ├── audiomatch-faac-16000-mono-lc-adts │ │ ├── audiomatch-faac-16000-mono-lc-m4a │ │ ├── audiomatch-faac-16000-stereo-lc-adts │ │ ├── audiomatch-faac-16000-stereo-lc-m4a │ │ ├── audiomatch-faac-44100-mono-lc-adts │ │ ├── audiomatch-faac-44100-mono-lc-m4a │ │ ├── audiomatch-faac-44100-stereo-lc-adts │ │ ├── audiomatch-faac-44100-stereo-lc-m4a │ │ ├── audiomatch-nero-16000-mono-he-m4a │ │ ├── audiomatch-nero-16000-mono-lc-m4a │ │ ├── audiomatch-nero-16000-stereo-he-m4a │ │ ├── audiomatch-nero-16000-stereo-he2-m4a │ │ ├── audiomatch-nero-16000-stereo-lc-m4a │ │ ├── audiomatch-nero-44100-mono-he-m4a │ │ ├── audiomatch-nero-44100-mono-lc-m4a │ │ ├── audiomatch-nero-44100-stereo-he-m4a │ │ ├── audiomatch-nero-44100-stereo-he2-m4a │ │ ├── audiomatch-nero-44100-stereo-lc-m4a │ │ ├── audiomatch-quicktime7-44100-stereo-lc-mp4 │ │ ├── audiomatch-quicktimeX-44100-stereo-lc-m4a │ │ ├── audiomatch-square-aac │ │ ├── audiomatch-square-mp3 │ │ ├── auravision-v1 │ │ ├── auravision-v2 │ │ ├── avio-direct │ │ ├── avstring │ │ ├── base64 │ │ ├── bcstm │ │ ├── bethsoft-vid │ │ ├── bfi │ │ ├── bfstm │ │ ├── bink-demux │ │ ├── bink-video-b │ │ ├── bink-video-f │ │ ├── bink-video-i │ │ ├── binsub-mksenc │ │ ├── binsub-movtextenc │ │ ├── blowfish │ │ ├── bmp-15bit │ │ ├── bmp-15bit-mask │ │ ├── bmp-16bit-mask │ │ ├── bmp-1bit │ │ ├── bmp-24bit │ │ ├── bmp-32bit │ │ ├── bmp-32bit-mask │ │ ├── bmp-4bit │ │ ├── bmp-4bit-os2 │ │ ├── bmp-8bit │ │ ├── bmp-8bit-os2 │ │ ├── bmp-rle4 │ │ ├── bmp-rle8 │ │ ├── bmpparser │ │ ├── bmv-audio │ │ ├── bmv-video │ │ ├── bprint │ │ ├── brenderpix-24 │ │ ├── brenderpix-565 │ │ ├── brenderpix-defpal │ │ ├── brenderpix-intpal │ │ ├── brenderpix-y400a │ │ ├── brstm │ │ ├── caf │ │ ├── canopus-cllc-argb │ │ ├── canopus-cllc-rgb │ │ ├── canopus-cllc-yuy2-noblock │ │ ├── canopus-hq_hqa-hq │ │ ├── canopus-hq_hqa-hqa │ │ ├── canopus-hq_hqa-inter │ │ ├── canopus-hqx422 │ │ ├── canopus-hqx422a │ │ ├── cavs │ │ ├── cbs-h264-AUD_MW_E │ │ ├── cbs-h264-BASQP1_Sony_C │ │ ├── cbs-h264-CABACI3_Sony_B │ │ ├── cbs-h264-CVBS3_Sony_C │ │ ├── cbs-h264-CVFC1_Sony_C │ │ ├── cbs-h264-CVMANL1_TOSHIBA_B │ │ ├── cbs-h264-CVNLFI1_Sony_C │ │ ├── cbs-h264-CVSE2_Sony_B │ │ ├── cbs-h264-CVWP1_TOSHIBA_E │ │ ├── cbs-h264-FM1_BT_B │ │ ├── cbs-h264-MR1_BT_A │ │ ├── cbs-h264-SVA_Base_B │ │ ├── cbs-h264-Sharp_MP_PAFF_1r2 │ │ ├── cbs-h264-sp1_bt_a │ │ ├── cbs-hevc-CAINIT_E_SHARP_3 │ │ ├── cbs-hevc-CAINIT_H_SHARP_3 │ │ ├── cbs-hevc-CONFWIN_A_Sony_1 │ │ ├── cbs-hevc-HRD_A_Fujitsu_2 │ │ ├── cbs-hevc-LTRPSPS_A_Qualcomm_1 │ │ ├── cbs-hevc-NUT_A_ericsson_5 │ │ ├── cbs-hevc-PICSIZE_A_Bossen_1 │ │ ├── cbs-hevc-PICSIZE_B_Bossen_1 │ │ ├── cbs-hevc-RPLM_A_qualcomm_4 │ │ ├── cbs-hevc-RPS_A_docomo_4 │ │ ├── cbs-hevc-RPS_E_qualcomm_5 │ │ ├── cbs-hevc-SLIST_A_Sony_4 │ │ ├── cbs-hevc-SLIST_D_Sony_9 │ │ ├── cbs-hevc-STRUCT_A_Samsung_5 │ │ ├── cbs-hevc-TILES_B_Cisco_1 │ │ ├── cbs-hevc-WPP_A_ericsson_MAIN_2 │ │ ├── cbs-hevc-WPP_F_ericsson_MAIN_2 │ │ ├── cbs-hevc-WP_A_Toshiba_3 │ │ ├── cbs-hevc-ipcm_E_NEC_2 │ │ ├── cbs-mpeg2-hhi_burst_422_short │ │ ├── cbs-mpeg2-sony-ct3 │ │ ├── cbs-mpeg2-tcela-6 │ │ ├── cdgraphics │ │ ├── cdxl-bitline-ham6 │ │ ├── cdxl-demux │ │ ├── cdxl-ham6 │ │ ├── cdxl-ham8 │ │ ├── cdxl-pal8 │ │ ├── cdxl-pal8-small │ │ ├── cfhd-1 │ │ ├── cfhd-2 │ │ ├── cfhd-3 │ │ ├── cine-demux │ │ ├── cljr │ │ ├── color_utils │ │ ├── concat-demuxer-extended-lavf-mxf │ │ ├── concat-demuxer-extended-lavf-mxf_d10 │ │ ├── concat-demuxer-simple1-lavf-mxf │ │ ├── concat-demuxer-simple1-lavf-mxf_d10 │ │ ├── concat-demuxer-simple2-lavf-ts │ │ ├── copy-psp │ │ ├── copy-trac2211-avi │ │ ├── copy-trac236 │ │ ├── copy-trac3074 │ │ ├── copy-trac4914 │ │ ├── copy-trac4914-avi │ │ ├── corepng │ │ ├── crc │ │ ├── creatureshock-avs │ │ ├── cscd │ │ ├── cvid-grayscale │ │ ├── cvid-palette │ │ ├── cvid-partial │ │ ├── cyberia-c93 │ │ ├── cyuv │ │ ├── d-cinema-demux │ │ ├── d-eavp6-demux │ │ ├── dca-xll │ │ ├── dca-xll_51_16_192_768_0 │ │ ├── dca-xll_51_16_192_768_0-dmix_2 │ │ ├── dca-xll_51_16_192_768_0-dmix_6 │ │ ├── dca-xll_51_16_192_768_1 │ │ ├── dca-xll_51_16_192_768_1-dmix_2 │ │ ├── dca-xll_51_16_192_768_1-dmix_6 │ │ ├── dca-xll_51_24_48_768 │ │ ├── dca-xll_51_24_48_768-dmix_2 │ │ ├── dca-xll_51_24_48_768-dmix_6 │ │ ├── dca-xll_51_24_48_none │ │ ├── dca-xll_51_24_48_none-dmix_2 │ │ ├── dca-xll_51_24_48_none-dmix_6 │ │ ├── dca-xll_71_24_48_768_0 │ │ ├── dca-xll_71_24_48_768_0-dmix_2 │ │ ├── dca-xll_71_24_48_768_0-dmix_6 │ │ ├── dca-xll_71_24_48_768_1 │ │ ├── dca-xll_71_24_48_768_1-dmix_2 │ │ ├── dca-xll_71_24_48_768_1-dmix_6 │ │ ├── dca-xll_71_24_96_768 │ │ ├── dca-xll_71_24_96_768-dmix_2 │ │ ├── dca-xll_71_24_96_768-dmix_6 │ │ ├── dca-xll_x96_51_24_96_1509 │ │ ├── dca-xll_x96_51_24_96_1509-dmix_2 │ │ ├── dca-xll_x96_51_24_96_1509-dmix_6 │ │ ├── dca-xll_xch_61_24_48_768 │ │ ├── dca-xll_xch_61_24_48_768-dmix_2 │ │ ├── dca-xll_xch_61_24_48_768-dmix_6 │ │ ├── dcinema-encode │ │ ├── dds-alpha8 │ │ ├── dds-argb │ │ ├── dds-argb-aexp │ │ ├── dds-dx10-bc1 │ │ ├── dds-dx10-bc1a │ │ ├── dds-dx10-bc2 │ │ ├── dds-dx10-bc3 │ │ ├── dds-dx10-bc4 │ │ ├── dds-dx10-bc5 │ │ ├── dds-dxt1 │ │ ├── dds-dxt1-normalmap │ │ ├── dds-dxt1a │ │ ├── dds-dxt2 │ │ ├── dds-dxt3 │ │ ├── dds-dxt4 │ │ ├── dds-dxt5 │ │ ├── dds-dxt5-aexp │ │ ├── dds-dxt5-normalmap │ │ ├── dds-dxt5-normalmap-ati │ │ ├── dds-dxt5-rbxg │ │ ├── dds-dxt5-rgxb │ │ ├── dds-dxt5-rxbg │ │ ├── dds-dxt5-rxgb │ │ ├── dds-dxt5-xgbr │ │ ├── dds-dxt5-xgxr │ │ ├── dds-dxt5-xrbg │ │ ├── dds-dxt5-ycocg │ │ ├── dds-dxt5-ycocg-scaled │ │ ├── dds-monob │ │ ├── dds-pal │ │ ├── dds-pal-ati │ │ ├── dds-rgb1555 │ │ ├── dds-rgb16 │ │ ├── dds-rgb24 │ │ ├── dds-rgb555 │ │ ├── dds-rgba │ │ ├── dds-rgtc1s │ │ ├── dds-rgtc1u │ │ ├── dds-rgtc2s │ │ ├── dds-rgtc2u │ │ ├── dds-rgtc2u-xy │ │ ├── dds-uyvy │ │ ├── dds-xbgr │ │ ├── dds-xrgb │ │ ├── dds-y │ │ ├── dds-ya │ │ ├── dds-ycocg │ │ ├── dds-yuyv │ │ ├── delphine-cin-audio │ │ ├── delphine-cin-video │ │ ├── deluxepaint-anm │ │ ├── dfa1 │ │ ├── dfa10 │ │ ├── dfa11 │ │ ├── dfa2 │ │ ├── dfa3 │ │ ├── dfa4 │ │ ├── dfa5 │ │ ├── dfa6 │ │ ├── dfa7 │ │ ├── dfa8 │ │ ├── dfa9 │ │ ├── dict │ │ ├── dirac │ │ ├── dirac-low-delay │ │ ├── display │ │ ├── dnxhd-mbaff │ │ ├── dnxhr-12bit │ │ ├── dnxhr-444 │ │ ├── dnxhr-parse │ │ ├── dnxhr-prefix1 │ │ ├── dnxhr-prefix2 │ │ ├── dnxhr-prefix3 │ │ ├── dnxhr-prefix4 │ │ ├── dnxhr-prefix5 │ │ ├── dpcm-idroq │ │ ├── dpcm-interplay │ │ ├── dpcm-sierra │ │ ├── dpcm-xan │ │ ├── dpx │ │ ├── dpxparser │ │ ├── dss-lp │ │ ├── dss-sp │ │ ├── dxa-feeble │ │ ├── dxa-scummvm │ │ ├── dxtory │ │ ├── dxv-dxt1 │ │ ├── dxv-dxt5 │ │ ├── dxv3-dxt1 │ │ ├── dxv3-dxt5 │ │ ├── ea-cdata │ │ ├── ea-cmv │ │ ├── ea-mad │ │ ├── ea-tgq │ │ ├── ea-tgv-1 │ │ ├── ea-tgv-2 │ │ ├── ea-tqi │ │ ├── eval │ │ ├── exif-image-embedded │ │ ├── exif-image-jpg │ │ ├── exif-image-tiff │ │ ├── exif-image-webp │ │ ├── exr-rgb-b44a-half-negative-4x4 │ │ ├── exr-rgb-scanline-b44-half-float-12x8-l1 │ │ ├── exr-rgb-scanline-b44-half-float-12x8-l2 │ │ ├── exr-rgb-scanline-b44-uint32 │ │ ├── exr-rgb-scanline-float-b44 │ │ ├── exr-rgb-scanline-float-piz-48x32 │ │ ├── exr-rgb-scanline-half-b44-12x8 │ │ ├── exr-rgb-scanline-half-b44-13x9 │ │ ├── exr-rgb-scanline-half-piz-bw │ │ ├── exr-rgb-scanline-half-piz-color │ │ ├── exr-rgb-scanline-half-piz-dw-t01 │ │ ├── exr-rgb-scanline-half-piz-dw-t08 │ │ ├── exr-rgb-scanline-none-negative-red │ │ ├── exr-rgb-scanline-pxr24-float-12x8 │ │ ├── exr-rgb-scanline-pxr24-float-half-l1 │ │ ├── exr-rgb-scanline-pxr24-float-half-l2 │ │ ├── exr-rgb-scanline-pxr24-half-float-l1 │ │ ├── exr-rgb-scanline-pxr24-half-float-l2 │ │ ├── exr-rgb-scanline-pxr24-half-uint32-13x9 │ │ ├── exr-rgb-scanline-pxr24-uint32 │ │ ├── exr-rgb-scanline-raw-half-float-l1 │ │ ├── exr-rgb-scanline-raw-half-float-l2 │ │ ├── exr-rgb-scanline-rle-half-float-l1 │ │ ├── exr-rgb-scanline-rle-half-float-l2 │ │ ├── exr-rgb-scanline-zip-half-float-l1 │ │ ├── exr-rgb-scanline-zip-half-float-l2 │ │ ├── exr-rgb-scanline-zip1-half-float-l1 │ │ ├── exr-rgb-scanline-zip1-half-float-l1-zero-offsets │ │ ├── exr-rgb-scanline-zip1-half-float-l2 │ │ ├── exr-rgb-tile-float-raw-12x8 │ │ ├── exr-rgb-tile-float-raw-150x130 │ │ ├── exr-rgb-tile-half-float-b44-12x8-l1 │ │ ├── exr-rgb-tile-half-float-b44-12x8-l2 │ │ ├── exr-rgb-tile-half-raw-12x8 │ │ ├── exr-rgb-tile-pxr24-float-half-l1 │ │ ├── exr-rgb-tile-pxr24-float-half-l2 │ │ ├── exr-rgb-tile-pxr24-half-float-l1 │ │ ├── exr-rgb-tile-pxr24-half-float-l2 │ │ ├── exr-rgb-tile-raw-half-float-l1 │ │ ├── exr-rgb-tile-raw-half-float-l2 │ │ ├── exr-rgb-tile-rle-half-float-l1 │ │ ├── exr-rgb-tile-rle-half-float-l2 │ │ ├── exr-rgb-tile-zip-half-float-l1 │ │ ├── exr-rgb-tile-zip-half-float-l2 │ │ ├── exr-rgb-tile-zip1-half-float-l1 │ │ ├── exr-rgb-tile-zip1-half-float-l2 │ │ ├── exr-rgba-multiscanline-half-b44 │ │ ├── exr-rgba-scanline-float-half-b44-12x8-l1 │ │ ├── exr-rgba-scanline-float-half-b44-12x8-l2 │ │ ├── exr-rgba-scanline-float-half-b44-13x9-l1 │ │ ├── exr-rgba-scanline-float-half-b44-13x9-l2 │ │ ├── exr-rgba-scanline-float-half-b44a-12x8-l1 │ │ ├── exr-rgba-scanline-float-half-b44a-12x8-l2 │ │ ├── exr-rgba-scanline-float-half-b44a-13x9-l1 │ │ ├── exr-rgba-scanline-float-half-b44a-13x9-l2 │ │ ├── exr-rgba-zip16-16x32-flag4 │ │ ├── exr-slice-pxr24 │ │ ├── exr-slice-raw │ │ ├── exr-slice-rle │ │ ├── exr-slice-zip1 │ │ ├── exr-slice-zip16 │ │ ├── exr-y-scanline-zip-half-12x8 │ │ ├── exr-y-tile-zip-half-12x8 │ │ ├── ffmpeg-attached_pics │ │ ├── ffmpeg-bsf-remove-e │ │ ├── ffmpeg-bsf-remove-k │ │ ├── ffmpeg-bsf-remove-r │ │ ├── ffmpeg-filter_colorkey │ │ ├── ffmpeg-filter_complex │ │ ├── ffmpeg-filter_complex_audio │ │ ├── ffmpeg-lavfi │ │ ├── ffprobe_compact │ │ ├── ffprobe_csv │ │ ├── ffprobe_default │ │ ├── ffprobe_flat │ │ ├── ffprobe_ini │ │ ├── ffprobe_json │ │ ├── ffprobe_xml │ │ ├── fic-avi │ │ ├── fifo │ │ ├── fifo-muxer-tst │ │ ├── film-cvid │ │ ├── filter-2xbr │ │ ├── filter-3xbr │ │ ├── filter-4xbr │ │ ├── filter-acrossfade │ │ ├── filter-adelay │ │ ├── filter-aecho │ │ ├── filter-aemphasis │ │ ├── filter-aemphasis-50fm │ │ ├── filter-aemphasis-75kf │ │ ├── filter-afade-esin │ │ ├── filter-afade-exp │ │ ├── filter-afade-hsin │ │ ├── filter-afade-iqsin │ │ ├── filter-afade-log │ │ ├── filter-afade-qsin │ │ ├── filter-agate │ │ ├── filter-alimiter │ │ ├── filter-allrgb │ │ ├── filter-allyuv │ │ ├── filter-alphaextract_alphamerge_rgb │ │ ├── filter-alphaextract_alphamerge_yuv │ │ ├── filter-amerge │ │ ├── filter-anequalizer │ │ ├── filter-apad │ │ ├── filter-asetnsamples-nopad │ │ ├── filter-asetnsamples-pad │ │ ├── filter-asetrate │ │ ├── filter-atrim-duration │ │ ├── filter-atrim-mixed │ │ ├── filter-atrim-samples │ │ ├── filter-atrim-time │ │ ├── filter-boxblur │ │ ├── filter-chorus │ │ ├── filter-codecview-mvs │ │ ├── filter-colorchannelmixer │ │ ├── filter-colormatrix1 │ │ ├── filter-colormatrix2 │ │ ├── filter-compand │ │ ├── filter-concat │ │ ├── filter-crop │ │ ├── filter-crop_scale │ │ ├── filter-crop_scale_vflip │ │ ├── filter-crop_vflip │ │ ├── filter-curves │ │ ├── filter-dcshift │ │ ├── filter-delogo │ │ ├── filter-drawbox │ │ ├── filter-earwax │ │ ├── filter-edgedetect │ │ ├── filter-edgedetect-colormix │ │ ├── filter-extrastereo │ │ ├── filter-fade │ │ ├── filter-fieldorder │ │ ├── filter-formats │ │ ├── filter-fps │ │ ├── filter-fps-cfr │ │ ├── filter-fps-down │ │ ├── filter-fps-down-eof-pass │ │ ├── filter-fps-down-round-down │ │ ├── filter-fps-down-round-up │ │ ├── filter-fps-r │ │ ├── filter-fps-start-drop │ │ ├── filter-fps-start-fill │ │ ├── filter-fps-up │ │ ├── filter-fps-up-round-down │ │ ├── filter-fps-up-round-up │ │ ├── filter-framepack-columns │ │ ├── filter-framepack-frameseq │ │ ├── filter-framepack-lines │ │ ├── filter-framepack-sbs │ │ ├── filter-framepack-tab │ │ ├── filter-framerate-12bit-down │ │ ├── filter-framerate-12bit-up │ │ ├── filter-framerate-down │ │ ├── filter-framerate-up │ │ ├── filter-gradfun │ │ ├── filter-gradfun-sample │ │ ├── filter-histogram-levels │ │ ├── filter-hls │ │ ├── filter-hls-append │ │ ├── filter-hq2x │ │ ├── filter-hq3x │ │ ├── filter-hq4x │ │ ├── filter-hqdn3d │ │ ├── filter-hqdn3d-sample │ │ ├── filter-hstack │ │ ├── filter-hue │ │ ├── filter-idet │ │ ├── filter-interlace │ │ ├── filter-interlace-complex │ │ ├── filter-lavd-life │ │ ├── filter-lavd-scalenorm │ │ ├── filter-lavd-testsrc │ │ ├── filter-mcdeint-fast │ │ ├── filter-mcdeint-medium │ │ ├── filter-mergeplanes │ │ ├── filter-meta-4560-rotate0 │ │ ├── filter-metadata-avf-aphase-meter-mono │ │ ├── filter-metadata-avf-aphase-meter-out-of-phase │ │ ├── filter-metadata-cropdetect │ │ ├── filter-metadata-ebur128 │ │ ├── filter-metadata-readvitc-def │ │ ├── filter-metadata-readvitc-thr │ │ ├── filter-metadata-scenedetect │ │ ├── filter-metadata-silencedetect │ │ ├── filter-mpdecimate │ │ ├── filter-negate │ │ ├── filter-null │ │ ├── filter-overlay │ │ ├── filter-overlay-dvdsub-2397 │ │ ├── filter-overlay_gbrap_gbrap │ │ ├── filter-overlay_gbrp_gbrap │ │ ├── filter-overlay_rgb │ │ ├── filter-overlay_rgb_rgba │ │ ├── filter-overlay_rgba_rgba │ │ ├── filter-overlay_yuv420 │ │ ├── filter-overlay_yuv420_yuva420 │ │ ├── filter-overlay_yuv422 │ │ ├── filter-overlay_yuv422_yuva422 │ │ ├── filter-overlay_yuv444 │ │ ├── filter-overlay_yuv444_yuva444 │ │ ├── filter-overlay_yuva420_yuva420 │ │ ├── filter-overlay_yuva422_yuva422 │ │ ├── filter-overlay_yuva444_yuva444 │ │ ├── filter-pad │ │ ├── filter-palettegen-1 │ │ ├── filter-palettegen-2 │ │ ├── filter-paletteuse-bayer │ │ ├── filter-paletteuse-nodither │ │ ├── filter-paletteuse-sierra2_4a │ │ ├── filter-pan-mono1 │ │ ├── filter-pan-mono2 │ │ ├── filter-pan-stereo1 │ │ ├── filter-pan-stereo2 │ │ ├── filter-pan-stereo3 │ │ ├── filter-pan-stereo4 │ │ ├── filter-phase │ │ ├── filter-pixdesc-0bgr │ │ ├── filter-pixdesc-0rgb │ │ ├── filter-pixdesc-abgr │ │ ├── filter-pixdesc-argb │ │ ├── filter-pixdesc-ayuv64le │ │ ├── filter-pixdesc-bgr0 │ │ ├── filter-pixdesc-bgr24 │ │ ├── filter-pixdesc-bgr444be │ │ ├── filter-pixdesc-bgr444le │ │ ├── filter-pixdesc-bgr48be │ │ ├── filter-pixdesc-bgr48le │ │ ├── filter-pixdesc-bgr4_byte │ │ ├── filter-pixdesc-bgr555be │ │ ├── filter-pixdesc-bgr555le │ │ ├── filter-pixdesc-bgr565be │ │ ├── filter-pixdesc-bgr565le │ │ ├── filter-pixdesc-bgr8 │ │ ├── filter-pixdesc-bgra │ │ ├── filter-pixdesc-bgra64be │ │ ├── filter-pixdesc-bgra64le │ │ ├── filter-pixdesc-gbrap │ │ ├── filter-pixdesc-gbrap10be │ │ ├── filter-pixdesc-gbrap10le │ │ ├── filter-pixdesc-gbrap12be │ │ ├── filter-pixdesc-gbrap12le │ │ ├── filter-pixdesc-gbrap16be │ │ ├── filter-pixdesc-gbrap16le │ │ ├── filter-pixdesc-gbrp │ │ ├── filter-pixdesc-gbrp10be │ │ ├── filter-pixdesc-gbrp10le │ │ ├── filter-pixdesc-gbrp12be │ │ ├── filter-pixdesc-gbrp12le │ │ ├── filter-pixdesc-gbrp14be │ │ ├── filter-pixdesc-gbrp14le │ │ ├── filter-pixdesc-gbrp16be │ │ ├── filter-pixdesc-gbrp16le │ │ ├── filter-pixdesc-gbrp9be │ │ ├── filter-pixdesc-gbrp9le │ │ ├── filter-pixdesc-gray │ │ ├── filter-pixdesc-gray10be │ │ ├── filter-pixdesc-gray10le │ │ ├── filter-pixdesc-gray12be │ │ ├── filter-pixdesc-gray12le │ │ ├── filter-pixdesc-gray16be │ │ ├── filter-pixdesc-gray16le │ │ ├── filter-pixdesc-gray9be │ │ ├── filter-pixdesc-gray9le │ │ ├── filter-pixdesc-monob │ │ ├── filter-pixdesc-monow │ │ ├── filter-pixdesc-nv12 │ │ ├── filter-pixdesc-nv21 │ │ ├── filter-pixdesc-p010be │ │ ├── filter-pixdesc-p010le │ │ ├── filter-pixdesc-p016be │ │ ├── filter-pixdesc-p016le │ │ ├── filter-pixdesc-rgb0 │ │ ├── filter-pixdesc-rgb24 │ │ ├── filter-pixdesc-rgb444be │ │ ├── filter-pixdesc-rgb444le │ │ ├── filter-pixdesc-rgb48be │ │ ├── filter-pixdesc-rgb48le │ │ ├── filter-pixdesc-rgb4_byte │ │ ├── filter-pixdesc-rgb555be │ │ ├── filter-pixdesc-rgb555le │ │ ├── filter-pixdesc-rgb565be │ │ ├── filter-pixdesc-rgb565le │ │ ├── filter-pixdesc-rgb8 │ │ ├── filter-pixdesc-rgba │ │ ├── filter-pixdesc-rgba64be │ │ ├── filter-pixdesc-rgba64le │ │ ├── filter-pixdesc-uyvy422 │ │ ├── filter-pixdesc-xyz12be │ │ ├── filter-pixdesc-xyz12le │ │ ├── filter-pixdesc-ya8 │ │ ├── filter-pixdesc-yuv410p │ │ ├── filter-pixdesc-yuv411p │ │ ├── filter-pixdesc-yuv420p │ │ ├── filter-pixdesc-yuv420p10be │ │ ├── filter-pixdesc-yuv420p10le │ │ ├── filter-pixdesc-yuv420p12be │ │ ├── filter-pixdesc-yuv420p12le │ │ ├── filter-pixdesc-yuv420p14be │ │ ├── filter-pixdesc-yuv420p14le │ │ ├── filter-pixdesc-yuv420p16be │ │ ├── filter-pixdesc-yuv420p16le │ │ ├── filter-pixdesc-yuv420p9be │ │ ├── filter-pixdesc-yuv420p9le │ │ ├── filter-pixdesc-yuv422p │ │ ├── filter-pixdesc-yuv422p10be │ │ ├── filter-pixdesc-yuv422p10le │ │ ├── filter-pixdesc-yuv422p12be │ │ ├── filter-pixdesc-yuv422p12le │ │ ├── filter-pixdesc-yuv422p14be │ │ ├── filter-pixdesc-yuv422p14le │ │ ├── filter-pixdesc-yuv422p16be │ │ ├── filter-pixdesc-yuv422p16le │ │ ├── filter-pixdesc-yuv422p9be │ │ ├── filter-pixdesc-yuv422p9le │ │ ├── filter-pixdesc-yuv440p │ │ ├── filter-pixdesc-yuv440p10be │ │ ├── filter-pixdesc-yuv440p10le │ │ ├── filter-pixdesc-yuv440p12be │ │ ├── filter-pixdesc-yuv440p12le │ │ ├── filter-pixdesc-yuv444p │ │ ├── filter-pixdesc-yuv444p10be │ │ ├── filter-pixdesc-yuv444p10le │ │ ├── filter-pixdesc-yuv444p12be │ │ ├── filter-pixdesc-yuv444p12le │ │ ├── filter-pixdesc-yuv444p14be │ │ ├── filter-pixdesc-yuv444p14le │ │ ├── filter-pixdesc-yuv444p16be │ │ ├── filter-pixdesc-yuv444p16le │ │ ├── filter-pixdesc-yuv444p9be │ │ ├── filter-pixdesc-yuv444p9le │ │ ├── filter-pixdesc-yuva420p │ │ ├── filter-pixdesc-yuva420p10be │ │ ├── filter-pixdesc-yuva420p10le │ │ ├── filter-pixdesc-yuva420p16be │ │ ├── filter-pixdesc-yuva420p16le │ │ ├── filter-pixdesc-yuva420p9be │ │ ├── filter-pixdesc-yuva420p9le │ │ ├── filter-pixdesc-yuva422p │ │ ├── filter-pixdesc-yuva422p10be │ │ ├── filter-pixdesc-yuva422p10le │ │ ├── filter-pixdesc-yuva422p16be │ │ ├── filter-pixdesc-yuva422p16le │ │ ├── filter-pixdesc-yuva422p9be │ │ ├── filter-pixdesc-yuva422p9le │ │ ├── filter-pixdesc-yuva444p │ │ ├── filter-pixdesc-yuva444p10be │ │ ├── filter-pixdesc-yuva444p10le │ │ ├── filter-pixdesc-yuva444p16be │ │ ├── filter-pixdesc-yuva444p16le │ │ ├── filter-pixdesc-yuva444p9be │ │ ├── filter-pixdesc-yuva444p9le │ │ ├── filter-pixdesc-yuvj411p │ │ ├── filter-pixdesc-yuvj420p │ │ ├── filter-pixdesc-yuvj422p │ │ ├── filter-pixdesc-yuvj440p │ │ ├── filter-pixdesc-yuvj444p │ │ ├── filter-pixdesc-yuyv422 │ │ ├── filter-pixdesc-yvyu422 │ │ ├── filter-pixfmts-copy │ │ ├── filter-pixfmts-crop │ │ ├── filter-pixfmts-field │ │ ├── filter-pixfmts-fieldmatch │ │ ├── filter-pixfmts-fieldorder │ │ ├── filter-pixfmts-hflip │ │ ├── filter-pixfmts-histeq │ │ ├── filter-pixfmts-il │ │ ├── filter-pixfmts-kerndeint │ │ ├── filter-pixfmts-lut │ │ ├── filter-pixfmts-null │ │ ├── filter-pixfmts-pad │ │ ├── filter-pixfmts-pullup │ │ ├── filter-pixfmts-rotate │ │ ├── filter-pixfmts-scale │ │ ├── filter-pixfmts-super2xsai │ │ ├── filter-pixfmts-swapuv │ │ ├── filter-pixfmts-tinterlace_cvlpf │ │ ├── filter-pixfmts-tinterlace_merge │ │ ├── filter-pixfmts-tinterlace_pad │ │ ├── filter-pixfmts-tinterlace_vlpf │ │ ├── filter-pixfmts-transpose │ │ ├── filter-pixfmts-vflip │ │ ├── filter-pp │ │ ├── filter-pp1 │ │ ├── filter-pp2 │ │ ├── filter-pp3 │ │ ├── filter-pp4 │ │ ├── filter-pp5 │ │ ├── filter-pp6 │ │ ├── filter-qp │ │ ├── filter-refcmp-psnr-rgb │ │ ├── filter-refcmp-psnr-yuv │ │ ├── filter-refcmp-ssim-rgb │ │ ├── filter-refcmp-ssim-yuv │ │ ├── filter-removegrain-mode-00 │ │ ├── filter-removegrain-mode-01 │ │ ├── filter-removegrain-mode-02 │ │ ├── filter-removegrain-mode-03 │ │ ├── filter-removegrain-mode-04 │ │ ├── filter-removegrain-mode-05 │ │ ├── filter-removegrain-mode-06 │ │ ├── filter-removegrain-mode-07 │ │ ├── filter-removegrain-mode-08 │ │ ├── filter-removegrain-mode-09 │ │ ├── filter-removegrain-mode-10 │ │ ├── filter-removegrain-mode-11 │ │ ├── filter-removegrain-mode-12 │ │ ├── filter-removegrain-mode-13 │ │ ├── filter-removegrain-mode-14 │ │ ├── filter-removegrain-mode-15 │ │ ├── filter-removegrain-mode-16 │ │ ├── filter-removegrain-mode-17 │ │ ├── filter-removegrain-mode-18 │ │ ├── filter-removegrain-mode-19 │ │ ├── filter-removegrain-mode-20 │ │ ├── filter-removegrain-mode-21 │ │ ├── filter-removegrain-mode-22 │ │ ├── filter-removegrain-mode-23 │ │ ├── filter-removegrain-mode-24 │ │ ├── filter-rgbtestsrc │ │ ├── filter-scale200 │ │ ├── filter-scale2ref_keep_aspect │ │ ├── filter-scale500 │ │ ├── filter-scalechroma │ │ ├── filter-select │ │ ├── filter-select-alternate │ │ ├── filter-separatefields │ │ ├── filter-setdar │ │ ├── filter-setpts │ │ ├── filter-setsar │ │ ├── filter-showpalette │ │ ├── filter-shuffleframes │ │ ├── filter-shuffleplanes-dup-luma │ │ ├── filter-shuffleplanes-swapuv │ │ ├── filter-silenceremove │ │ ├── filter-smptebars │ │ ├── filter-smptehdbars │ │ ├── filter-stereo3d-abr-ml │ │ ├── filter-stereo3d-abr-mr │ │ ├── filter-stereo3d-al-sbsl │ │ ├── filter-stereo3d-ar-abl │ │ ├── filter-stereo3d-sbsl-abl │ │ ├── filter-stereo3d-sbsl-abr │ │ ├── filter-stereo3d-sbsl-agmc │ │ ├── filter-stereo3d-sbsl-agmd │ │ ├── filter-stereo3d-sbsl-agmg │ │ ├── filter-stereo3d-sbsl-agmh │ │ ├── filter-stereo3d-sbsl-al │ │ ├── filter-stereo3d-sbsl-arbg │ │ ├── filter-stereo3d-sbsl-arcc │ │ ├── filter-stereo3d-sbsl-arcd │ │ ├── filter-stereo3d-sbsl-arcg │ │ ├── filter-stereo3d-sbsl-arch │ │ ├── filter-stereo3d-sbsl-argg │ │ ├── filter-stereo3d-sbsl-aybc │ │ ├── filter-stereo3d-sbsl-aybd │ │ ├── filter-stereo3d-sbsl-aybg │ │ ├── filter-stereo3d-sbsl-aybh │ │ ├── filter-stereo3d-sbsl-sbsr │ │ ├── filter-stereotools │ │ ├── filter-swaprect │ │ ├── filter-tblend │ │ ├── filter-telecine │ │ ├── filter-testsrc2-rgb24 │ │ ├── filter-testsrc2-rgba │ │ ├── filter-testsrc2-yuv420p │ │ ├── filter-testsrc2-yuv444p │ │ ├── filter-thumbnail │ │ ├── filter-tile │ │ ├── filter-transpose │ │ ├── filter-tremolo │ │ ├── filter-trim-duration │ │ ├── filter-trim-frame │ │ ├── filter-trim-mixed │ │ ├── filter-trim-time │ │ ├── filter-unsharp │ │ ├── filter-vectorscope_color │ │ ├── filter-vectorscope_color2 │ │ ├── filter-vectorscope_color3 │ │ ├── filter-vectorscope_color4 │ │ ├── filter-vectorscope_gray │ │ ├── filter-vectorscope_xy │ │ ├── filter-vflip │ │ ├── filter-vflip_crop │ │ ├── filter-vflip_vflip │ │ ├── filter-vstack │ │ ├── filter-w3fdif-complex │ │ ├── filter-w3fdif-simple │ │ ├── filter-waveform_column │ │ ├── filter-waveform_envelope │ │ ├── filter-waveform_row │ │ ├── filter-waveform_uv │ │ ├── filter-weave │ │ ├── filter-yadif-mode0 │ │ ├── filter-yadif-mode1 │ │ ├── filter-yadif10 │ │ ├── filter-yadif16 │ │ ├── filter-yuvtestsrc-yuv444p │ │ ├── filter-yuvtestsrc-yuv444p12 │ │ ├── fits-demux │ │ ├── fitsdec-bitpix-32 │ │ ├── fitsdec-bitpix-64 │ │ ├── fitsdec-blank_bitpix32 │ │ ├── fitsdec-ext_data_min_max │ │ ├── fitsdec-gbrap16le │ │ ├── fitsdec-gbrp │ │ ├── fitsdec-gbrp16 │ │ ├── fitsdec-gray │ │ ├── fitsdec-multi │ │ ├── fitsenc-gbrap │ │ ├── fitsenc-gbrap16be │ │ ├── fitsenc-gbrp │ │ ├── fitsenc-gbrp16be │ │ ├── fitsenc-gray │ │ ├── fitsenc-gray16be │ │ ├── flcl1905 │ │ ├── flic-af11-palette-change │ │ ├── flic-af12 │ │ ├── flic-magiccarpet │ │ ├── flv-add_keyframe_index │ │ ├── flv-demux │ │ ├── fmvc-type1 │ │ ├── fmvc-type2 │ │ ├── force_key_frames │ │ ├── fraps-v0 │ │ ├── fraps-v1 │ │ ├── fraps-v2 │ │ ├── fraps-v3 │ │ ├── fraps-v4 │ │ ├── fraps-v5 │ │ ├── frwu │ │ ├── g2m2 │ │ ├── g2m3 │ │ ├── g2m4 │ │ ├── g722-encode │ │ ├── g722dec-1 │ │ ├── g723_1-dec-1 │ │ ├── g723_1-dec-2 │ │ ├── g723_1-dec-3 │ │ ├── g723_1-dec-4 │ │ ├── g723_1-dec-5 │ │ ├── g723_1-dec-6 │ │ ├── g723_1-dec-7 │ │ ├── g723_1-dec-8 │ │ ├── g726-encode-2bit │ │ ├── g726-encode-3bit │ │ ├── g726-encode-4bit │ │ ├── g726-encode-5bit │ │ ├── g729-0 │ │ ├── g729-1 │ │ ├── gapless-mp3 │ │ ├── gaplessenc-itunes-to-ipod-aac │ │ ├── gaplessenc-pcm-to-mov-aac │ │ ├── gaplessinfo-itunes1 │ │ ├── gaplessinfo-itunes2 │ │ ├── gif-color │ │ ├── gif-deal │ │ ├── gif-demux │ │ ├── gif-disposal-background │ │ ├── gif-disposal-restore │ │ ├── gif-gray │ │ ├── gifenc-bgr4_byte │ │ ├── gifenc-bgr8 │ │ ├── gifenc-gray │ │ ├── gifenc-pal8 │ │ ├── gifenc-rgb4_byte │ │ ├── gifenc-rgb8 │ │ ├── gsm-ms │ │ ├── gsm-toast │ │ ├── h264-3386 │ │ ├── h264-attachment-631 │ │ ├── h264-brokensps-2580 │ │ ├── h264-bsf-mp4toannexb │ │ ├── h264-conformance-aud_mw_e │ │ ├── h264-conformance-ba1_ft_c │ │ ├── h264-conformance-ba1_sony_d │ │ ├── h264-conformance-ba2_sony_f │ │ ├── h264-conformance-ba3_sva_c │ │ ├── h264-conformance-ba_mw_d │ │ ├── h264-conformance-bamq1_jvc_c │ │ ├── h264-conformance-bamq2_jvc_c │ │ ├── h264-conformance-banm_mw_d │ │ ├── h264-conformance-basqp1_sony_c │ │ ├── h264-conformance-caba1_sony_d │ │ ├── h264-conformance-caba1_sva_b │ │ ├── h264-conformance-caba2_sony_e │ │ ├── h264-conformance-caba2_sva_b │ │ ├── h264-conformance-caba3_sony_c │ │ ├── h264-conformance-caba3_sva_b │ │ ├── h264-conformance-caba3_toshiba_e │ │ ├── h264-conformance-cabac_mot_fld0_full │ │ ├── h264-conformance-cabac_mot_frm0_full │ │ ├── h264-conformance-cabac_mot_mbaff0_full │ │ ├── h264-conformance-cabac_mot_picaff0_full │ │ ├── h264-conformance-cabaci3_sony_b │ │ ├── h264-conformance-cabast3_sony_e │ │ ├── h264-conformance-cabastbr3_sony_b │ │ ├── h264-conformance-cabref3_sand_d │ │ ├── h264-conformance-cacqp3_sony_d │ │ ├── h264-conformance-cafi1_sva_c │ │ ├── h264-conformance-cama1_sony_c │ │ ├── h264-conformance-cama1_toshiba_b │ │ ├── h264-conformance-cama1_vtc_c │ │ ├── h264-conformance-cama2_vtc_b │ │ ├── h264-conformance-cama3_sand_e │ │ ├── h264-conformance-cama3_vtc_b │ │ ├── h264-conformance-camaci3_sony_c │ │ ├── h264-conformance-camanl1_toshiba_b │ │ ├── h264-conformance-camanl2_toshiba_b │ │ ├── h264-conformance-camanl3_sand_e │ │ ├── h264-conformance-camasl3_sony_b │ │ ├── h264-conformance-camp_mot_mbaff_l30 │ │ ├── h264-conformance-camp_mot_mbaff_l31 │ │ ├── h264-conformance-canl1_sony_e │ │ ├── h264-conformance-canl1_sva_b │ │ ├── h264-conformance-canl1_toshiba_g │ │ ├── h264-conformance-canl2_sony_e │ │ ├── h264-conformance-canl2_sva_b │ │ ├── h264-conformance-canl3_sony_c │ │ ├── h264-conformance-canl3_sva_b │ │ ├── h264-conformance-canl4_sva_b │ │ ├── h264-conformance-canlma2_sony_c │ │ ├── h264-conformance-canlma3_sony_c │ │ ├── h264-conformance-capa1_toshiba_b │ │ ├── h264-conformance-capama3_sand_f │ │ ├── h264-conformance-capcm1_sand_e │ │ ├── h264-conformance-capcmnl1_sand_e │ │ ├── h264-conformance-capm3_sony_d │ │ ├── h264-conformance-caqp1_sony_b │ │ ├── h264-conformance-cavlc_mot_fld0_full_b │ │ ├── h264-conformance-cavlc_mot_frm0_full_b │ │ ├── h264-conformance-cavlc_mot_mbaff0_full_b │ │ ├── h264-conformance-cavlc_mot_picaff0_full_b │ │ ├── h264-conformance-cawp1_toshiba_e │ │ ├── h264-conformance-cawp5_toshiba_e │ │ ├── h264-conformance-ci1_ft_b │ │ ├── h264-conformance-ci_mw_d │ │ ├── h264-conformance-cvbs3_sony_c │ │ ├── h264-conformance-cvcanlma2_sony_c │ │ ├── h264-conformance-cvfc1_sony_c │ │ ├── h264-conformance-cvfi1_sony_d │ │ ├── h264-conformance-cvfi1_sva_c │ │ ├── h264-conformance-cvfi2_sony_h │ │ ├── h264-conformance-cvfi2_sva_c │ │ ├── h264-conformance-cvma1_sony_d │ │ ├── h264-conformance-cvma1_toshiba_b │ │ ├── h264-conformance-cvmanl1_toshiba_b │ │ ├── h264-conformance-cvmanl2_toshiba_b │ │ ├── h264-conformance-cvmapaqp3_sony_e │ │ ├── h264-conformance-cvmaqp2_sony_g │ │ ├── h264-conformance-cvmaqp3_sony_d │ │ ├── h264-conformance-cvmp_mot_fld_l30_b │ │ ├── h264-conformance-cvmp_mot_frm_l31_b │ │ ├── h264-conformance-cvnlfi1_sony_c │ │ ├── h264-conformance-cvnlfi2_sony_h │ │ ├── h264-conformance-cvpa1_toshiba_b │ │ ├── h264-conformance-cvpcmnl1_sva_c │ │ ├── h264-conformance-cvpcmnl2_sva_c │ │ ├── h264-conformance-cvwp1_toshiba_e │ │ ├── h264-conformance-cvwp2_toshiba_e │ │ ├── h264-conformance-cvwp3_toshiba_e │ │ ├── h264-conformance-cvwp5_toshiba_e │ │ ├── h264-conformance-fi1_sony_e │ │ ├── h264-conformance-frext-alphaconformanceg │ │ ├── h264-conformance-frext-bcrm_freh10 │ │ ├── h264-conformance-frext-brcm_freh11 │ │ ├── h264-conformance-frext-brcm_freh3 │ │ ├── h264-conformance-frext-brcm_freh4 │ │ ├── h264-conformance-frext-brcm_freh5 │ │ ├── h264-conformance-frext-brcm_freh8 │ │ ├── h264-conformance-frext-brcm_freh9 │ │ ├── h264-conformance-frext-freh12_b │ │ ├── h264-conformance-frext-freh1_b │ │ ├── h264-conformance-frext-freh2_b │ │ ├── h264-conformance-frext-freh6 │ │ ├── h264-conformance-frext-freh7_b │ │ ├── h264-conformance-frext-frext01_jvc_d │ │ ├── h264-conformance-frext-frext02_jvc_c │ │ ├── h264-conformance-frext-frext1_panasonic_c │ │ ├── h264-conformance-frext-frext2_panasonic_b │ │ ├── h264-conformance-frext-frext3_panasonic_d │ │ ├── h264-conformance-frext-frext4_panasonic_a │ │ ├── h264-conformance-frext-frext_mmco4_sony_b │ │ ├── h264-conformance-frext-hcaff1_hhi_b │ │ ├── h264-conformance-frext-hcafr1_hhi_c │ │ ├── h264-conformance-frext-hcafr2_hhi_a │ │ ├── h264-conformance-frext-hcafr3_hhi_a │ │ ├── h264-conformance-frext-hcafr4_hhi_a │ │ ├── h264-conformance-frext-hcamff1_hhi_b │ │ ├── h264-conformance-frext-hi422fr10_sony_b │ │ ├── h264-conformance-frext-hi422fr13_sony_b │ │ ├── h264-conformance-frext-hi422fr1_sony_a │ │ ├── h264-conformance-frext-hi422fr6_sony_a │ │ ├── h264-conformance-frext-hpca_brcm_c │ │ ├── h264-conformance-frext-hpcadq_brcm_b │ │ ├── h264-conformance-frext-hpcafl_bcrm_c │ │ ├── h264-conformance-frext-hpcaflnl_bcrm_c │ │ ├── h264-conformance-frext-hpcalq_brcm_b │ │ ├── h264-conformance-frext-hpcamapalq_bcrm_b │ │ ├── h264-conformance-frext-hpcamolq_brcm_b │ │ ├── h264-conformance-frext-hpcanl_brcm_c │ │ ├── h264-conformance-frext-hpcaq2lq_brcm_b │ │ ├── h264-conformance-frext-hpcv_brcm_a │ │ ├── h264-conformance-frext-hpcvfl_bcrm_a │ │ ├── h264-conformance-frext-hpcvflnl_bcrm_a │ │ ├── h264-conformance-frext-hpcvmolq_brcm_b │ │ ├── h264-conformance-frext-hpcvnl_brcm_a │ │ ├── h264-conformance-frext-pph10i1_panasonic_a │ │ ├── h264-conformance-frext-pph10i2_panasonic_a │ │ ├── h264-conformance-frext-pph10i3_panasonic_a │ │ ├── h264-conformance-frext-pph10i4_panasonic_a │ │ ├── h264-conformance-frext-pph10i5_panasonic_a │ │ ├── h264-conformance-frext-pph10i6_panasonic_a │ │ ├── h264-conformance-frext-pph10i7_panasonic_a │ │ ├── h264-conformance-frext-pph422i1_panasonic_a │ │ ├── h264-conformance-frext-pph422i2_panasonic_a │ │ ├── h264-conformance-frext-pph422i3_panasonic_a │ │ ├── h264-conformance-frext-pph422i4_panasonic_a │ │ ├── h264-conformance-frext-pph422i5_panasonic_a │ │ ├── h264-conformance-frext-pph422i6_panasonic_a │ │ ├── h264-conformance-frext-pph422i7_panasonic_a │ │ ├── h264-conformance-hcbp2_hhi_a │ │ ├── h264-conformance-hcmp1_hhi_a │ │ ├── h264-conformance-ls_sva_d │ │ ├── h264-conformance-midr_mw_d │ │ ├── h264-conformance-mps_mw_a │ │ ├── h264-conformance-mr1_bt_a │ │ ├── h264-conformance-mr1_mw_a │ │ ├── h264-conformance-mr2_mw_a │ │ ├── h264-conformance-mr2_tandberg_e │ │ ├── h264-conformance-mr3_tandberg_b │ │ ├── h264-conformance-mr4_tandberg_c │ │ ├── h264-conformance-mr5_tandberg_c │ │ ├── h264-conformance-mr6_bt_b │ │ ├── h264-conformance-mr7_bt_b │ │ ├── h264-conformance-mr8_bt_b │ │ ├── h264-conformance-mr9_bt_b │ │ ├── h264-conformance-mv1_brcm_d │ │ ├── h264-conformance-nl1_sony_d │ │ ├── h264-conformance-nl2_sony_h │ │ ├── h264-conformance-nl3_sva_e │ │ ├── h264-conformance-nlmq1_jvc_c │ │ ├── h264-conformance-nlmq2_jvc_c │ │ ├── h264-conformance-nrf_mw_e │ │ ├── h264-conformance-sharp_mp_field_1_b │ │ ├── h264-conformance-sharp_mp_field_2_b │ │ ├── h264-conformance-sharp_mp_field_3_b │ │ ├── h264-conformance-sharp_mp_paff_1r2 │ │ ├── h264-conformance-sharp_mp_paff_2r │ │ ├── h264-conformance-sl1_sva_b │ │ ├── h264-conformance-sva_ba1_b │ │ ├── h264-conformance-sva_ba2_d │ │ ├── h264-conformance-sva_base_b │ │ ├── h264-conformance-sva_cl1_e │ │ ├── h264-conformance-sva_fm1_e │ │ ├── h264-conformance-sva_nl1_b │ │ ├── h264-conformance-sva_nl2_e │ │ ├── h264-crop-to-container │ │ ├── h264-direct-bff │ │ ├── h264-dts_5frames │ │ ├── h264-extradata-reload │ │ ├── h264-extreme-plane-pred │ │ ├── h264-interlace-crop │ │ ├── h264-intra-refresh-recovery │ │ ├── h264-invalid-ref-mod │ │ ├── h264-lossless │ │ ├── h264-missing-frame │ │ ├── h264-mixed-nal-coding │ │ ├── h264-ref-pic-mod-overflow │ │ ├── h264-reinit-large_420_8-to-small_420_8 │ │ ├── h264-reinit-small_420_8-to-large_444_10 │ │ ├── h264-reinit-small_420_9-to-small_420_8 │ │ ├── h264-reinit-small_422_9-to-small_420_9 │ │ ├── h264-skip-nointra │ │ ├── h264-skip-nokey │ │ ├── h264-twofields-packet │ │ ├── h264-unescaped-extradata │ │ ├── h264-xavc-4389 │ │ ├── h264_mp4toannexb_ticket2991 │ │ ├── h264_mp4toannexb_ticket5927 │ │ ├── h264_mp4toannexb_ticket5927_2 │ │ ├── hap-alpha-only-nosnappy-128x72 │ │ ├── hap-alpha-only-snappy-127x71 │ │ ├── hap-chunk │ │ ├── hap1 │ │ ├── hap5 │ │ ├── hapenc-hap-none │ │ ├── hapenc-hapa-none │ │ ├── hapenc-hapq-none │ │ ├── hapqa-extract-nosnappy-to-hapalphaonly-mov │ │ ├── hapqa-extract-nosnappy-to-hapq-mov │ │ ├── hapqa-extract-snappy1-to-hapalphaonly │ │ ├── hapqa-extract-snappy1-to-hapq │ │ ├── hapqa-extract-snappy16-to-hapalphaonly │ │ ├── hapqa-extract-snappy16-to-hapq │ │ ├── hapqa-nosnappy-127x71 │ │ ├── hapqa-snappy1-127x71 │ │ ├── hapqa-snappy16-127x71 │ │ ├── hapy │ │ ├── hash │ │ ├── hevc-conformance-ADJUST_IPRED_ANGLE_A_RExt_Mitsubishi_1 │ │ ├── hevc-conformance-AMP_A_Samsung_4 │ │ ├── hevc-conformance-AMP_A_Samsung_6 │ │ ├── hevc-conformance-AMP_B_Samsung_4 │ │ ├── hevc-conformance-AMP_B_Samsung_6 │ │ ├── hevc-conformance-AMP_D_Hisilicon │ │ ├── hevc-conformance-AMP_E_Hisilicon │ │ ├── hevc-conformance-AMP_F_Hisilicon_3 │ │ ├── hevc-conformance-AMVP_A_MTK_4 │ │ ├── hevc-conformance-AMVP_B_MTK_4 │ │ ├── hevc-conformance-AMVP_C_Samsung_4 │ │ ├── hevc-conformance-AMVP_C_Samsung_6 │ │ ├── hevc-conformance-BUMPING_A_ericsson_1 │ │ ├── hevc-conformance-CAINIT_A_SHARP_4 │ │ ├── hevc-conformance-CAINIT_B_SHARP_4 │ │ ├── hevc-conformance-CAINIT_C_SHARP_3 │ │ ├── hevc-conformance-CAINIT_D_SHARP_3 │ │ ├── hevc-conformance-CAINIT_E_SHARP_3 │ │ ├── hevc-conformance-CAINIT_F_SHARP_3 │ │ ├── hevc-conformance-CAINIT_G_SHARP_3 │ │ ├── hevc-conformance-CAINIT_H_SHARP_3 │ │ ├── hevc-conformance-CIP_A_Panasonic_3 │ │ ├── hevc-conformance-CIP_C_Panasonic_2 │ │ ├── hevc-conformance-CONFWIN_A_Sony_1 │ │ ├── hevc-conformance-DBLK_A_MAIN10_VIXS_3 │ │ ├── hevc-conformance-DBLK_A_SONY_3 │ │ ├── hevc-conformance-DBLK_B_SONY_3 │ │ ├── hevc-conformance-DBLK_C_SONY_3 │ │ ├── hevc-conformance-DBLK_D_VIXS_2 │ │ ├── hevc-conformance-DBLK_E_VIXS_2 │ │ ├── hevc-conformance-DBLK_F_VIXS_2 │ │ ├── hevc-conformance-DBLK_G_VIXS_2 │ │ ├── hevc-conformance-DELTAQP_A_BRCM_4 │ │ ├── hevc-conformance-DELTAQP_B_SONY_3 │ │ ├── hevc-conformance-DELTAQP_C_SONY_3 │ │ ├── hevc-conformance-DSLICE_A_HHI_5 │ │ ├── hevc-conformance-DSLICE_B_HHI_5 │ │ ├── hevc-conformance-DSLICE_C_HHI_5 │ │ ├── hevc-conformance-ENTP_A_Qualcomm_1 │ │ ├── hevc-conformance-ENTP_B_Qualcomm_1 │ │ ├── hevc-conformance-ENTP_C_Qualcomm_1 │ │ ├── hevc-conformance-EXT_A_ericsson_4 │ │ ├── hevc-conformance-FILLER_A_Sony_1 │ │ ├── hevc-conformance-HRD_A_Fujitsu_2 │ │ ├── hevc-conformance-HRD_A_Fujitsu_3 │ │ ├── hevc-conformance-INITQP_A_Sony_1 │ │ ├── hevc-conformance-INITQP_B_Sony_1 │ │ ├── hevc-conformance-IPCM_A_RExt_NEC │ │ ├── hevc-conformance-IPCM_B_RExt_NEC │ │ ├── hevc-conformance-IPRED_A_docomo_2 │ │ ├── hevc-conformance-IPRED_B_Nokia_3 │ │ ├── hevc-conformance-IPRED_C_Mitsubishi_3 │ │ ├── hevc-conformance-LS_A_Orange_2 │ │ ├── hevc-conformance-LS_B_ORANGE_4 │ │ ├── hevc-conformance-LTRPSPS_A_Qualcomm_1 │ │ ├── hevc-conformance-MAXBINS_A_TI_4 │ │ ├── hevc-conformance-MAXBINS_B_TI_4 │ │ ├── hevc-conformance-MAXBINS_C_TI_4 │ │ ├── hevc-conformance-MERGE_A_TI_3 │ │ ├── hevc-conformance-MERGE_B_TI_3 │ │ ├── hevc-conformance-MERGE_C_TI_3 │ │ ├── hevc-conformance-MERGE_D_TI_3 │ │ ├── hevc-conformance-MERGE_E_TI_3 │ │ ├── hevc-conformance-MERGE_F_MTK_4 │ │ ├── hevc-conformance-MERGE_G_HHI_4 │ │ ├── hevc-conformance-MVCLIP_A_qualcomm_3 │ │ ├── hevc-conformance-MVDL1ZERO_A_docomo_3 │ │ ├── hevc-conformance-MVEDGE_A_qualcomm_3 │ │ ├── hevc-conformance-Main_422_10_A_RExt_Sony_1 │ │ ├── hevc-conformance-Main_422_10_B_RExt_Sony_1 │ │ ├── hevc-conformance-NUT_A_ericsson_5 │ │ ├── hevc-conformance-NoOutPrior_A_Qualcomm_1 │ │ ├── hevc-conformance-NoOutPrior_B_Qualcomm_1 │ │ ├── hevc-conformance-OPFLAG_A_Qualcomm_1 │ │ ├── hevc-conformance-OPFLAG_B_Qualcomm_1 │ │ ├── hevc-conformance-OPFLAG_C_Qualcomm_1 │ │ ├── hevc-conformance-PERSIST_RPARAM_A_RExt_Sony_1 │ │ ├── hevc-conformance-PERSIST_RPARAM_A_RExt_Sony_3 │ │ ├── hevc-conformance-PICSIZE_A_Bossen_1 │ │ ├── hevc-conformance-PICSIZE_B_Bossen_1 │ │ ├── hevc-conformance-PICSIZE_C_Bossen_1 │ │ ├── hevc-conformance-PICSIZE_D_Bossen_1 │ │ ├── hevc-conformance-PMERGE_A_TI_3 │ │ ├── hevc-conformance-PMERGE_B_TI_3 │ │ ├── hevc-conformance-PMERGE_C_TI_3 │ │ ├── hevc-conformance-PMERGE_D_TI_3 │ │ ├── hevc-conformance-PMERGE_E_TI_3 │ │ ├── hevc-conformance-POC_A_Bossen_3 │ │ ├── hevc-conformance-PPS_A_qualcomm_7 │ │ ├── hevc-conformance-PS_A_VIDYO_3 │ │ ├── hevc-conformance-PS_B_VIDYO_3 │ │ ├── hevc-conformance-QMATRIX_A_RExt_Sony_1 │ │ ├── hevc-conformance-RAP_A_docomo_4 │ │ ├── hevc-conformance-RAP_B_Bossen_1 │ │ ├── hevc-conformance-RPLM_A_qualcomm_4 │ │ ├── hevc-conformance-RPLM_B_qualcomm_4 │ │ ├── hevc-conformance-RPS_A_docomo_4 │ │ ├── hevc-conformance-RPS_B_qualcomm_5 │ │ ├── hevc-conformance-RPS_C_ericsson_5 │ │ ├── hevc-conformance-RPS_D_ericsson_6 │ │ ├── hevc-conformance-RPS_E_qualcomm_5 │ │ ├── hevc-conformance-RPS_F_docomo_1 │ │ ├── hevc-conformance-RQT_A_HHI_4 │ │ ├── hevc-conformance-RQT_B_HHI_4 │ │ ├── hevc-conformance-RQT_C_HHI_4 │ │ ├── hevc-conformance-RQT_D_HHI_4 │ │ ├── hevc-conformance-RQT_E_HHI_4 │ │ ├── hevc-conformance-RQT_F_HHI_4 │ │ ├── hevc-conformance-RQT_G_HHI_4 │ │ ├── hevc-conformance-SAO_A_MediaTek_4 │ │ ├── hevc-conformance-SAO_A_RExt_MediaTek_1 │ │ ├── hevc-conformance-SAO_B_MediaTek_5 │ │ ├── hevc-conformance-SAO_C_Samsung_4 │ │ ├── hevc-conformance-SAO_C_Samsung_5 │ │ ├── hevc-conformance-SAO_D_Samsung_4 │ │ ├── hevc-conformance-SAO_D_Samsung_5 │ │ ├── hevc-conformance-SAO_E_Canon_4 │ │ ├── hevc-conformance-SAO_F_Canon_3 │ │ ├── hevc-conformance-SAO_G_Canon_3 │ │ ├── hevc-conformance-SDH_A_Orange_3 │ │ ├── hevc-conformance-SLICES_A_Rovi_3 │ │ ├── hevc-conformance-SLIST_A_Sony_4 │ │ ├── hevc-conformance-SLIST_B_Sony_8 │ │ ├── hevc-conformance-SLIST_C_Sony_3 │ │ ├── hevc-conformance-SLIST_D_Sony_9 │ │ ├── hevc-conformance-SLPPLP_A_VIDYO_1 │ │ ├── hevc-conformance-SLPPLP_A_VIDYO_2 │ │ ├── hevc-conformance-STRUCT_A_Samsung_5 │ │ ├── hevc-conformance-STRUCT_B_Samsung_4 │ │ ├── hevc-conformance-STRUCT_B_Samsung_6 │ │ ├── hevc-conformance-TILES_A_Cisco_2 │ │ ├── hevc-conformance-TILES_B_Cisco_1 │ │ ├── hevc-conformance-TMVP_A_MS_3 │ │ ├── hevc-conformance-TSCL_A_VIDYO_5 │ │ ├── hevc-conformance-TSCL_B_VIDYO_4 │ │ ├── hevc-conformance-TSKIP_A_MS_3 │ │ ├── hevc-conformance-TUSIZE_A_Samsung_1 │ │ ├── hevc-conformance-VPSID_A_VIDYO_1 │ │ ├── hevc-conformance-VPSID_A_VIDYO_2 │ │ ├── hevc-conformance-WPP_A_ericsson_MAIN10_2 │ │ ├── hevc-conformance-WPP_A_ericsson_MAIN_2 │ │ ├── hevc-conformance-WPP_B_ericsson_MAIN10_2 │ │ ├── hevc-conformance-WPP_B_ericsson_MAIN_2 │ │ ├── hevc-conformance-WPP_C_ericsson_MAIN10_2 │ │ ├── hevc-conformance-WPP_C_ericsson_MAIN_2 │ │ ├── hevc-conformance-WPP_D_ericsson_MAIN10_2 │ │ ├── hevc-conformance-WPP_D_ericsson_MAIN_2 │ │ ├── hevc-conformance-WPP_E_ericsson_MAIN10_2 │ │ ├── hevc-conformance-WPP_E_ericsson_MAIN_2 │ │ ├── hevc-conformance-WPP_F_ericsson_MAIN10_2 │ │ ├── hevc-conformance-WPP_F_ericsson_MAIN_2 │ │ ├── hevc-conformance-WP_A_MAIN10_Toshiba_3 │ │ ├── hevc-conformance-WP_A_Toshiba_3 │ │ ├── hevc-conformance-WP_B_Toshiba_3 │ │ ├── hevc-conformance-WP_MAIN10_B_Toshiba_3 │ │ ├── hevc-conformance-cip_B_NEC_3 │ │ ├── hevc-conformance-ipcm_A_NEC_3 │ │ ├── hevc-conformance-ipcm_B_NEC_3 │ │ ├── hevc-conformance-ipcm_C_NEC_3 │ │ ├── hevc-conformance-ipcm_D_NEC_3 │ │ ├── hevc-conformance-ipcm_E_NEC_2 │ │ ├── hevc-extradata-reload │ │ ├── hevc-paired-fields │ │ ├── hevc-paramchange-yuv420p-yuv420p10 │ │ ├── hevc-skiploopfilter │ │ ├── hmac │ │ ├── id-cin-video │ │ ├── id3v2-priv │ │ ├── idroq-video-encode │ │ ├── iff-byterun1 │ │ ├── iff-fibonacci │ │ ├── iff-ilbm │ │ ├── iff-pcm │ │ ├── iirfilter │ │ ├── imgutils │ │ ├── indeo2-delta │ │ ├── indeo2-intra │ │ ├── indeo3-1 │ │ ├── indeo3-2 │ │ ├── indeo4 │ │ ├── indeo5 │ │ ├── interplay-mve-16bit │ │ ├── interplay-mve-8bit │ │ ├── iscc │ │ ├── iv8-demux │ │ ├── j2k-dwt │ │ ├── jpeg2000-dcinema │ │ ├── jpg-12bpp │ │ ├── jpg-jfif │ │ ├── jv │ │ ├── jv-demux │ │ ├── kgv1 │ │ ├── kmvc │ │ ├── lagarith-red │ │ ├── lagarith-rgb24 │ │ ├── lagarith-rgb32 │ │ ├── lagarith-ticket4119 │ │ ├── lagarith-ticket4119-cfr │ │ ├── lagarith-ticket4119-drop │ │ ├── lagarith-ticket4119-pass │ │ ├── lagarith-ticket4119-vfr │ │ ├── lagarith-yuy2 │ │ ├── lagarith-yv12 │ │ ├── lfg │ │ ├── libavcodec-htmlsubtitles │ │ ├── libavcodec-options │ │ ├── limited_input_seek │ │ ├── limited_input_seek-copyts │ │ ├── lmlm4-demux │ │ ├── loco-rgb │ │ ├── loco-yuy2 │ │ ├── lossless-alac │ │ ├── lossless-meridianaudio │ │ ├── lossless-monkeysaudio-399 │ │ ├── lossless-shorten │ │ ├── lossless-tak │ │ ├── lossless-truehd-5.1 │ │ ├── lossless-truehd-5.1-downmix-2.0 │ │ ├── lossless-tta │ │ ├── lossless-tta-encrypted │ │ ├── lossless-wma │ │ ├── lossless-wma24-1 │ │ ├── lossless-wma24-2 │ │ ├── lossless-wma24-rawtile │ │ ├── m4v │ │ ├── m4v-cfr │ │ ├── magicyuv-rgb │ │ ├── magicyuv-rgba │ │ ├── magicyuv-y400i │ │ ├── magicyuv-y420 │ │ ├── magicyuv-y422i │ │ ├── magicyuv-y444 │ │ ├── magicyuv-y4444i │ │ ├── mapchan-2ch-extract-ch0-ch2-trailing │ │ ├── mapchan-3ch-extract-ch0-ch2-trailing │ │ ├── mapchan-6ch-extract-2 │ │ ├── mapchan-6ch-extract-2-downmix-mono │ │ ├── mapchan-silent-mono │ │ ├── matroska-spherical-mono │ │ ├── maxis-xa │ │ ├── md5 │ │ ├── mdec │ │ ├── mdec-v3 │ │ ├── mimic │ │ ├── mjpegb │ │ ├── mkv │ │ ├── mkv-1242 │ │ ├── mlv-demux │ │ ├── motionpixels │ │ ├── mov-1elist-1ctts │ │ ├── mov-1elist-ends-last-bframe │ │ ├── mov-1elist-noctts │ │ ├── mov-2elist-elist1-ends-bframe │ │ ├── mov-3elist │ │ ├── mov-3elist-1ctts │ │ ├── mov-3elist-encrypted │ │ ├── mov-440hz-10ms │ │ ├── mov-aac-2048-priming │ │ ├── mov-bbi-elst-starts-b │ │ ├── mov-displaymatrix │ │ ├── mov-elist-starts-ctts-2ndsample │ │ ├── mov-elst-ends-betn-b-and-i │ │ ├── mov-frag-overlap │ │ ├── mov-guess-delay-1 │ │ ├── mov-guess-delay-2 │ │ ├── mov-guess-delay-3 │ │ ├── mov-ibi-elst-starts-b │ │ ├── mov-init-nonkeyframe │ │ ├── mov-invalid-elst-entry-count │ │ ├── mov-mp3-demux │ │ ├── mov-neg-firstpts-discard │ │ ├── mov-neg-firstpts-discard-frames │ │ ├── mov-spherical-mono │ │ ├── mov-zombie │ │ ├── movenc │ │ ├── mpc7-demux │ │ ├── mpc8-demux │ │ ├── mpeg2-field-enc │ │ ├── mpeg2-ticket186 │ │ ├── mpeg2-ticket6024 │ │ ├── mpeg2-ticket6677 │ │ ├── mpeg4-als-conformance-00 │ │ ├── mpeg4-als-conformance-01 │ │ ├── mpeg4-als-conformance-02 │ │ ├── mpeg4-als-conformance-03 │ │ ├── mpeg4-als-conformance-04 │ │ ├── mpeg4-als-conformance-05 │ │ ├── mpeg4-bsf-unpack-bframes │ │ ├── mpeg4-packed │ │ ├── mpeg4-resolution-change-down-down │ │ ├── mpeg4-resolution-change-down-up │ │ ├── mpeg4-resolution-change-up-down │ │ ├── mpeg4-resolution-change-up-up │ │ ├── mpegps-remuxed-pcm-demux │ │ ├── mpegts-probe-latm │ │ ├── mpegts-probe-program │ │ ├── msmpeg4v1 │ │ ├── msrle-8bit │ │ ├── mss1-pal │ │ ├── mss2-pal │ │ ├── mss2-pals │ │ ├── mss2-rgb555 │ │ ├── mss2-rgb555s │ │ ├── mss2-wmv │ │ ├── msvideo1-16bit │ │ ├── msvideo1-8bit │ │ ├── mszh │ │ ├── mts2 │ │ ├── mts2-xesc │ │ ├── mtv │ │ ├── murmur3 │ │ ├── mv-mvc1 │ │ ├── mv-mvc2 │ │ ├── mv-sgirle │ │ ├── mxf-demux │ │ ├── mxf-essencegroup-demux │ │ ├── mxf-metadata-source-ref1 │ │ ├── mxf-metadata-source-ref2 │ │ ├── mxf-missing-index-demux │ │ ├── mxf-multiple-components-demux │ │ ├── mxf-probe-d10 │ │ ├── mxf-probe-dnxhd │ │ ├── mxf-probe-dv25 │ │ ├── mxf-reel_name │ │ ├── mxpeg │ │ ├── nc-demux │ │ ├── nistsphere-demux │ │ ├── noproxy │ │ ├── nsv-demux │ │ ├── nuv-rtjpeg │ │ ├── nuv-rtjpeg-fh │ │ ├── oggopus-demux │ │ ├── oggvp8-demux │ │ ├── oma-demux │ │ ├── on2avc │ │ ├── opt │ │ ├── paf-audio │ │ ├── paf-demux │ │ ├── paf-video │ │ ├── parseutils │ │ ├── pcm-planar │ │ ├── pcm_dvd │ │ ├── pcm_s16be-stereo │ │ ├── pcm_s16le-stereo │ │ ├── pcm_u8-mono │ │ ├── pcm_u8-stereo │ │ ├── pict │ │ ├── pictor │ │ ├── pixelutils │ │ ├── pixfmt_best │ │ ├── pixlet-rgb │ │ ├── pmp-demux │ │ ├── png-gray16 │ │ ├── png-gray8 │ │ ├── png-int-rgb24 │ │ ├── png-rgb24 │ │ ├── png-rgb48 │ │ ├── png-rgba │ │ ├── png-rgba64 │ │ ├── png-ya16 │ │ ├── png-ya8 │ │ ├── pngparser │ │ ├── prores-422 │ │ ├── prores-422_hq │ │ ├── prores-422_lt │ │ ├── prores-422_proxy │ │ ├── prores-alpha │ │ ├── prores-alpha_skip │ │ ├── prores-gray │ │ ├── prores-transparency │ │ ├── prores-transparency_skip │ │ ├── psd-duo-tone-color │ │ ├── psd-gray16 │ │ ├── psd-gray8 │ │ ├── psd-lena-127x127-rgb24 │ │ ├── psd-lena-256c │ │ ├── psd-lena-bitmap │ │ ├── psd-lena-rgb-rle-127x127-16b │ │ ├── psd-lena-rgb-rle-127x127-8b │ │ ├── psd-lena-rgba-rle-128x128-8b │ │ ├── psd-rgb24 │ │ ├── psd-rgb48 │ │ ├── psd-rgba │ │ ├── psd-rgba64 │ │ ├── psd-ya16 │ │ ├── psd-ya8 │ │ ├── psx-str-demux │ │ ├── ptx │ │ ├── pva-demux │ │ ├── qcp-demux │ │ ├── qpeg │ │ ├── qt-alaw-mono │ │ ├── qt-alaw-stereo │ │ ├── qt-ima4-mono │ │ ├── qt-ima4-stereo │ │ ├── qt-mac3-mono │ │ ├── qt-mac3-stereo │ │ ├── qt-mac6-mono │ │ ├── qt-mac6-stereo │ │ ├── qt-ulaw-mono │ │ ├── qt-ulaw-stereo │ │ ├── qtrle-16bit │ │ ├── qtrle-1bit │ │ ├── qtrle-24bit │ │ ├── qtrle-2bit │ │ ├── qtrle-32bit │ │ ├── qtrle-4bit │ │ ├── qtrle-8bit │ │ ├── quickdraw │ │ ├── r210 │ │ ├── ra-144 │ │ ├── ra3-144 │ │ ├── ralf │ │ ├── random_seed │ │ ├── redcode-demux │ │ ├── redspark-demux │ │ ├── rgb24-mkv │ │ ├── rgbapng-4816 │ │ ├── ripemd │ │ ├── rl2 │ │ ├── roqvideo │ │ ├── rpza │ │ ├── rscc-16bit │ │ ├── rscc-24bit │ │ ├── rscc-32bit │ │ ├── rscc-8bit │ │ ├── rsd-demux │ │ ├── rtmpdh │ │ ├── rv20-1239 │ │ ├── rv30 │ │ ├── rv40 │ │ ├── sanm │ │ ├── screenpresso-16bit │ │ ├── screenpresso-24bit │ │ ├── screenpresso-32bit │ │ ├── segment-adts-to-mkv-header-000 │ │ ├── segment-adts-to-mkv-header-001 │ │ ├── segment-adts-to-mkv-header-002 │ │ ├── segment-adts-to-mkv-header-all │ │ ├── segment-mp4-to-ts │ │ ├── sgi-gray16 │ │ ├── sgi-gray16-rle │ │ ├── sgi-gray8 │ │ ├── sgi-gray8-rle │ │ ├── sgi-rgb24 │ │ ├── sgi-rgb24-rle │ │ ├── sgi-rgb48 │ │ ├── sgi-rgb48-rle │ │ ├── sgi-rgba │ │ ├── sgi-rgba-rle │ │ ├── sgi-rgba64 │ │ ├── sgi-rgba64-rle │ │ ├── sha │ │ ├── sha512 │ │ ├── sierra-vmd-audio │ │ ├── sierra-vmd-video │ │ ├── siff-demux │ │ ├── smacker-audio │ │ ├── smacker-video │ │ ├── smc │ │ ├── smjpeg │ │ ├── smjpeg-demux │ │ ├── smvjpeg │ │ ├── source │ │ ├── sp5x │ │ ├── speedhq-422 │ │ ├── speedhq-422-singlefield │ │ ├── srtp │ │ ├── sub-aqtitle │ │ ├── sub-ass-to-ass-transcode │ │ ├── sub-cc │ │ ├── sub-cc-realtime │ │ ├── sub-cc-scte20 │ │ ├── sub-charenc │ │ ├── sub-jacosub │ │ ├── sub-microdvd │ │ ├── sub-microdvd-remux │ │ ├── sub-movtext │ │ ├── sub-mpl2 │ │ ├── sub-mpsub │ │ ├── sub-mpsub-frames │ │ ├── sub-pjs │ │ ├── sub-realtext │ │ ├── sub-sami │ │ ├── sub-sami2 │ │ ├── sub-scc │ │ ├── sub-srt │ │ ├── sub-srt-badsyntax │ │ ├── sub-srt-empty-events │ │ ├── sub-srt-madness-timeshift │ │ ├── sub-srt-rrn-remux │ │ ├── sub-ssa-to-ass-remux │ │ ├── sub-stl │ │ ├── sub-subripenc │ │ ├── sub-subviewer │ │ ├── sub-subviewer1 │ │ ├── sub-textenc │ │ ├── sub-vplayer │ │ ├── sub-webvtt │ │ ├── sub-webvtt2 │ │ ├── sub-webvttenc │ │ ├── sub2video │ │ ├── sunraster-1bit-raw │ │ ├── sunraster-1bit-rle │ │ ├── sunraster-24bit-raw │ │ ├── sunraster-24bit-rle │ │ ├── sunraster-8bit-raw │ │ ├── sunraster-8bit-rle │ │ ├── sunraster-8bit_gray-raw │ │ ├── svq1 │ │ ├── svq1-headerswap │ │ ├── svq3-1 │ │ ├── svq3-2 │ │ ├── svq3-watermark │ │ ├── sws-pixdesc-query │ │ ├── targa-conformance-CBW8 │ │ ├── targa-conformance-CCM8 │ │ ├── targa-conformance-CTC16 │ │ ├── targa-conformance-CTC24 │ │ ├── targa-conformance-CTC32 │ │ ├── targa-conformance-UBW8 │ │ ├── targa-conformance-UCM8 │ │ ├── targa-conformance-UTC16 │ │ ├── targa-conformance-UTC24 │ │ ├── targa-conformance-UTC32 │ │ ├── targa-top-to-bottom │ │ ├── tdsc │ │ ├── tea │ │ ├── theora-coeff-level64 │ │ ├── theora-offset │ │ ├── thp │ │ ├── tiertex-seq │ │ ├── tiff-fax-g3 │ │ ├── tiff-fax-g3s │ │ ├── time_base │ │ ├── timefilter │ │ ├── tmv │ │ ├── truemotion1-15 │ │ ├── truemotion1-24 │ │ ├── truemotion2 │ │ ├── truemotion2rt-high │ │ ├── truemotion2rt-low │ │ ├── truemotion2rt-mid │ │ ├── ts-demux │ │ ├── ts-opus-demux │ │ ├── tscc-15bit │ │ ├── tscc-32bit │ │ ├── tscc2-avi │ │ ├── tscc2-mov │ │ ├── txd-16bpp │ │ ├── txd-odd │ │ ├── txd-pal8 │ │ ├── ulti │ │ ├── unknown_layout-ac3 │ │ ├── unknown_layout-pcm │ │ ├── url │ │ ├── utvideo_rgb_int_gradient │ │ ├── utvideo_rgb_int_median │ │ ├── utvideo_rgb_left │ │ ├── utvideo_rgb_median │ │ ├── utvideo_rgba_gradient │ │ ├── utvideo_rgba_left │ │ ├── utvideo_rgba_median │ │ ├── utvideo_rgba_single_symbol │ │ ├── utvideo_yuv420_gradient │ │ ├── utvideo_yuv420_int_gradient │ │ ├── utvideo_yuv420_int_median │ │ ├── utvideo_yuv420_left │ │ ├── utvideo_yuv420_median │ │ ├── utvideo_yuv422_gradient │ │ ├── utvideo_yuv422_int_gradient │ │ ├── utvideo_yuv422_int_median │ │ ├── utvideo_yuv422_left │ │ ├── utvideo_yuv422_median │ │ ├── utvideo_yuv444_709_gradient │ │ ├── utvideo_yuv444_709_int_gradient │ │ ├── utvideo_yuv444_709_int_median │ │ ├── utvideo_yuv444_709_median │ │ ├── utvideoenc_rgb_left │ │ ├── utvideoenc_rgb_median │ │ ├── utvideoenc_rgb_none │ │ ├── utvideoenc_rgba_left │ │ ├── utvideoenc_rgba_median │ │ ├── utvideoenc_rgba_none │ │ ├── utvideoenc_yuv420_left │ │ ├── utvideoenc_yuv420_median │ │ ├── utvideoenc_yuv420_none │ │ ├── utvideoenc_yuv422_left │ │ ├── utvideoenc_yuv422_median │ │ ├── utvideoenc_yuv422_none │ │ ├── utvideoenc_yuv444_left │ │ ├── utvideoenc_yuv444_median │ │ ├── utvideoenc_yuv444_none │ │ ├── v210 │ │ ├── v410dec │ │ ├── v410enc │ │ ├── vb │ │ ├── vble │ │ ├── vc1-ism │ │ ├── vc1_ilaced_twomv │ │ ├── vc1_sa00040 │ │ ├── vc1_sa00050 │ │ ├── vc1_sa10091 │ │ ├── vc1_sa10143 │ │ ├── vc1_sa20021 │ │ ├── vcr1 │ │ ├── vcr2 │ │ ├── videoxl │ │ ├── vmnc-16bit │ │ ├── vmnc-32bit │ │ ├── vorbis-1833-chapters │ │ ├── vp31 │ │ ├── vp5 │ │ ├── vp60 │ │ ├── vp61 │ │ ├── vp6a │ │ ├── vp6a-skip_alpha │ │ ├── vp6f │ │ ├── vp7 │ │ ├── vp8-2451 │ │ ├── vp8-alpha │ │ ├── vp8-sign-bias │ │ ├── vp8-size-change │ │ ├── vp8-test-vector-001 │ │ ├── vp8-test-vector-002 │ │ ├── vp8-test-vector-003 │ │ ├── vp8-test-vector-004 │ │ ├── vp8-test-vector-005 │ │ ├── vp8-test-vector-006 │ │ ├── vp8-test-vector-007 │ │ ├── vp8-test-vector-008 │ │ ├── vp8-test-vector-009 │ │ ├── vp8-test-vector-010 │ │ ├── vp8-test-vector-011 │ │ ├── vp8-test-vector-012 │ │ ├── vp8-test-vector-013 │ │ ├── vp8-test-vector-014 │ │ ├── vp8-test-vector-015 │ │ ├── vp8-test-vector-016 │ │ ├── vp8-test-vector-017 │ │ ├── vp9-00-quantizer-00 │ │ ├── vp9-00-quantizer-01 │ │ ├── vp9-00-quantizer-02 │ │ ├── vp9-00-quantizer-03 │ │ ├── vp9-00-quantizer-04 │ │ ├── vp9-00-quantizer-05 │ │ ├── vp9-00-quantizer-06 │ │ ├── vp9-00-quantizer-07 │ │ ├── vp9-00-quantizer-08 │ │ ├── vp9-00-quantizer-09 │ │ ├── vp9-00-quantizer-10 │ │ ├── vp9-00-quantizer-11 │ │ ├── vp9-00-quantizer-12 │ │ ├── vp9-00-quantizer-13 │ │ ├── vp9-00-quantizer-14 │ │ ├── vp9-00-quantizer-15 │ │ ├── vp9-00-quantizer-16 │ │ ├── vp9-00-quantizer-17 │ │ ├── vp9-00-quantizer-18 │ │ ├── vp9-00-quantizer-19 │ │ ├── vp9-00-quantizer-20 │ │ ├── vp9-00-quantizer-21 │ │ ├── vp9-00-quantizer-22 │ │ ├── vp9-00-quantizer-23 │ │ ├── vp9-00-quantizer-24 │ │ ├── vp9-00-quantizer-25 │ │ ├── vp9-00-quantizer-26 │ │ ├── vp9-00-quantizer-27 │ │ ├── vp9-00-quantizer-28 │ │ ├── vp9-00-quantizer-29 │ │ ├── vp9-00-quantizer-30 │ │ ├── vp9-00-quantizer-31 │ │ ├── vp9-00-quantizer-32 │ │ ├── vp9-00-quantizer-33 │ │ ├── vp9-00-quantizer-34 │ │ ├── vp9-00-quantizer-35 │ │ ├── vp9-00-quantizer-36 │ │ ├── vp9-00-quantizer-37 │ │ ├── vp9-00-quantizer-38 │ │ ├── vp9-00-quantizer-39 │ │ ├── vp9-00-quantizer-40 │ │ ├── vp9-00-quantizer-41 │ │ ├── vp9-00-quantizer-42 │ │ ├── vp9-00-quantizer-43 │ │ ├── vp9-00-quantizer-44 │ │ ├── vp9-00-quantizer-45 │ │ ├── vp9-00-quantizer-46 │ │ ├── vp9-00-quantizer-47 │ │ ├── vp9-00-quantizer-48 │ │ ├── vp9-00-quantizer-49 │ │ ├── vp9-00-quantizer-50 │ │ ├── vp9-00-quantizer-51 │ │ ├── vp9-00-quantizer-52 │ │ ├── vp9-00-quantizer-53 │ │ ├── vp9-00-quantizer-54 │ │ ├── vp9-00-quantizer-55 │ │ ├── vp9-00-quantizer-56 │ │ ├── vp9-00-quantizer-57 │ │ ├── vp9-00-quantizer-58 │ │ ├── vp9-00-quantizer-59 │ │ ├── vp9-00-quantizer-60 │ │ ├── vp9-00-quantizer-61 │ │ ├── vp9-00-quantizer-62 │ │ ├── vp9-00-quantizer-63 │ │ ├── vp9-01-sharpness-1 │ │ ├── vp9-01-sharpness-2 │ │ ├── vp9-01-sharpness-3 │ │ ├── vp9-01-sharpness-4 │ │ ├── vp9-01-sharpness-5 │ │ ├── vp9-01-sharpness-6 │ │ ├── vp9-01-sharpness-7 │ │ ├── vp9-02-size-08x08 │ │ ├── vp9-02-size-08x10 │ │ ├── vp9-02-size-08x16 │ │ ├── vp9-02-size-08x18 │ │ ├── vp9-02-size-08x32 │ │ ├── vp9-02-size-08x34 │ │ ├── vp9-02-size-08x64 │ │ ├── vp9-02-size-08x66 │ │ ├── vp9-02-size-10x08 │ │ ├── vp9-02-size-10x10 │ │ ├── vp9-02-size-10x16 │ │ ├── vp9-02-size-10x18 │ │ ├── vp9-02-size-10x32 │ │ ├── vp9-02-size-10x34 │ │ ├── vp9-02-size-10x64 │ │ ├── vp9-02-size-10x66 │ │ ├── vp9-02-size-16x08 │ │ ├── vp9-02-size-16x10 │ │ ├── vp9-02-size-16x16 │ │ ├── vp9-02-size-16x18 │ │ ├── vp9-02-size-16x32 │ │ ├── vp9-02-size-16x34 │ │ ├── vp9-02-size-16x64 │ │ ├── vp9-02-size-16x66 │ │ ├── vp9-02-size-18x08 │ │ ├── vp9-02-size-18x10 │ │ ├── vp9-02-size-18x16 │ │ ├── vp9-02-size-18x18 │ │ ├── vp9-02-size-18x32 │ │ ├── vp9-02-size-18x34 │ │ ├── vp9-02-size-18x64 │ │ ├── vp9-02-size-18x66 │ │ ├── vp9-02-size-32x08 │ │ ├── vp9-02-size-32x10 │ │ ├── vp9-02-size-32x16 │ │ ├── vp9-02-size-32x18 │ │ ├── vp9-02-size-32x32 │ │ ├── vp9-02-size-32x34 │ │ ├── vp9-02-size-32x64 │ │ ├── vp9-02-size-32x66 │ │ ├── vp9-02-size-34x08 │ │ ├── vp9-02-size-34x10 │ │ ├── vp9-02-size-34x16 │ │ ├── vp9-02-size-34x18 │ │ ├── vp9-02-size-34x32 │ │ ├── vp9-02-size-34x34 │ │ ├── vp9-02-size-34x64 │ │ ├── vp9-02-size-34x66 │ │ ├── vp9-02-size-64x08 │ │ ├── vp9-02-size-64x10 │ │ ├── vp9-02-size-64x16 │ │ ├── vp9-02-size-64x18 │ │ ├── vp9-02-size-64x32 │ │ ├── vp9-02-size-64x34 │ │ ├── vp9-02-size-64x64 │ │ ├── vp9-02-size-64x66 │ │ ├── vp9-02-size-66x08 │ │ ├── vp9-02-size-66x10 │ │ ├── vp9-02-size-66x16 │ │ ├── vp9-02-size-66x18 │ │ ├── vp9-02-size-66x32 │ │ ├── vp9-02-size-66x34 │ │ ├── vp9-02-size-66x64 │ │ ├── vp9-02-size-66x66 │ │ ├── vp9-03-deltaq │ │ ├── vp9-03-size-196x196 │ │ ├── vp9-03-size-196x198 │ │ ├── vp9-03-size-196x200 │ │ ├── vp9-03-size-196x202 │ │ ├── vp9-03-size-196x208 │ │ ├── vp9-03-size-196x210 │ │ ├── vp9-03-size-196x224 │ │ ├── vp9-03-size-196x226 │ │ ├── vp9-03-size-198x196 │ │ ├── vp9-03-size-198x198 │ │ ├── vp9-03-size-198x200 │ │ ├── vp9-03-size-198x202 │ │ ├── vp9-03-size-198x208 │ │ ├── vp9-03-size-198x210 │ │ ├── vp9-03-size-198x224 │ │ ├── vp9-03-size-198x226 │ │ ├── vp9-03-size-200x196 │ │ ├── vp9-03-size-200x198 │ │ ├── vp9-03-size-200x200 │ │ ├── vp9-03-size-200x202 │ │ ├── vp9-03-size-200x208 │ │ ├── vp9-03-size-200x210 │ │ ├── vp9-03-size-200x224 │ │ ├── vp9-03-size-200x226 │ │ ├── vp9-03-size-202x196 │ │ ├── vp9-03-size-202x198 │ │ ├── vp9-03-size-202x200 │ │ ├── vp9-03-size-202x202 │ │ ├── vp9-03-size-202x208 │ │ ├── vp9-03-size-202x210 │ │ ├── vp9-03-size-202x224 │ │ ├── vp9-03-size-202x226 │ │ ├── vp9-03-size-208x196 │ │ ├── vp9-03-size-208x198 │ │ ├── vp9-03-size-208x200 │ │ ├── vp9-03-size-208x202 │ │ ├── vp9-03-size-208x208 │ │ ├── vp9-03-size-208x210 │ │ ├── vp9-03-size-208x224 │ │ ├── vp9-03-size-208x226 │ │ ├── vp9-03-size-210x196 │ │ ├── vp9-03-size-210x198 │ │ ├── vp9-03-size-210x200 │ │ ├── vp9-03-size-210x202 │ │ ├── vp9-03-size-210x208 │ │ ├── vp9-03-size-210x210 │ │ ├── vp9-03-size-210x224 │ │ ├── vp9-03-size-210x226 │ │ ├── vp9-03-size-224x196 │ │ ├── vp9-03-size-224x198 │ │ ├── vp9-03-size-224x200 │ │ ├── vp9-03-size-224x202 │ │ ├── vp9-03-size-224x208 │ │ ├── vp9-03-size-224x210 │ │ ├── vp9-03-size-224x224 │ │ ├── vp9-03-size-224x226 │ │ ├── vp9-03-size-226x196 │ │ ├── vp9-03-size-226x198 │ │ ├── vp9-03-size-226x200 │ │ ├── vp9-03-size-226x202 │ │ ├── vp9-03-size-226x208 │ │ ├── vp9-03-size-226x210 │ │ ├── vp9-03-size-226x224 │ │ ├── vp9-03-size-226x226 │ │ ├── vp9-05-resize │ │ ├── vp9-06-bilinear │ │ ├── vp9-09-lf_deltas │ │ ├── vp9-10-show-existing-frame │ │ ├── vp9-10-show-existing-frame2 │ │ ├── vp9-15-segkey_adpq │ │ ├── vp9-16-intra-only │ │ ├── vp9-2pass-akiyo │ │ ├── vp9-parallelmode-akiyo │ │ ├── vp9-segmentation-aq-akiyo │ │ ├── vp9-segmentation-sf-akiyo │ │ ├── vp9-tiling-pedestrian │ │ ├── vp9-trac3849 │ │ ├── vp9-trac4359 │ │ ├── vp9p1-04-yuv422 │ │ ├── vp9p1-04-yuv440 │ │ ├── vp9p1-04-yuv444 │ │ ├── vp9p2-20-10bit-yuv420 │ │ ├── vp9p2-20-12bit-yuv420 │ │ ├── vp9p3-20-10bit-yuv422 │ │ ├── vp9p3-20-10bit-yuv440 │ │ ├── vp9p3-20-10bit-yuv444 │ │ ├── vp9p3-20-12bit-yuv422 │ │ ├── vp9p3-20-12bit-yuv440 │ │ ├── vp9p3-20-12bit-yuv444 │ │ ├── vqa-cc │ │ ├── vqf-demux │ │ ├── w64 │ │ ├── wav-ac3 │ │ ├── wavpack-channels-4.0 │ │ ├── wavpack-channels-5.1 │ │ ├── wavpack-channels-6.1 │ │ ├── wavpack-channels-7.1 │ │ ├── wavpack-channels-monofloat │ │ ├── wavpack-channels-monoint │ │ ├── wavpack-clipping │ │ ├── wavpack-cuesheet │ │ ├── wavpack-falsestereo │ │ ├── wavpack-lossless-12bit │ │ ├── wavpack-lossless-16bit │ │ ├── wavpack-lossless-24bit │ │ ├── wavpack-lossless-32bit │ │ ├── wavpack-lossless-8bit │ │ ├── wavpack-lossless-float │ │ ├── wavpack-lossy-16bit │ │ ├── wavpack-lossy-24bit │ │ ├── wavpack-lossy-32bit │ │ ├── wavpack-lossy-8bit │ │ ├── wavpack-lossy-float │ │ ├── wavpack-matroskamode │ │ ├── wavpack-speed-default │ │ ├── wavpack-speed-fast │ │ ├── wavpack-speed-high │ │ ├── wavpack-speed-vhigh │ │ ├── wavpack-zerolsbs │ │ ├── wc3movie-xan │ │ ├── webm-dash-manifest │ │ ├── webm-dash-manifest-live │ │ ├── webm-dash-manifest-live-bandwidth │ │ ├── webm-dash-manifest-representations │ │ ├── webm-dash-manifest-unaligned-audio-streams │ │ ├── webm-dash-manifest-unaligned-video-streams │ │ ├── webp-rgb-lena-lossless │ │ ├── webp-rgb-lena-lossless-rgb24 │ │ ├── webp-rgb-lossless │ │ ├── webp-rgb-lossy-q80 │ │ ├── webp-rgba-lossless │ │ ├── webp-rgba-lossy-q80 │ │ ├── westwood-aud │ │ ├── wmv3-drm-dec │ │ ├── wmv3-drm-nodec │ │ ├── wmv8-x8intra │ │ ├── wnv1 │ │ ├── ws_snd │ │ ├── wtv-demux │ │ ├── xbm10 │ │ ├── xbm11 │ │ ├── xface │ │ ├── xmv-demux │ │ ├── xtea │ │ ├── xvid-custom-matrix │ │ ├── xvid-idct │ │ ├── xwma-demux │ │ ├── xxan-wc4 │ │ ├── yop │ │ ├── zerocodec │ │ ├── zlib │ │ ├── zmbv-15bit │ │ ├── zmbv-16bit │ │ ├── zmbv-32bit │ │ └── zmbv-8bit │ ├── lavf-fate │ │ ├── avi_cram │ │ ├── latm │ │ ├── mov_qtrle_mace6 │ │ ├── mp3 │ │ ├── ogg_vp3 │ │ └── ogg_vp8 │ ├── lavf │ │ ├── aiff │ │ ├── alaw │ │ ├── apng │ │ ├── asf │ │ ├── ast │ │ ├── au │ │ ├── avi │ │ ├── bmp │ │ ├── caf │ │ ├── dpx │ │ ├── dv_fmt │ │ ├── fits │ │ ├── flm │ │ ├── flv_fmt │ │ ├── gif │ │ ├── gxf │ │ ├── ircam │ │ ├── ismv │ │ ├── jpg │ │ ├── mka │ │ ├── mkv │ │ ├── mmf │ │ ├── mov │ │ ├── mpg │ │ ├── mulaw │ │ ├── mxf │ │ ├── mxf_d10 │ │ ├── mxf_dv25 │ │ ├── mxf_dvcpro50 │ │ ├── mxf_opatom │ │ ├── mxf_opatom_audio │ │ ├── nut │ │ ├── ogg │ │ ├── pam │ │ ├── pbmpipe │ │ ├── pcx │ │ ├── pgm │ │ ├── pgmpipe │ │ ├── pixfmt │ │ ├── png │ │ ├── ppm │ │ ├── ppmpipe │ │ ├── rm │ │ ├── rso │ │ ├── sgi │ │ ├── smjpeg │ │ ├── sox │ │ ├── sunrast │ │ ├── swf │ │ ├── tga │ │ ├── tiff │ │ ├── ts │ │ ├── tta │ │ ├── voc │ │ ├── voc_s16 │ │ ├── w64 │ │ ├── wav │ │ ├── wav_peak │ │ ├── wav_peak_only │ │ ├── wtv │ │ ├── wv │ │ ├── xbm │ │ ├── xwd │ │ └── yuv4mpeg │ ├── seek │ │ ├── acodec-adpcm-ima_qt │ │ ├── acodec-adpcm-ima_qt-trellis │ │ ├── acodec-adpcm-ima_wav │ │ ├── acodec-adpcm-ima_wav-trellis │ │ ├── acodec-adpcm-ms │ │ ├── acodec-adpcm-ms-trellis │ │ ├── acodec-adpcm-swf │ │ ├── acodec-adpcm-swf-trellis │ │ ├── acodec-adpcm-yamaha │ │ ├── acodec-adpcm-yamaha-trellis │ │ ├── acodec-alac │ │ ├── acodec-flac │ │ ├── acodec-mp2 │ │ ├── acodec-pcm-alaw │ │ ├── acodec-pcm-f32be │ │ ├── acodec-pcm-f32le │ │ ├── acodec-pcm-f64be │ │ ├── acodec-pcm-f64le │ │ ├── acodec-pcm-mulaw │ │ ├── acodec-pcm-s16be │ │ ├── acodec-pcm-s16le │ │ ├── acodec-pcm-s24be │ │ ├── acodec-pcm-s24le │ │ ├── acodec-pcm-s32be │ │ ├── acodec-pcm-s32le │ │ ├── acodec-pcm-s8 │ │ ├── acodec-pcm-u8 │ │ ├── cache-pipe │ │ ├── empty-edit-mp4 │ │ ├── extra-mp3 │ │ ├── extra-mp4 │ │ ├── lavf-aiff │ │ ├── lavf-alaw │ │ ├── lavf-asf │ │ ├── lavf-au │ │ ├── lavf-avi │ │ ├── lavf-bmp │ │ ├── lavf-dv_fmt │ │ ├── lavf-flv_fmt │ │ ├── lavf-gif │ │ ├── lavf-gxf │ │ ├── lavf-jpg │ │ ├── lavf-mkv │ │ ├── lavf-mmf │ │ ├── lavf-mov │ │ ├── lavf-mpg │ │ ├── lavf-mulaw │ │ ├── lavf-mxf │ │ ├── lavf-mxf_d10 │ │ ├── lavf-mxf_dv25 │ │ ├── lavf-mxf_dvcpro50 │ │ ├── lavf-mxf_opatom │ │ ├── lavf-mxf_opatom_audio │ │ ├── lavf-nut │ │ ├── lavf-ogg │ │ ├── lavf-pbmpipe │ │ ├── lavf-pcx │ │ ├── lavf-pgm │ │ ├── lavf-pgmpipe │ │ ├── lavf-ppm │ │ ├── lavf-ppmpipe │ │ ├── lavf-rm │ │ ├── lavf-sgi │ │ ├── lavf-swf │ │ ├── lavf-tga │ │ ├── lavf-tiff │ │ ├── lavf-ts │ │ ├── lavf-voc │ │ ├── lavf-wav │ │ ├── lavf-wtv │ │ ├── lavf-yuv4mpeg │ │ ├── mkv-codec-delay │ │ ├── test-iibbibb-mp4 │ │ ├── test-iibbibb-neg-ctts-mp4 │ │ ├── vsynth_lena-asv1 │ │ ├── vsynth_lena-asv2 │ │ ├── vsynth_lena-dnxhd-1080i │ │ ├── vsynth_lena-dnxhd-4k-hr-lb │ │ ├── vsynth_lena-dnxhd-720p │ │ ├── vsynth_lena-dnxhd-720p-rd │ │ ├── vsynth_lena-dv │ │ ├── vsynth_lena-dv-411 │ │ ├── vsynth_lena-dv-50 │ │ ├── vsynth_lena-ffv1 │ │ ├── vsynth_lena-flashsv │ │ ├── vsynth_lena-flv │ │ ├── vsynth_lena-h261 │ │ ├── vsynth_lena-h263 │ │ ├── vsynth_lena-h263p │ │ ├── vsynth_lena-huffyuv │ │ ├── vsynth_lena-jpegls │ │ ├── vsynth_lena-ljpeg │ │ ├── vsynth_lena-mjpeg │ │ ├── vsynth_lena-mpeg1 │ │ ├── vsynth_lena-mpeg1b │ │ ├── vsynth_lena-mpeg2-422 │ │ ├── vsynth_lena-mpeg2-idct-int │ │ ├── vsynth_lena-mpeg2-ilace │ │ ├── vsynth_lena-mpeg2-ivlc-qprd │ │ ├── vsynth_lena-mpeg2-thread │ │ ├── vsynth_lena-mpeg2-thread-ivlc │ │ ├── vsynth_lena-mpeg4 │ │ ├── vsynth_lena-mpeg4-adap │ │ ├── vsynth_lena-mpeg4-adv │ │ ├── vsynth_lena-mpeg4-error │ │ ├── vsynth_lena-mpeg4-nr │ │ ├── vsynth_lena-mpeg4-nsse │ │ ├── vsynth_lena-mpeg4-qpel │ │ ├── vsynth_lena-mpeg4-qprd │ │ ├── vsynth_lena-mpeg4-rc │ │ ├── vsynth_lena-mpeg4-thread │ │ ├── vsynth_lena-msmpeg4 │ │ ├── vsynth_lena-msmpeg4v2 │ │ ├── vsynth_lena-rgb │ │ ├── vsynth_lena-roqvideo │ │ ├── vsynth_lena-rv10 │ │ ├── vsynth_lena-rv20 │ │ ├── vsynth_lena-snow │ │ ├── vsynth_lena-snow-ll │ │ ├── vsynth_lena-svq1 │ │ ├── vsynth_lena-wmv1 │ │ ├── vsynth_lena-wmv2 │ │ └── vsynth_lena-yuv │ ├── vsynth │ │ ├── vsynth1-amv │ │ ├── vsynth1-asv1 │ │ ├── vsynth1-asv2 │ │ ├── vsynth1-avui │ │ ├── vsynth1-bpp1 │ │ ├── vsynth1-bpp15 │ │ ├── vsynth1-cinepak │ │ ├── vsynth1-cljr │ │ ├── vsynth1-dnxhd-1080i │ │ ├── vsynth1-dnxhd-1080i-10bit │ │ ├── vsynth1-dnxhd-1080i-colr │ │ ├── vsynth1-dnxhd-2k-hr-hq │ │ ├── vsynth1-dnxhd-4k-hr-lb │ │ ├── vsynth1-dnxhd-720p │ │ ├── vsynth1-dnxhd-720p-10bit │ │ ├── vsynth1-dnxhd-720p-hr-lb │ │ ├── vsynth1-dnxhd-720p-rd │ │ ├── vsynth1-dnxhd-edge1-hr │ │ ├── vsynth1-dnxhd-edge2-hr │ │ ├── vsynth1-dnxhd-edge3-hr │ │ ├── vsynth1-dnxhd-hr-hq-mov │ │ ├── vsynth1-dnxhd-hr-lb-mov │ │ ├── vsynth1-dnxhd-hr-sq-mov │ │ ├── vsynth1-dnxhd-uhd-hr-sq │ │ ├── vsynth1-dnxhd_1080i │ │ ├── vsynth1-dv │ │ ├── vsynth1-dv-411 │ │ ├── vsynth1-dv-50 │ │ ├── vsynth1-dv_411 │ │ ├── vsynth1-ffv1 │ │ ├── vsynth1-ffv1-v0 │ │ ├── vsynth1-ffv1-v3-bgr0 │ │ ├── vsynth1-ffv1-v3-rgb48 │ │ ├── vsynth1-ffv1-v3-yuv420p │ │ ├── vsynth1-ffv1-v3-yuv422p10 │ │ ├── vsynth1-ffv1-v3-yuv444p16 │ │ ├── vsynth1-ffvhuff │ │ ├── vsynth1-ffvhuff420p12 │ │ ├── vsynth1-ffvhuff422p10left │ │ ├── vsynth1-ffvhuff444 │ │ ├── vsynth1-ffvhuff444p16 │ │ ├── vsynth1-flashsv │ │ ├── vsynth1-flashsv2 │ │ ├── vsynth1-flv │ │ ├── vsynth1-h261 │ │ ├── vsynth1-h261-trellis │ │ ├── vsynth1-h263 │ │ ├── vsynth1-h263-obmc │ │ ├── vsynth1-h263p │ │ ├── vsynth1-huffyuv │ │ ├── vsynth1-huffyuvbgr24 │ │ ├── vsynth1-huffyuvbgra │ │ ├── vsynth1-jpeg2000 │ │ ├── vsynth1-jpeg2000-97 │ │ ├── vsynth1-jpegls │ │ ├── vsynth1-ljpeg │ │ ├── vsynth1-mjpeg │ │ ├── vsynth1-mjpeg-422 │ │ ├── vsynth1-mjpeg-444 │ │ ├── vsynth1-mjpeg-huffman │ │ ├── vsynth1-mjpeg-trell │ │ ├── vsynth1-mjpeg-trell-huffman │ │ ├── vsynth1-mov-bgr24 │ │ ├── vsynth1-mov-bpp15 │ │ ├── vsynth1-mov-bpp16 │ │ ├── vsynth1-mpeg1 │ │ ├── vsynth1-mpeg1b │ │ ├── vsynth1-mpeg2 │ │ ├── vsynth1-mpeg2-422 │ │ ├── vsynth1-mpeg2-idct-int │ │ ├── vsynth1-mpeg2-ilace │ │ ├── vsynth1-mpeg2-ivlc-qprd │ │ ├── vsynth1-mpeg2-thread │ │ ├── vsynth1-mpeg2-thread-ivlc │ │ ├── vsynth1-mpeg4 │ │ ├── vsynth1-mpeg4-adap │ │ ├── vsynth1-mpeg4-adv │ │ ├── vsynth1-mpeg4-error │ │ ├── vsynth1-mpeg4-nr │ │ ├── vsynth1-mpeg4-nsse │ │ ├── vsynth1-mpeg4-qpel │ │ ├── vsynth1-mpeg4-qprd │ │ ├── vsynth1-mpeg4-rc │ │ ├── vsynth1-mpeg4-thread │ │ ├── vsynth1-mpng │ │ ├── vsynth1-msmpeg4 │ │ ├── vsynth1-msmpeg4v2 │ │ ├── vsynth1-msvideo1 │ │ ├── vsynth1-prores │ │ ├── vsynth1-prores_ks │ │ ├── vsynth1-qtrle │ │ ├── vsynth1-qtrlegray │ │ ├── vsynth1-r210 │ │ ├── vsynth1-rgb │ │ ├── vsynth1-roqvideo │ │ ├── vsynth1-rv10 │ │ ├── vsynth1-rv20 │ │ ├── vsynth1-snow │ │ ├── vsynth1-snow-hpel │ │ ├── vsynth1-snow-ll │ │ ├── vsynth1-svq1 │ │ ├── vsynth1-v210 │ │ ├── vsynth1-v210-10 │ │ ├── vsynth1-v308 │ │ ├── vsynth1-v408 │ │ ├── vsynth1-vc2-420p │ │ ├── vsynth1-vc2-420p10 │ │ ├── vsynth1-vc2-420p12 │ │ ├── vsynth1-vc2-422p │ │ ├── vsynth1-vc2-422p10 │ │ ├── vsynth1-vc2-422p12 │ │ ├── vsynth1-vc2-444p │ │ ├── vsynth1-vc2-444p10 │ │ ├── vsynth1-vc2-444p12 │ │ ├── vsynth1-wmv1 │ │ ├── vsynth1-wmv2 │ │ ├── vsynth1-xface │ │ ├── vsynth1-y41p │ │ ├── vsynth1-yuv │ │ ├── vsynth1-yuv4 │ │ ├── vsynth1-zlib │ │ ├── vsynth1-zmbv │ │ ├── vsynth2-amv │ │ ├── vsynth2-asv1 │ │ ├── vsynth2-asv2 │ │ ├── vsynth2-avui │ │ ├── vsynth2-bpp1 │ │ ├── vsynth2-bpp15 │ │ ├── vsynth2-cinepak │ │ ├── vsynth2-cljr │ │ ├── vsynth2-dnxhd-1080i │ │ ├── vsynth2-dnxhd-1080i-10bit │ │ ├── vsynth2-dnxhd-1080i-colr │ │ ├── vsynth2-dnxhd-2k-hr-hq │ │ ├── vsynth2-dnxhd-4k-hr-lb │ │ ├── vsynth2-dnxhd-720p │ │ ├── vsynth2-dnxhd-720p-10bit │ │ ├── vsynth2-dnxhd-720p-hr-lb │ │ ├── vsynth2-dnxhd-720p-rd │ │ ├── vsynth2-dnxhd-edge1-hr │ │ ├── vsynth2-dnxhd-edge2-hr │ │ ├── vsynth2-dnxhd-edge3-hr │ │ ├── vsynth2-dnxhd-hr-hq-mov │ │ ├── vsynth2-dnxhd-hr-lb-mov │ │ ├── vsynth2-dnxhd-hr-sq-mov │ │ ├── vsynth2-dnxhd-uhd-hr-sq │ │ ├── vsynth2-dv │ │ ├── vsynth2-dv-411 │ │ ├── vsynth2-dv-50 │ │ ├── vsynth2-ffv1 │ │ ├── vsynth2-ffv1-v0 │ │ ├── vsynth2-ffv1-v3-bgr0 │ │ ├── vsynth2-ffv1-v3-rgb48 │ │ ├── vsynth2-ffv1-v3-yuv420p │ │ ├── vsynth2-ffv1-v3-yuv422p10 │ │ ├── vsynth2-ffv1-v3-yuv444p16 │ │ ├── vsynth2-ffvhuff │ │ ├── vsynth2-ffvhuff420p12 │ │ ├── vsynth2-ffvhuff422p10left │ │ ├── vsynth2-ffvhuff444 │ │ ├── vsynth2-ffvhuff444p16 │ │ ├── vsynth2-flashsv │ │ ├── vsynth2-flashsv2 │ │ ├── vsynth2-flv │ │ ├── vsynth2-h261 │ │ ├── vsynth2-h261-trellis │ │ ├── vsynth2-h263 │ │ ├── vsynth2-h263-obmc │ │ ├── vsynth2-h263p │ │ ├── vsynth2-huffyuv │ │ ├── vsynth2-huffyuvbgr24 │ │ ├── vsynth2-huffyuvbgra │ │ ├── vsynth2-jpeg2000 │ │ ├── vsynth2-jpeg2000-97 │ │ ├── vsynth2-jpegls │ │ ├── vsynth2-ljpeg │ │ ├── vsynth2-mjpeg │ │ ├── vsynth2-mjpeg-422 │ │ ├── vsynth2-mjpeg-444 │ │ ├── vsynth2-mjpeg-huffman │ │ ├── vsynth2-mjpeg-trell │ │ ├── vsynth2-mjpeg-trell-huffman │ │ ├── vsynth2-mov-bgr24 │ │ ├── vsynth2-mov-bpp15 │ │ ├── vsynth2-mov-bpp16 │ │ ├── vsynth2-mpeg1 │ │ ├── vsynth2-mpeg1b │ │ ├── vsynth2-mpeg2 │ │ ├── vsynth2-mpeg2-422 │ │ ├── vsynth2-mpeg2-idct-int │ │ ├── vsynth2-mpeg2-ilace │ │ ├── vsynth2-mpeg2-ivlc-qprd │ │ ├── vsynth2-mpeg2-thread │ │ ├── vsynth2-mpeg2-thread-ivlc │ │ ├── vsynth2-mpeg4 │ │ ├── vsynth2-mpeg4-adap │ │ ├── vsynth2-mpeg4-adv │ │ ├── vsynth2-mpeg4-error │ │ ├── vsynth2-mpeg4-nr │ │ ├── vsynth2-mpeg4-nsse │ │ ├── vsynth2-mpeg4-qpel │ │ ├── vsynth2-mpeg4-qprd │ │ ├── vsynth2-mpeg4-rc │ │ ├── vsynth2-mpeg4-thread │ │ ├── vsynth2-mpng │ │ ├── vsynth2-msmpeg4 │ │ ├── vsynth2-msmpeg4v2 │ │ ├── vsynth2-msvideo1 │ │ ├── vsynth2-prores │ │ ├── vsynth2-prores_ks │ │ ├── vsynth2-qtrle │ │ ├── vsynth2-qtrlegray │ │ ├── vsynth2-r210 │ │ ├── vsynth2-rgb │ │ ├── vsynth2-roqvideo │ │ ├── vsynth2-rv10 │ │ ├── vsynth2-rv20 │ │ ├── vsynth2-snow │ │ ├── vsynth2-snow-hpel │ │ ├── vsynth2-snow-ll │ │ ├── vsynth2-svq1 │ │ ├── vsynth2-v210 │ │ ├── vsynth2-v210-10 │ │ ├── vsynth2-v308 │ │ ├── vsynth2-v408 │ │ ├── vsynth2-vc2-420p │ │ ├── vsynth2-vc2-420p10 │ │ ├── vsynth2-vc2-420p12 │ │ ├── vsynth2-vc2-422p │ │ ├── vsynth2-vc2-422p10 │ │ ├── vsynth2-vc2-422p12 │ │ ├── vsynth2-vc2-444p │ │ ├── vsynth2-vc2-444p10 │ │ ├── vsynth2-vc2-444p12 │ │ ├── vsynth2-wmv1 │ │ ├── vsynth2-wmv2 │ │ ├── vsynth2-xface │ │ ├── vsynth2-y41p │ │ ├── vsynth2-yuv │ │ ├── vsynth2-yuv4 │ │ ├── vsynth2-zlib │ │ ├── vsynth3-amv │ │ ├── vsynth3-asv1 │ │ ├── vsynth3-asv2 │ │ ├── vsynth3-bpp1 │ │ ├── vsynth3-bpp15 │ │ ├── vsynth3-cljr │ │ ├── vsynth3-dnxhd-1080i-10bit │ │ ├── vsynth3-dnxhd-1080i-colr │ │ ├── vsynth3-dnxhd-2k-hr-hq │ │ ├── vsynth3-dnxhd-4k-hr-lb │ │ ├── vsynth3-dnxhd-720p-hr-lb │ │ ├── vsynth3-dnxhd-edge1-hr │ │ ├── vsynth3-dnxhd-edge2-hr │ │ ├── vsynth3-dnxhd-edge3-hr │ │ ├── vsynth3-dnxhd-hr-hq-mov │ │ ├── vsynth3-dnxhd-hr-lb-mov │ │ ├── vsynth3-dnxhd-hr-sq-mov │ │ ├── vsynth3-dnxhd-uhd-hr-sq │ │ ├── vsynth3-ffv1 │ │ ├── vsynth3-ffv1-v0 │ │ ├── vsynth3-ffv1-v3-bgr0 │ │ ├── vsynth3-ffv1-v3-rgb48 │ │ ├── vsynth3-ffv1-v3-yuv420p │ │ ├── vsynth3-ffv1-v3-yuv422p10 │ │ ├── vsynth3-ffv1-v3-yuv444p16 │ │ ├── vsynth3-ffvhuff │ │ ├── vsynth3-ffvhuff420p12 │ │ ├── vsynth3-ffvhuff422p10left │ │ ├── vsynth3-ffvhuff444 │ │ ├── vsynth3-ffvhuff444p16 │ │ ├── vsynth3-flashsv │ │ ├── vsynth3-flashsv2 │ │ ├── vsynth3-flv │ │ ├── vsynth3-huffyuv │ │ ├── vsynth3-huffyuvbgr24 │ │ ├── vsynth3-huffyuvbgra │ │ ├── vsynth3-jpeg2000 │ │ ├── vsynth3-jpeg2000-97 │ │ ├── vsynth3-jpegls │ │ ├── vsynth3-ljpeg │ │ ├── vsynth3-mjpeg │ │ ├── vsynth3-mjpeg-422 │ │ ├── vsynth3-mjpeg-444 │ │ ├── vsynth3-mjpeg-huffman │ │ ├── vsynth3-mjpeg-trell │ │ ├── vsynth3-mjpeg-trell-huffman │ │ ├── vsynth3-mov-bgr24 │ │ ├── vsynth3-mov-bpp15 │ │ ├── vsynth3-mov-bpp16 │ │ ├── vsynth3-mpeg1 │ │ ├── vsynth3-mpeg1b │ │ ├── vsynth3-mpeg2 │ │ ├── vsynth3-mpeg2-422 │ │ ├── vsynth3-mpeg2-idct-int │ │ ├── vsynth3-mpeg2-ilace │ │ ├── vsynth3-mpeg2-ivlc-qprd │ │ ├── vsynth3-mpeg2-thread │ │ ├── vsynth3-mpeg2-thread-ivlc │ │ ├── vsynth3-mpeg4 │ │ ├── vsynth3-mpeg4-adap │ │ ├── vsynth3-mpeg4-adv │ │ ├── vsynth3-mpeg4-error │ │ ├── vsynth3-mpeg4-nr │ │ ├── vsynth3-mpeg4-nsse │ │ ├── vsynth3-mpeg4-qpel │ │ ├── vsynth3-mpeg4-qprd │ │ ├── vsynth3-mpeg4-rc │ │ ├── vsynth3-mpeg4-thread │ │ ├── vsynth3-mpng │ │ ├── vsynth3-msmpeg4 │ │ ├── vsynth3-msmpeg4v2 │ │ ├── vsynth3-prores │ │ ├── vsynth3-prores_ks │ │ ├── vsynth3-qtrle │ │ ├── vsynth3-r210 │ │ ├── vsynth3-rgb │ │ ├── vsynth3-svq1 │ │ ├── vsynth3-v210 │ │ ├── vsynth3-v210-10 │ │ ├── vsynth3-v308 │ │ ├── vsynth3-v408 │ │ ├── vsynth3-wmv1 │ │ ├── vsynth3-wmv2 │ │ ├── vsynth3-xface │ │ ├── vsynth3-yuv │ │ ├── vsynth3-yuv4 │ │ ├── vsynth3-zlib │ │ ├── vsynth_lena-amv │ │ ├── vsynth_lena-asv1 │ │ ├── vsynth_lena-asv2 │ │ ├── vsynth_lena-avui │ │ ├── vsynth_lena-bpp1 │ │ ├── vsynth_lena-bpp15 │ │ ├── vsynth_lena-cinepak │ │ ├── vsynth_lena-cljr │ │ ├── vsynth_lena-dnxhd-1080i │ │ ├── vsynth_lena-dnxhd-1080i-10bit │ │ ├── vsynth_lena-dnxhd-1080i-colr │ │ ├── vsynth_lena-dnxhd-2k-hr-hq │ │ ├── vsynth_lena-dnxhd-4k-hr-lb │ │ ├── vsynth_lena-dnxhd-720p │ │ ├── vsynth_lena-dnxhd-720p-10bit │ │ ├── vsynth_lena-dnxhd-720p-hr-lb │ │ ├── vsynth_lena-dnxhd-720p-rd │ │ ├── vsynth_lena-dnxhd-edge1-hr │ │ ├── vsynth_lena-dnxhd-edge2-hr │ │ ├── vsynth_lena-dnxhd-edge3-hr │ │ ├── vsynth_lena-dnxhd-hr-hq-mov │ │ ├── vsynth_lena-dnxhd-hr-lb-mov │ │ ├── vsynth_lena-dnxhd-hr-sq-mov │ │ ├── vsynth_lena-dnxhd-uhd-hr-sq │ │ ├── vsynth_lena-dnxhd_1080i │ │ ├── vsynth_lena-dv │ │ ├── vsynth_lena-dv-411 │ │ ├── vsynth_lena-dv-50 │ │ ├── vsynth_lena-dv_411 │ │ ├── vsynth_lena-ffv1 │ │ ├── vsynth_lena-ffv1-v0 │ │ ├── vsynth_lena-ffv1-v3-bgr0 │ │ ├── vsynth_lena-ffv1-v3-rgb48 │ │ ├── vsynth_lena-ffv1-v3-yuv420p │ │ ├── vsynth_lena-ffv1-v3-yuv422p10 │ │ ├── vsynth_lena-ffv1-v3-yuv444p16 │ │ ├── vsynth_lena-ffvhuff │ │ ├── vsynth_lena-ffvhuff420p12 │ │ ├── vsynth_lena-ffvhuff422p10left │ │ ├── vsynth_lena-ffvhuff444 │ │ ├── vsynth_lena-ffvhuff444p16 │ │ ├── vsynth_lena-flashsv │ │ ├── vsynth_lena-flashsv2 │ │ ├── vsynth_lena-flv │ │ ├── vsynth_lena-h261 │ │ ├── vsynth_lena-h261-trellis │ │ ├── vsynth_lena-h263 │ │ ├── vsynth_lena-h263-obmc │ │ ├── vsynth_lena-h263p │ │ ├── vsynth_lena-huffyuv │ │ ├── vsynth_lena-huffyuvbgr24 │ │ ├── vsynth_lena-huffyuvbgra │ │ ├── vsynth_lena-jpeg2000 │ │ ├── vsynth_lena-jpeg2000-97 │ │ ├── vsynth_lena-jpegls │ │ ├── vsynth_lena-ljpeg │ │ ├── vsynth_lena-mjpeg │ │ ├── vsynth_lena-mjpeg-422 │ │ ├── vsynth_lena-mjpeg-444 │ │ ├── vsynth_lena-mjpeg-huffman │ │ ├── vsynth_lena-mjpeg-trell │ │ ├── vsynth_lena-mjpeg-trell-huffman │ │ ├── vsynth_lena-mov-bgr24 │ │ ├── vsynth_lena-mov-bpp15 │ │ ├── vsynth_lena-mov-bpp16 │ │ ├── vsynth_lena-mpeg1 │ │ ├── vsynth_lena-mpeg1b │ │ ├── vsynth_lena-mpeg2 │ │ ├── vsynth_lena-mpeg2-422 │ │ ├── vsynth_lena-mpeg2-idct-int │ │ ├── vsynth_lena-mpeg2-ilace │ │ ├── vsynth_lena-mpeg2-ivlc-qprd │ │ ├── vsynth_lena-mpeg2-thread │ │ ├── vsynth_lena-mpeg2-thread-ivlc │ │ ├── vsynth_lena-mpeg4 │ │ ├── vsynth_lena-mpeg4-adap │ │ ├── vsynth_lena-mpeg4-adv │ │ ├── vsynth_lena-mpeg4-error │ │ ├── vsynth_lena-mpeg4-nr │ │ ├── vsynth_lena-mpeg4-nsse │ │ ├── vsynth_lena-mpeg4-qpel │ │ ├── vsynth_lena-mpeg4-qprd │ │ ├── vsynth_lena-mpeg4-rc │ │ ├── vsynth_lena-mpeg4-thread │ │ ├── vsynth_lena-mpng │ │ ├── vsynth_lena-msmpeg4 │ │ ├── vsynth_lena-msmpeg4v2 │ │ ├── vsynth_lena-msvideo1 │ │ ├── vsynth_lena-prores │ │ ├── vsynth_lena-prores_ks │ │ ├── vsynth_lena-qtrle │ │ ├── vsynth_lena-qtrlegray │ │ ├── vsynth_lena-r210 │ │ ├── vsynth_lena-rgb │ │ ├── vsynth_lena-roqvideo │ │ ├── vsynth_lena-rv10 │ │ ├── vsynth_lena-rv20 │ │ ├── vsynth_lena-snow │ │ ├── vsynth_lena-snow-hpel │ │ ├── vsynth_lena-snow-ll │ │ ├── vsynth_lena-svq1 │ │ ├── vsynth_lena-v210 │ │ ├── vsynth_lena-v210-10 │ │ ├── vsynth_lena-v308 │ │ ├── vsynth_lena-v408 │ │ ├── vsynth_lena-vc2-420p │ │ ├── vsynth_lena-vc2-420p10 │ │ ├── vsynth_lena-vc2-420p12 │ │ ├── vsynth_lena-vc2-422p │ │ ├── vsynth_lena-vc2-422p10 │ │ ├── vsynth_lena-vc2-422p12 │ │ ├── vsynth_lena-vc2-444p │ │ ├── vsynth_lena-vc2-444p10 │ │ ├── vsynth_lena-vc2-444p12 │ │ ├── vsynth_lena-wmv1 │ │ ├── vsynth_lena-wmv2 │ │ ├── vsynth_lena-xface │ │ ├── vsynth_lena-y41p │ │ ├── vsynth_lena-yuv │ │ ├── vsynth_lena-yuv4 │ │ ├── vsynth_lena-zlib │ │ └── vsynth_lena-zmbv │ ├── vsynth1 │ │ ├── cljr │ │ └── yuv │ └── vsynth_lena │ │ ├── cljr │ │ ├── huffyuv │ │ └── yuv ├── refcmp-metadata.awk ├── reference.pnm ├── regression-funcs.sh ├── rotozoom.c ├── simple1.ffconcat ├── simple2.ffconcat ├── test.ffmeta ├── tiny_psnr.c ├── tiny_ssim.c ├── utils.c └── videogen.c └── tools ├── .gitignore ├── Makefile ├── aviocat.c ├── bisect-create ├── bookmarklets.html ├── cl2c ├── clean-diff ├── coverity.c ├── crypto_bench.c ├── cws2fws.c ├── dvd2concat ├── enum_options.c ├── ffescape.c ├── ffeval.c ├── ffhash.c ├── fourcc2pixfmt.c ├── gen-rc ├── graph2dot.c ├── ismindex.c ├── libav-merge-next-commit ├── loudnorm.rb ├── make_chlayout_test ├── missing_codec_desc ├── murge ├── normalize.py ├── patcheck ├── pktdumper.c ├── plotframes ├── probetest.c ├── qt-faststart.c ├── seek_print.c ├── sidxindex.c ├── sofa2wavs.c ├── target_dec_fuzzer.c ├── trasher.c ├── uncoded_frame.c ├── unwrap-diff ├── yuvcmp.c ├── zmqsend.c └── zmqshell.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pnm -diff -text 2 | tests/ref/fate/sub-scc eol=crlf 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/COPYING.GPLv2 -------------------------------------------------------------------------------- /COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/COPYING.GPLv3 -------------------------------------------------------------------------------- /COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /COPYING.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/COPYING.LGPLv3 -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/CREDITS -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/Changelog -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE: -------------------------------------------------------------------------------- 1 | 3.4.git 2 | -------------------------------------------------------------------------------- /compat/aix/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/aix/math.h -------------------------------------------------------------------------------- /compat/cuda/ptx2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/cuda/ptx2c.sh -------------------------------------------------------------------------------- /compat/float/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/float/float.h -------------------------------------------------------------------------------- /compat/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/getopt.c -------------------------------------------------------------------------------- /compat/os2threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/os2threads.h -------------------------------------------------------------------------------- /compat/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/strtod.c -------------------------------------------------------------------------------- /compat/va_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/va_copy.h -------------------------------------------------------------------------------- /compat/w32dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/w32dlfcn.h -------------------------------------------------------------------------------- /compat/w32pthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/compat/w32pthreads.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/configure -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/APIchanges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/APIchanges -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/authors.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/authors.texi -------------------------------------------------------------------------------- /doc/build_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/build_system.txt -------------------------------------------------------------------------------- /doc/codecs.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/codecs.texi -------------------------------------------------------------------------------- /doc/decoders.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/decoders.texi -------------------------------------------------------------------------------- /doc/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/default.css -------------------------------------------------------------------------------- /doc/demuxers.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/demuxers.texi -------------------------------------------------------------------------------- /doc/developer.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/developer.texi -------------------------------------------------------------------------------- /doc/devices.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/devices.texi -------------------------------------------------------------------------------- /doc/doxy-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/doxy-wrapper.sh -------------------------------------------------------------------------------- /doc/doxy/.gitignore: -------------------------------------------------------------------------------- 1 | /html/ 2 | -------------------------------------------------------------------------------- /doc/encoders.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/encoders.texi -------------------------------------------------------------------------------- /doc/errno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/errno.txt -------------------------------------------------------------------------------- /doc/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/examples/README -------------------------------------------------------------------------------- /doc/faq.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/faq.texi -------------------------------------------------------------------------------- /doc/fate.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/fate.texi -------------------------------------------------------------------------------- /doc/ffmpeg.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/ffmpeg.texi -------------------------------------------------------------------------------- /doc/ffmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/ffmpeg.txt -------------------------------------------------------------------------------- /doc/ffplay.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/ffplay.texi -------------------------------------------------------------------------------- /doc/ffprobe.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/ffprobe.texi -------------------------------------------------------------------------------- /doc/ffprobe.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/ffprobe.xsd -------------------------------------------------------------------------------- /doc/filters.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/filters.texi -------------------------------------------------------------------------------- /doc/formats.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/formats.texi -------------------------------------------------------------------------------- /doc/general.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/general.texi -------------------------------------------------------------------------------- /doc/git-howto.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/git-howto.texi -------------------------------------------------------------------------------- /doc/indevs.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/indevs.texi -------------------------------------------------------------------------------- /doc/lexicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/lexicon -------------------------------------------------------------------------------- /doc/libav-merge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/libav-merge.txt -------------------------------------------------------------------------------- /doc/libavcodec.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/libavcodec.texi -------------------------------------------------------------------------------- /doc/libavdevice.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/libavdevice.texi -------------------------------------------------------------------------------- /doc/libavfilter.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/libavfilter.texi -------------------------------------------------------------------------------- /doc/libavformat.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/libavformat.texi -------------------------------------------------------------------------------- /doc/libavutil.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/libavutil.texi -------------------------------------------------------------------------------- /doc/libswscale.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/libswscale.texi -------------------------------------------------------------------------------- /doc/metadata.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/metadata.texi -------------------------------------------------------------------------------- /doc/mips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/mips.txt -------------------------------------------------------------------------------- /doc/muxers.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/muxers.texi -------------------------------------------------------------------------------- /doc/nut.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/nut.texi -------------------------------------------------------------------------------- /doc/optimization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/optimization.txt -------------------------------------------------------------------------------- /doc/outdevs.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/outdevs.texi -------------------------------------------------------------------------------- /doc/patchwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/patchwork -------------------------------------------------------------------------------- /doc/platform.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/platform.texi -------------------------------------------------------------------------------- /doc/print_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/print_options.c -------------------------------------------------------------------------------- /doc/protocols.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/protocols.texi -------------------------------------------------------------------------------- /doc/resampler.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/resampler.texi -------------------------------------------------------------------------------- /doc/scaler.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/scaler.texi -------------------------------------------------------------------------------- /doc/snow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/snow.txt -------------------------------------------------------------------------------- /doc/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/style.min.css -------------------------------------------------------------------------------- /doc/swresample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/swresample.txt -------------------------------------------------------------------------------- /doc/swscale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/swscale.txt -------------------------------------------------------------------------------- /doc/t2h.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/t2h.init -------------------------------------------------------------------------------- /doc/t2h.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/t2h.pm -------------------------------------------------------------------------------- /doc/tablegen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/tablegen.txt -------------------------------------------------------------------------------- /doc/texi2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/texi2pod.pl -------------------------------------------------------------------------------- /doc/texidep.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/texidep.pl -------------------------------------------------------------------------------- /doc/undefined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/undefined.txt -------------------------------------------------------------------------------- /doc/utils.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/doc/utils.texi -------------------------------------------------------------------------------- /ffbuild/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/ffbuild/.gitignore -------------------------------------------------------------------------------- /ffbuild/arch.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/ffbuild/arch.mak -------------------------------------------------------------------------------- /ffbuild/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/ffbuild/common.mak -------------------------------------------------------------------------------- /ffbuild/library.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/ffbuild/library.mak -------------------------------------------------------------------------------- /ffbuild/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/ffbuild/version.sh -------------------------------------------------------------------------------- /fftools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/Makefile -------------------------------------------------------------------------------- /fftools/cmdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/cmdutils.c -------------------------------------------------------------------------------- /fftools/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/cmdutils.h -------------------------------------------------------------------------------- /fftools/ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/ffmpeg.c -------------------------------------------------------------------------------- /fftools/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/ffmpeg.h -------------------------------------------------------------------------------- /fftools/ffmpeg_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/ffmpeg_hw.c -------------------------------------------------------------------------------- /fftools/ffmpeg_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/ffmpeg_opt.c -------------------------------------------------------------------------------- /fftools/ffmpeg_qsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/ffmpeg_qsv.c -------------------------------------------------------------------------------- /fftools/ffplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/ffplay.c -------------------------------------------------------------------------------- /fftools/ffprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/fftools/ffprobe.c -------------------------------------------------------------------------------- /libavcodec/012v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/012v.c -------------------------------------------------------------------------------- /libavcodec/4xm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/4xm.c -------------------------------------------------------------------------------- /libavcodec/8bps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/8bps.c -------------------------------------------------------------------------------- /libavcodec/8svx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/8svx.c -------------------------------------------------------------------------------- /libavcodec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/Makefile -------------------------------------------------------------------------------- /libavcodec/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aac.h -------------------------------------------------------------------------------- /libavcodec/aacdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacdec.c -------------------------------------------------------------------------------- /libavcodec/aacenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacenc.c -------------------------------------------------------------------------------- /libavcodec/aacenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacenc.h -------------------------------------------------------------------------------- /libavcodec/aacps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacps.c -------------------------------------------------------------------------------- /libavcodec/aacps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacps.h -------------------------------------------------------------------------------- /libavcodec/aacpsy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacpsy.c -------------------------------------------------------------------------------- /libavcodec/aacsbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacsbr.c -------------------------------------------------------------------------------- /libavcodec/aacsbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aacsbr.h -------------------------------------------------------------------------------- /libavcodec/aactab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aactab.c -------------------------------------------------------------------------------- /libavcodec/aactab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aactab.h -------------------------------------------------------------------------------- /libavcodec/aasc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aasc.c -------------------------------------------------------------------------------- /libavcodec/ac3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3.c -------------------------------------------------------------------------------- /libavcodec/ac3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3.h -------------------------------------------------------------------------------- /libavcodec/ac3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3dec.c -------------------------------------------------------------------------------- /libavcodec/ac3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3dec.h -------------------------------------------------------------------------------- /libavcodec/ac3dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3dsp.c -------------------------------------------------------------------------------- /libavcodec/ac3dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3dsp.h -------------------------------------------------------------------------------- /libavcodec/ac3enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3enc.c -------------------------------------------------------------------------------- /libavcodec/ac3enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3enc.h -------------------------------------------------------------------------------- /libavcodec/ac3tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3tab.c -------------------------------------------------------------------------------- /libavcodec/ac3tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ac3tab.h -------------------------------------------------------------------------------- /libavcodec/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/adpcm.c -------------------------------------------------------------------------------- /libavcodec/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/adpcm.h -------------------------------------------------------------------------------- /libavcodec/adx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/adx.c -------------------------------------------------------------------------------- /libavcodec/adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/adx.h -------------------------------------------------------------------------------- /libavcodec/adxdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/adxdec.c -------------------------------------------------------------------------------- /libavcodec/adxenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/adxenc.c -------------------------------------------------------------------------------- /libavcodec/aic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aic.c -------------------------------------------------------------------------------- /libavcodec/alac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/alac.c -------------------------------------------------------------------------------- /libavcodec/alacdsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/alacdsp.c -------------------------------------------------------------------------------- /libavcodec/alacdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/alacdsp.h -------------------------------------------------------------------------------- /libavcodec/alacenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/alacenc.c -------------------------------------------------------------------------------- /libavcodec/alsdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/alsdec.c -------------------------------------------------------------------------------- /libavcodec/amfenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/amfenc.c -------------------------------------------------------------------------------- /libavcodec/amfenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/amfenc.h -------------------------------------------------------------------------------- /libavcodec/amr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/amr.h -------------------------------------------------------------------------------- /libavcodec/anm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/anm.c -------------------------------------------------------------------------------- /libavcodec/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ansi.c -------------------------------------------------------------------------------- /libavcodec/apedec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/apedec.c -------------------------------------------------------------------------------- /libavcodec/apng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/apng.h -------------------------------------------------------------------------------- /libavcodec/aptx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aptx.c -------------------------------------------------------------------------------- /libavcodec/arm/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/arm/aac.h -------------------------------------------------------------------------------- /libavcodec/arm/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/arm/dca.h -------------------------------------------------------------------------------- /libavcodec/arm/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/arm/vp8.h -------------------------------------------------------------------------------- /libavcodec/ass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ass.c -------------------------------------------------------------------------------- /libavcodec/ass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ass.h -------------------------------------------------------------------------------- /libavcodec/assdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/assdec.c -------------------------------------------------------------------------------- /libavcodec/assenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/assenc.c -------------------------------------------------------------------------------- /libavcodec/asv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/asv.c -------------------------------------------------------------------------------- /libavcodec/asv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/asv.h -------------------------------------------------------------------------------- /libavcodec/asvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/asvdec.c -------------------------------------------------------------------------------- /libavcodec/asvenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/asvenc.c -------------------------------------------------------------------------------- /libavcodec/atrac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/atrac.c -------------------------------------------------------------------------------- /libavcodec/atrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/atrac.h -------------------------------------------------------------------------------- /libavcodec/atrac1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/atrac1.c -------------------------------------------------------------------------------- /libavcodec/atrac3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/atrac3.c -------------------------------------------------------------------------------- /libavcodec/aura.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/aura.c -------------------------------------------------------------------------------- /libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avcodec.h -------------------------------------------------------------------------------- /libavcodec/avdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avdct.c -------------------------------------------------------------------------------- /libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avdct.h -------------------------------------------------------------------------------- /libavcodec/avfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avfft.c -------------------------------------------------------------------------------- /libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avfft.h -------------------------------------------------------------------------------- /libavcodec/avrndec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avrndec.c -------------------------------------------------------------------------------- /libavcodec/avs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avs.c -------------------------------------------------------------------------------- /libavcodec/avuidec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avuidec.c -------------------------------------------------------------------------------- /libavcodec/avuienc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/avuienc.c -------------------------------------------------------------------------------- /libavcodec/bfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bfi.c -------------------------------------------------------------------------------- /libavcodec/bgmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bgmc.c -------------------------------------------------------------------------------- /libavcodec/bgmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bgmc.h -------------------------------------------------------------------------------- /libavcodec/bink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bink.c -------------------------------------------------------------------------------- /libavcodec/binkdsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/binkdsp.c -------------------------------------------------------------------------------- /libavcodec/binkdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/binkdsp.h -------------------------------------------------------------------------------- /libavcodec/bintext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bintext.c -------------------------------------------------------------------------------- /libavcodec/bintext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bintext.h -------------------------------------------------------------------------------- /libavcodec/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bmp.c -------------------------------------------------------------------------------- /libavcodec/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bmp.h -------------------------------------------------------------------------------- /libavcodec/bmpenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bmpenc.c -------------------------------------------------------------------------------- /libavcodec/bsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bsf.c -------------------------------------------------------------------------------- /libavcodec/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/bsf.h -------------------------------------------------------------------------------- /libavcodec/c93.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/c93.c -------------------------------------------------------------------------------- /libavcodec/cabac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cabac.c -------------------------------------------------------------------------------- /libavcodec/cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cabac.h -------------------------------------------------------------------------------- /libavcodec/canopus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/canopus.c -------------------------------------------------------------------------------- /libavcodec/canopus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/canopus.h -------------------------------------------------------------------------------- /libavcodec/cavs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cavs.c -------------------------------------------------------------------------------- /libavcodec/cavs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cavs.h -------------------------------------------------------------------------------- /libavcodec/cavsdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cavsdec.c -------------------------------------------------------------------------------- /libavcodec/cavsdsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cavsdsp.c -------------------------------------------------------------------------------- /libavcodec/cavsdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cavsdsp.h -------------------------------------------------------------------------------- /libavcodec/cbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cbs.c -------------------------------------------------------------------------------- /libavcodec/cbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cbs.h -------------------------------------------------------------------------------- /libavcodec/cdxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cdxl.c -------------------------------------------------------------------------------- /libavcodec/cfhd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cfhd.c -------------------------------------------------------------------------------- /libavcodec/cfhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cfhd.h -------------------------------------------------------------------------------- /libavcodec/cinepak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cinepak.c -------------------------------------------------------------------------------- /libavcodec/cljrdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cljrdec.c -------------------------------------------------------------------------------- /libavcodec/cljrenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cljrenc.c -------------------------------------------------------------------------------- /libavcodec/cllc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cllc.c -------------------------------------------------------------------------------- /libavcodec/cngdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cngdec.c -------------------------------------------------------------------------------- /libavcodec/cook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cook.c -------------------------------------------------------------------------------- /libavcodec/cpia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cpia.c -------------------------------------------------------------------------------- /libavcodec/cscd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cscd.c -------------------------------------------------------------------------------- /libavcodec/cyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/cyuv.c -------------------------------------------------------------------------------- /libavcodec/dca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dca.c -------------------------------------------------------------------------------- /libavcodec/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dca.h -------------------------------------------------------------------------------- /libavcodec/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dct.c -------------------------------------------------------------------------------- /libavcodec/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dct.h -------------------------------------------------------------------------------- /libavcodec/dct32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dct32.h -------------------------------------------------------------------------------- /libavcodec/dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dds.c -------------------------------------------------------------------------------- /libavcodec/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dfa.c -------------------------------------------------------------------------------- /libavcodec/dirac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dirac.c -------------------------------------------------------------------------------- /libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dirac.h -------------------------------------------------------------------------------- /libavcodec/dpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dpcm.c -------------------------------------------------------------------------------- /libavcodec/dpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dpx.c -------------------------------------------------------------------------------- /libavcodec/dsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dsd.c -------------------------------------------------------------------------------- /libavcodec/dsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dsd.h -------------------------------------------------------------------------------- /libavcodec/dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dv.c -------------------------------------------------------------------------------- /libavcodec/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dv.h -------------------------------------------------------------------------------- /libavcodec/dvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dvdec.c -------------------------------------------------------------------------------- /libavcodec/dvenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dvenc.c -------------------------------------------------------------------------------- /libavcodec/dxa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dxa.c -------------------------------------------------------------------------------- /libavcodec/dxv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dxv.c -------------------------------------------------------------------------------- /libavcodec/dxva2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dxva2.c -------------------------------------------------------------------------------- /libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/dxva2.h -------------------------------------------------------------------------------- /libavcodec/eacmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/eacmv.c -------------------------------------------------------------------------------- /libavcodec/eamad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/eamad.c -------------------------------------------------------------------------------- /libavcodec/eatgq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/eatgq.c -------------------------------------------------------------------------------- /libavcodec/eatgv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/eatgv.c -------------------------------------------------------------------------------- /libavcodec/eatqi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/eatqi.c -------------------------------------------------------------------------------- /libavcodec/elbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/elbg.c -------------------------------------------------------------------------------- /libavcodec/elbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/elbg.h -------------------------------------------------------------------------------- /libavcodec/exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/exif.c -------------------------------------------------------------------------------- /libavcodec/exif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/exif.h -------------------------------------------------------------------------------- /libavcodec/exr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/exr.c -------------------------------------------------------------------------------- /libavcodec/ffjni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ffjni.c -------------------------------------------------------------------------------- /libavcodec/ffjni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ffjni.h -------------------------------------------------------------------------------- /libavcodec/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/fft.h -------------------------------------------------------------------------------- /libavcodec/ffv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ffv1.c -------------------------------------------------------------------------------- /libavcodec/ffv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ffv1.h -------------------------------------------------------------------------------- /libavcodec/fic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/fic.c -------------------------------------------------------------------------------- /libavcodec/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /libavcodec/fits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/fits.c -------------------------------------------------------------------------------- /libavcodec/fits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/fits.h -------------------------------------------------------------------------------- /libavcodec/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/flac.c -------------------------------------------------------------------------------- /libavcodec/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/flac.h -------------------------------------------------------------------------------- /libavcodec/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/flv.h -------------------------------------------------------------------------------- /libavcodec/fmvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/fmvc.c -------------------------------------------------------------------------------- /libavcodec/fraps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/fraps.c -------------------------------------------------------------------------------- /libavcodec/frwu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/frwu.c -------------------------------------------------------------------------------- /libavcodec/g722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/g722.c -------------------------------------------------------------------------------- /libavcodec/g722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/g722.h -------------------------------------------------------------------------------- /libavcodec/g726.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/g726.c -------------------------------------------------------------------------------- /libavcodec/g729.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/g729.h -------------------------------------------------------------------------------- /libavcodec/gdv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/gdv.c -------------------------------------------------------------------------------- /libavcodec/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/gif.c -------------------------------------------------------------------------------- /libavcodec/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/gif.h -------------------------------------------------------------------------------- /libavcodec/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/gsm.h -------------------------------------------------------------------------------- /libavcodec/h261.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/h261.c -------------------------------------------------------------------------------- /libavcodec/h261.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/h261.h -------------------------------------------------------------------------------- /libavcodec/h263.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/h263.c -------------------------------------------------------------------------------- /libavcodec/h263.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/h263.h -------------------------------------------------------------------------------- /libavcodec/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/h264.h -------------------------------------------------------------------------------- /libavcodec/hap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/hap.c -------------------------------------------------------------------------------- /libavcodec/hap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/hap.h -------------------------------------------------------------------------------- /libavcodec/hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/hevc.h -------------------------------------------------------------------------------- /libavcodec/hqx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/hqx.c -------------------------------------------------------------------------------- /libavcodec/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/hqx.h -------------------------------------------------------------------------------- /libavcodec/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/iff.c -------------------------------------------------------------------------------- /libavcodec/imc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/imc.c -------------------------------------------------------------------------------- /libavcodec/ivi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ivi.c -------------------------------------------------------------------------------- /libavcodec/ivi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ivi.h -------------------------------------------------------------------------------- /libavcodec/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/jni.c -------------------------------------------------------------------------------- /libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/jni.h -------------------------------------------------------------------------------- /libavcodec/jvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/jvdec.c -------------------------------------------------------------------------------- /libavcodec/kmvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/kmvc.c -------------------------------------------------------------------------------- /libavcodec/lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lcl.h -------------------------------------------------------------------------------- /libavcodec/loco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/loco.c -------------------------------------------------------------------------------- /libavcodec/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /libavcodec/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lpc.c -------------------------------------------------------------------------------- /libavcodec/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lpc.h -------------------------------------------------------------------------------- /libavcodec/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lsp.c -------------------------------------------------------------------------------- /libavcodec/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lsp.h -------------------------------------------------------------------------------- /libavcodec/lzf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lzf.c -------------------------------------------------------------------------------- /libavcodec/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lzf.h -------------------------------------------------------------------------------- /libavcodec/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lzw.c -------------------------------------------------------------------------------- /libavcodec/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/lzw.h -------------------------------------------------------------------------------- /libavcodec/m101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/m101.c -------------------------------------------------------------------------------- /libavcodec/mace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mace.c -------------------------------------------------------------------------------- /libavcodec/mdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mdec.c -------------------------------------------------------------------------------- /libavcodec/mimic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mimic.c -------------------------------------------------------------------------------- /libavcodec/mjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mjpeg.h -------------------------------------------------------------------------------- /libavcodec/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mlp.c -------------------------------------------------------------------------------- /libavcodec/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mlp.h -------------------------------------------------------------------------------- /libavcodec/mlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mlz.c -------------------------------------------------------------------------------- /libavcodec/mlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mlz.h -------------------------------------------------------------------------------- /libavcodec/mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mpc.c -------------------------------------------------------------------------------- /libavcodec/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mpc.h -------------------------------------------------------------------------------- /libavcodec/mpc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mpc7.c -------------------------------------------------------------------------------- /libavcodec/mpc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mpc8.c -------------------------------------------------------------------------------- /libavcodec/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mqc.c -------------------------------------------------------------------------------- /libavcodec/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mqc.h -------------------------------------------------------------------------------- /libavcodec/mscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mscc.c -------------------------------------------------------------------------------- /libavcodec/msrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/msrle.c -------------------------------------------------------------------------------- /libavcodec/mss1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mss1.c -------------------------------------------------------------------------------- /libavcodec/mss12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mss12.c -------------------------------------------------------------------------------- /libavcodec/mss12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mss12.h -------------------------------------------------------------------------------- /libavcodec/mss2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mss2.c -------------------------------------------------------------------------------- /libavcodec/mss3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mss3.c -------------------------------------------------------------------------------- /libavcodec/mss4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/mss4.c -------------------------------------------------------------------------------- /libavcodec/nuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/nuv.c -------------------------------------------------------------------------------- /libavcodec/nvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/nvdec.c -------------------------------------------------------------------------------- /libavcodec/nvdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/nvdec.h -------------------------------------------------------------------------------- /libavcodec/nvenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/nvenc.c -------------------------------------------------------------------------------- /libavcodec/nvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/nvenc.h -------------------------------------------------------------------------------- /libavcodec/omx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/omx.c -------------------------------------------------------------------------------- /libavcodec/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/opus.c -------------------------------------------------------------------------------- /libavcodec/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/opus.h -------------------------------------------------------------------------------- /libavcodec/paf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/paf.h -------------------------------------------------------------------------------- /libavcodec/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/pcm.c -------------------------------------------------------------------------------- /libavcodec/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/pcx.c -------------------------------------------------------------------------------- /libavcodec/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/png.c -------------------------------------------------------------------------------- /libavcodec/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/png.h -------------------------------------------------------------------------------- /libavcodec/pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/pnm.c -------------------------------------------------------------------------------- /libavcodec/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/pnm.h -------------------------------------------------------------------------------- /libavcodec/psd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/psd.c -------------------------------------------------------------------------------- /libavcodec/ptx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ptx.c -------------------------------------------------------------------------------- /libavcodec/qdm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/qdm2.c -------------------------------------------------------------------------------- /libavcodec/qdmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/qdmc.c -------------------------------------------------------------------------------- /libavcodec/qdrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/qdrw.c -------------------------------------------------------------------------------- /libavcodec/qpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/qpeg.c -------------------------------------------------------------------------------- /libavcodec/qsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/qsv.c -------------------------------------------------------------------------------- /libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/qsv.h -------------------------------------------------------------------------------- /libavcodec/qtrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/qtrle.c -------------------------------------------------------------------------------- /libavcodec/ra144.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ra144.c -------------------------------------------------------------------------------- /libavcodec/ra144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ra144.h -------------------------------------------------------------------------------- /libavcodec/ra288.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ra288.c -------------------------------------------------------------------------------- /libavcodec/ra288.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ra288.h -------------------------------------------------------------------------------- /libavcodec/ralf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ralf.c -------------------------------------------------------------------------------- /libavcodec/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/raw.c -------------------------------------------------------------------------------- /libavcodec/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/raw.h -------------------------------------------------------------------------------- /libavcodec/rdft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rdft.c -------------------------------------------------------------------------------- /libavcodec/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rdft.h -------------------------------------------------------------------------------- /libavcodec/reverse.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/reverse.c" 2 | -------------------------------------------------------------------------------- /libavcodec/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rl.c -------------------------------------------------------------------------------- /libavcodec/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rl.h -------------------------------------------------------------------------------- /libavcodec/rl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rl2.c -------------------------------------------------------------------------------- /libavcodec/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rle.c -------------------------------------------------------------------------------- /libavcodec/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rle.h -------------------------------------------------------------------------------- /libavcodec/rpza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rpza.c -------------------------------------------------------------------------------- /libavcodec/rscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rscc.c -------------------------------------------------------------------------------- /libavcodec/rv10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rv10.c -------------------------------------------------------------------------------- /libavcodec/rv10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rv10.h -------------------------------------------------------------------------------- /libavcodec/rv30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rv30.c -------------------------------------------------------------------------------- /libavcodec/rv34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rv34.c -------------------------------------------------------------------------------- /libavcodec/rv34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rv34.h -------------------------------------------------------------------------------- /libavcodec/rv40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/rv40.c -------------------------------------------------------------------------------- /libavcodec/s302m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/s302m.c -------------------------------------------------------------------------------- /libavcodec/sanm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sanm.c -------------------------------------------------------------------------------- /libavcodec/sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sbc.c -------------------------------------------------------------------------------- /libavcodec/sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sbc.h -------------------------------------------------------------------------------- /libavcodec/sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sbr.h -------------------------------------------------------------------------------- /libavcodec/scpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/scpr.c -------------------------------------------------------------------------------- /libavcodec/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sgi.h -------------------------------------------------------------------------------- /libavcodec/sipr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sipr.c -------------------------------------------------------------------------------- /libavcodec/sipr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sipr.h -------------------------------------------------------------------------------- /libavcodec/smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/smc.c -------------------------------------------------------------------------------- /libavcodec/snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/snow.c -------------------------------------------------------------------------------- /libavcodec/snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/snow.h -------------------------------------------------------------------------------- /libavcodec/sonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sonic.c -------------------------------------------------------------------------------- /libavcodec/sp5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/sp5x.h -------------------------------------------------------------------------------- /libavcodec/svq1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/svq1.c -------------------------------------------------------------------------------- /libavcodec/svq1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/svq1.h -------------------------------------------------------------------------------- /libavcodec/svq13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/svq13.c -------------------------------------------------------------------------------- /libavcodec/svq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/svq3.c -------------------------------------------------------------------------------- /libavcodec/tak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tak.c -------------------------------------------------------------------------------- /libavcodec/tak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tak.h -------------------------------------------------------------------------------- /libavcodec/targa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/targa.c -------------------------------------------------------------------------------- /libavcodec/targa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/targa.h -------------------------------------------------------------------------------- /libavcodec/tdsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tdsc.c -------------------------------------------------------------------------------- /libavcodec/tiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tiff.c -------------------------------------------------------------------------------- /libavcodec/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tiff.h -------------------------------------------------------------------------------- /libavcodec/tmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tmv.c -------------------------------------------------------------------------------- /libavcodec/tscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tscc.c -------------------------------------------------------------------------------- /libavcodec/tscc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tscc2.c -------------------------------------------------------------------------------- /libavcodec/tta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/tta.c -------------------------------------------------------------------------------- /libavcodec/txd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/txd.c -------------------------------------------------------------------------------- /libavcodec/ulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ulti.c -------------------------------------------------------------------------------- /libavcodec/unary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/unary.h -------------------------------------------------------------------------------- /libavcodec/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/utils.c -------------------------------------------------------------------------------- /libavcodec/v210x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/v210x.c -------------------------------------------------------------------------------- /libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vaapi.h -------------------------------------------------------------------------------- /libavcodec/vb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vb.c -------------------------------------------------------------------------------- /libavcodec/vble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vble.c -------------------------------------------------------------------------------- /libavcodec/vc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vc1.c -------------------------------------------------------------------------------- /libavcodec/vc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vc1.h -------------------------------------------------------------------------------- /libavcodec/vcr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vcr1.c -------------------------------------------------------------------------------- /libavcodec/vdpau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vdpau.c -------------------------------------------------------------------------------- /libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vdpau.h -------------------------------------------------------------------------------- /libavcodec/vima.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vima.c -------------------------------------------------------------------------------- /libavcodec/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vlc.h -------------------------------------------------------------------------------- /libavcodec/vmnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vmnc.c -------------------------------------------------------------------------------- /libavcodec/vp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp3.c -------------------------------------------------------------------------------- /libavcodec/vp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp5.c -------------------------------------------------------------------------------- /libavcodec/vp56.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp56.c -------------------------------------------------------------------------------- /libavcodec/vp56.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp56.h -------------------------------------------------------------------------------- /libavcodec/vp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp6.c -------------------------------------------------------------------------------- /libavcodec/vp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp8.c -------------------------------------------------------------------------------- /libavcodec/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp8.h -------------------------------------------------------------------------------- /libavcodec/vp9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp9.c -------------------------------------------------------------------------------- /libavcodec/vp9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/vp9.h -------------------------------------------------------------------------------- /libavcodec/webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/webp.c -------------------------------------------------------------------------------- /libavcodec/wma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/wma.c -------------------------------------------------------------------------------- /libavcodec/wma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/wma.h -------------------------------------------------------------------------------- /libavcodec/wmv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/wmv2.c -------------------------------------------------------------------------------- /libavcodec/wmv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/wmv2.h -------------------------------------------------------------------------------- /libavcodec/wnv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/wnv1.c -------------------------------------------------------------------------------- /libavcodec/xan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xan.c -------------------------------------------------------------------------------- /libavcodec/xface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xface.c -------------------------------------------------------------------------------- /libavcodec/xface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xface.h -------------------------------------------------------------------------------- /libavcodec/xiph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xiph.c -------------------------------------------------------------------------------- /libavcodec/xiph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xiph.h -------------------------------------------------------------------------------- /libavcodec/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xl.c -------------------------------------------------------------------------------- /libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xvmc.h -------------------------------------------------------------------------------- /libavcodec/xwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xwd.h -------------------------------------------------------------------------------- /libavcodec/xxan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/xxan.c -------------------------------------------------------------------------------- /libavcodec/ylc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/ylc.c -------------------------------------------------------------------------------- /libavcodec/yop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/yop.c -------------------------------------------------------------------------------- /libavcodec/zmbv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavcodec/zmbv.c -------------------------------------------------------------------------------- /libavdevice/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/alsa.c -------------------------------------------------------------------------------- /libavdevice/alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/alsa.h -------------------------------------------------------------------------------- /libavdevice/bktr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/bktr.c -------------------------------------------------------------------------------- /libavdevice/caca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/caca.c -------------------------------------------------------------------------------- /libavdevice/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /libavdevice/jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/jack.c -------------------------------------------------------------------------------- /libavdevice/oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/oss.c -------------------------------------------------------------------------------- /libavdevice/oss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/oss.h -------------------------------------------------------------------------------- /libavdevice/reverse.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/reverse.c" 2 | -------------------------------------------------------------------------------- /libavdevice/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/sdl2.c -------------------------------------------------------------------------------- /libavdevice/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /timefilter 2 | -------------------------------------------------------------------------------- /libavdevice/v4l2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/v4l2.c -------------------------------------------------------------------------------- /libavdevice/xv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavdevice/xv.c -------------------------------------------------------------------------------- /libavfilter/.gitignore: -------------------------------------------------------------------------------- 1 | /filter_list.c 2 | -------------------------------------------------------------------------------- /libavfilter/bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavfilter/bbox.c -------------------------------------------------------------------------------- /libavfilter/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavfilter/bbox.h -------------------------------------------------------------------------------- /libavfilter/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavfilter/fifo.c -------------------------------------------------------------------------------- /libavfilter/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /libavfilter/opencl/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | -------------------------------------------------------------------------------- /libavfilter/psnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavfilter/psnr.h -------------------------------------------------------------------------------- /libavfilter/ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavfilter/ssim.h -------------------------------------------------------------------------------- /libavfilter/trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavfilter/trim.c -------------------------------------------------------------------------------- /libavformat/4xm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/4xm.c -------------------------------------------------------------------------------- /libavformat/a64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/a64.c -------------------------------------------------------------------------------- /libavformat/acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/acm.c -------------------------------------------------------------------------------- /libavformat/act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/act.c -------------------------------------------------------------------------------- /libavformat/adp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/adp.c -------------------------------------------------------------------------------- /libavformat/ads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/ads.c -------------------------------------------------------------------------------- /libavformat/aea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/aea.c -------------------------------------------------------------------------------- /libavformat/afc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/afc.c -------------------------------------------------------------------------------- /libavformat/aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/aiff.h -------------------------------------------------------------------------------- /libavformat/amr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/amr.c -------------------------------------------------------------------------------- /libavformat/anm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/anm.c -------------------------------------------------------------------------------- /libavformat/apc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/apc.c -------------------------------------------------------------------------------- /libavformat/ape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/ape.c -------------------------------------------------------------------------------- /libavformat/asf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/asf.c -------------------------------------------------------------------------------- /libavformat/asf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/asf.h -------------------------------------------------------------------------------- /libavformat/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/ast.c -------------------------------------------------------------------------------- /libavformat/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/ast.h -------------------------------------------------------------------------------- /libavformat/au.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/au.c -------------------------------------------------------------------------------- /libavformat/avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/avc.c -------------------------------------------------------------------------------- /libavformat/avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/avc.h -------------------------------------------------------------------------------- /libavformat/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/avi.h -------------------------------------------------------------------------------- /libavformat/avio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/avio.c -------------------------------------------------------------------------------- /libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/avio.h -------------------------------------------------------------------------------- /libavformat/avr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/avr.c -------------------------------------------------------------------------------- /libavformat/avs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/avs.c -------------------------------------------------------------------------------- /libavformat/bfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/bfi.c -------------------------------------------------------------------------------- /libavformat/bink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/bink.c -------------------------------------------------------------------------------- /libavformat/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/bit.c -------------------------------------------------------------------------------- /libavformat/bmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/bmv.c -------------------------------------------------------------------------------- /libavformat/c93.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/c93.c -------------------------------------------------------------------------------- /libavformat/caf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/caf.c -------------------------------------------------------------------------------- /libavformat/caf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/caf.h -------------------------------------------------------------------------------- /libavformat/cdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/cdg.c -------------------------------------------------------------------------------- /libavformat/cdxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/cdxl.c -------------------------------------------------------------------------------- /libavformat/dash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dash.c -------------------------------------------------------------------------------- /libavformat/dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dash.h -------------------------------------------------------------------------------- /libavformat/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dfa.c -------------------------------------------------------------------------------- /libavformat/dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dss.c -------------------------------------------------------------------------------- /libavformat/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dump.c -------------------------------------------------------------------------------- /libavformat/dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dv.c -------------------------------------------------------------------------------- /libavformat/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dv.h -------------------------------------------------------------------------------- /libavformat/dxa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/dxa.c -------------------------------------------------------------------------------- /libavformat/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/fifo.c -------------------------------------------------------------------------------- /libavformat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/file.c -------------------------------------------------------------------------------- /libavformat/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /libavformat/flic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/flic.c -------------------------------------------------------------------------------- /libavformat/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/flv.h -------------------------------------------------------------------------------- /libavformat/fsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/fsb.c -------------------------------------------------------------------------------- /libavformat/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/ftp.c -------------------------------------------------------------------------------- /libavformat/g722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/g722.c -------------------------------------------------------------------------------- /libavformat/g726.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/g726.c -------------------------------------------------------------------------------- /libavformat/gdv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/gdv.c -------------------------------------------------------------------------------- /libavformat/genh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/genh.c -------------------------------------------------------------------------------- /libavformat/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/gif.c -------------------------------------------------------------------------------- /libavformat/golomb_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavcodec/golomb.c" 2 | -------------------------------------------------------------------------------- /libavformat/gxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/gxf.c -------------------------------------------------------------------------------- /libavformat/gxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/gxf.h -------------------------------------------------------------------------------- /libavformat/hevc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/hevc.c -------------------------------------------------------------------------------- /libavformat/hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/hevc.h -------------------------------------------------------------------------------- /libavformat/hls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/hls.c -------------------------------------------------------------------------------- /libavformat/hnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/hnm.c -------------------------------------------------------------------------------- /libavformat/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/http.c -------------------------------------------------------------------------------- /libavformat/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/http.h -------------------------------------------------------------------------------- /libavformat/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/iff.c -------------------------------------------------------------------------------- /libavformat/ilbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/ilbc.c -------------------------------------------------------------------------------- /libavformat/img2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/img2.c -------------------------------------------------------------------------------- /libavformat/img2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/img2.h -------------------------------------------------------------------------------- /libavformat/isom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/isom.c -------------------------------------------------------------------------------- /libavformat/isom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/isom.h -------------------------------------------------------------------------------- /libavformat/iss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/iss.c -------------------------------------------------------------------------------- /libavformat/iv8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/iv8.c -------------------------------------------------------------------------------- /libavformat/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /libavformat/lrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/lrc.c -------------------------------------------------------------------------------- /libavformat/lrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/lrc.h -------------------------------------------------------------------------------- /libavformat/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mm.c -------------------------------------------------------------------------------- /libavformat/mmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mmf.c -------------------------------------------------------------------------------- /libavformat/mms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mms.c -------------------------------------------------------------------------------- /libavformat/mms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mms.h -------------------------------------------------------------------------------- /libavformat/mmsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mmsh.c -------------------------------------------------------------------------------- /libavformat/mmst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mmst.c -------------------------------------------------------------------------------- /libavformat/mov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mov.c -------------------------------------------------------------------------------- /libavformat/mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mpc.c -------------------------------------------------------------------------------- /libavformat/mpc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mpc8.c -------------------------------------------------------------------------------- /libavformat/mpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mpeg.c -------------------------------------------------------------------------------- /libavformat/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mpeg.h -------------------------------------------------------------------------------- /libavformat/msf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/msf.c -------------------------------------------------------------------------------- /libavformat/mtaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mtaf.c -------------------------------------------------------------------------------- /libavformat/mtv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mtv.c -------------------------------------------------------------------------------- /libavformat/musx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/musx.c -------------------------------------------------------------------------------- /libavformat/mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mux.c -------------------------------------------------------------------------------- /libavformat/mvi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mvi.c -------------------------------------------------------------------------------- /libavformat/mxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mxf.c -------------------------------------------------------------------------------- /libavformat/mxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mxf.h -------------------------------------------------------------------------------- /libavformat/mxg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/mxg.c -------------------------------------------------------------------------------- /libavformat/nut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/nut.c -------------------------------------------------------------------------------- /libavformat/nut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/nut.h -------------------------------------------------------------------------------- /libavformat/nuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/nuv.c -------------------------------------------------------------------------------- /libavformat/oma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/oma.c -------------------------------------------------------------------------------- /libavformat/oma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/oma.h -------------------------------------------------------------------------------- /libavformat/paf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/paf.c -------------------------------------------------------------------------------- /libavformat/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/pcm.c -------------------------------------------------------------------------------- /libavformat/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/pcm.h -------------------------------------------------------------------------------- /libavformat/pva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/pva.c -------------------------------------------------------------------------------- /libavformat/qcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/qcp.c -------------------------------------------------------------------------------- /libavformat/r3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/r3d.c -------------------------------------------------------------------------------- /libavformat/rdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rdt.c -------------------------------------------------------------------------------- /libavformat/rdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rdt.h -------------------------------------------------------------------------------- /libavformat/riff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/riff.c -------------------------------------------------------------------------------- /libavformat/riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/riff.h -------------------------------------------------------------------------------- /libavformat/rl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rl2.c -------------------------------------------------------------------------------- /libavformat/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rm.c -------------------------------------------------------------------------------- /libavformat/rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rm.h -------------------------------------------------------------------------------- /libavformat/rpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rpl.c -------------------------------------------------------------------------------- /libavformat/rsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rsd.c -------------------------------------------------------------------------------- /libavformat/rso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rso.c -------------------------------------------------------------------------------- /libavformat/rso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rso.h -------------------------------------------------------------------------------- /libavformat/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rtmp.h -------------------------------------------------------------------------------- /libavformat/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rtp.c -------------------------------------------------------------------------------- /libavformat/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rtp.h -------------------------------------------------------------------------------- /libavformat/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rtsp.c -------------------------------------------------------------------------------- /libavformat/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/rtsp.h -------------------------------------------------------------------------------- /libavformat/sctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/sctp.c -------------------------------------------------------------------------------- /libavformat/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/sdp.c -------------------------------------------------------------------------------- /libavformat/sdr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/sdr2.c -------------------------------------------------------------------------------- /libavformat/siff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/siff.c -------------------------------------------------------------------------------- /libavformat/sol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/sol.c -------------------------------------------------------------------------------- /libavformat/sox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/sox.h -------------------------------------------------------------------------------- /libavformat/srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/srtp.c -------------------------------------------------------------------------------- /libavformat/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/srtp.h -------------------------------------------------------------------------------- /libavformat/svag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/svag.c -------------------------------------------------------------------------------- /libavformat/swf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/swf.c -------------------------------------------------------------------------------- /libavformat/swf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/swf.h -------------------------------------------------------------------------------- /libavformat/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/tcp.c -------------------------------------------------------------------------------- /libavformat/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/tee.c -------------------------------------------------------------------------------- /libavformat/thp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/thp.c -------------------------------------------------------------------------------- /libavformat/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/tls.c -------------------------------------------------------------------------------- /libavformat/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/tls.h -------------------------------------------------------------------------------- /libavformat/tmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/tmv.c -------------------------------------------------------------------------------- /libavformat/tta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/tta.c -------------------------------------------------------------------------------- /libavformat/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/tty.c -------------------------------------------------------------------------------- /libavformat/txd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/txd.c -------------------------------------------------------------------------------- /libavformat/ty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/ty.c -------------------------------------------------------------------------------- /libavformat/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/udp.c -------------------------------------------------------------------------------- /libavformat/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/unix.c -------------------------------------------------------------------------------- /libavformat/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/url.c -------------------------------------------------------------------------------- /libavformat/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/url.h -------------------------------------------------------------------------------- /libavformat/v210.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/v210.c -------------------------------------------------------------------------------- /libavformat/vag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/vag.c -------------------------------------------------------------------------------- /libavformat/vivo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/vivo.c -------------------------------------------------------------------------------- /libavformat/voc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/voc.c -------------------------------------------------------------------------------- /libavformat/voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/voc.h -------------------------------------------------------------------------------- /libavformat/vpcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/vpcc.c -------------------------------------------------------------------------------- /libavformat/vpcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/vpcc.h -------------------------------------------------------------------------------- /libavformat/vpk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/vpk.c -------------------------------------------------------------------------------- /libavformat/vqf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/vqf.c -------------------------------------------------------------------------------- /libavformat/w64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/w64.c -------------------------------------------------------------------------------- /libavformat/w64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/w64.h -------------------------------------------------------------------------------- /libavformat/wtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/wtv.h -------------------------------------------------------------------------------- /libavformat/wv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/wv.c -------------------------------------------------------------------------------- /libavformat/wv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/wv.h -------------------------------------------------------------------------------- /libavformat/xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/xa.c -------------------------------------------------------------------------------- /libavformat/xmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/xmv.c -------------------------------------------------------------------------------- /libavformat/xvag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/xvag.c -------------------------------------------------------------------------------- /libavformat/xwma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/xwma.c -------------------------------------------------------------------------------- /libavformat/yop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavformat/yop.c -------------------------------------------------------------------------------- /libavresample/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /avresample 2 | -------------------------------------------------------------------------------- /libavutil/.gitignore: -------------------------------------------------------------------------------- 1 | /avconfig.h 2 | /ffversion.h 3 | -------------------------------------------------------------------------------- /libavutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/Makefile -------------------------------------------------------------------------------- /libavutil/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/aes.c -------------------------------------------------------------------------------- /libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/aes.h -------------------------------------------------------------------------------- /libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/avutil.h -------------------------------------------------------------------------------- /libavutil/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/base64.c -------------------------------------------------------------------------------- /libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/base64.h -------------------------------------------------------------------------------- /libavutil/bprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/bprint.c -------------------------------------------------------------------------------- /libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/bprint.h -------------------------------------------------------------------------------- /libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/bswap.h -------------------------------------------------------------------------------- /libavutil/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/buffer.c -------------------------------------------------------------------------------- /libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/buffer.h -------------------------------------------------------------------------------- /libavutil/cast5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/cast5.c -------------------------------------------------------------------------------- /libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/cast5.h -------------------------------------------------------------------------------- /libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/common.h -------------------------------------------------------------------------------- /libavutil/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/cpu.c -------------------------------------------------------------------------------- /libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/cpu.h -------------------------------------------------------------------------------- /libavutil/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/crc.c -------------------------------------------------------------------------------- /libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/crc.h -------------------------------------------------------------------------------- /libavutil/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/des.c -------------------------------------------------------------------------------- /libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/des.h -------------------------------------------------------------------------------- /libavutil/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/dict.c -------------------------------------------------------------------------------- /libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/dict.h -------------------------------------------------------------------------------- /libavutil/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/error.c -------------------------------------------------------------------------------- /libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/error.h -------------------------------------------------------------------------------- /libavutil/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/eval.c -------------------------------------------------------------------------------- /libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/eval.h -------------------------------------------------------------------------------- /libavutil/ffmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/ffmath.h -------------------------------------------------------------------------------- /libavutil/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/fifo.c -------------------------------------------------------------------------------- /libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/fifo.h -------------------------------------------------------------------------------- /libavutil/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/file.c -------------------------------------------------------------------------------- /libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/file.h -------------------------------------------------------------------------------- /libavutil/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/frame.c -------------------------------------------------------------------------------- /libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/frame.h -------------------------------------------------------------------------------- /libavutil/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/hash.c -------------------------------------------------------------------------------- /libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/hash.h -------------------------------------------------------------------------------- /libavutil/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/hmac.c -------------------------------------------------------------------------------- /libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/hmac.h -------------------------------------------------------------------------------- /libavutil/lfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/lfg.c -------------------------------------------------------------------------------- /libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/lfg.h -------------------------------------------------------------------------------- /libavutil/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/libm.h -------------------------------------------------------------------------------- /libavutil/lls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/lls.c -------------------------------------------------------------------------------- /libavutil/lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/lls.h -------------------------------------------------------------------------------- /libavutil/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/log.c -------------------------------------------------------------------------------- /libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/log.h -------------------------------------------------------------------------------- /libavutil/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/lzo.c -------------------------------------------------------------------------------- /libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/lzo.h -------------------------------------------------------------------------------- /libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/macros.h -------------------------------------------------------------------------------- /libavutil/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/md5.c -------------------------------------------------------------------------------- /libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/md5.h -------------------------------------------------------------------------------- /libavutil/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/mem.c -------------------------------------------------------------------------------- /libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/mem.h -------------------------------------------------------------------------------- /libavutil/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/opt.c -------------------------------------------------------------------------------- /libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/opt.h -------------------------------------------------------------------------------- /libavutil/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/pca.c -------------------------------------------------------------------------------- /libavutil/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/pca.h -------------------------------------------------------------------------------- /libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/pixfmt.h -------------------------------------------------------------------------------- /libavutil/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/qsort.h -------------------------------------------------------------------------------- /libavutil/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/rc4.c -------------------------------------------------------------------------------- /libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/rc4.h -------------------------------------------------------------------------------- /libavutil/ripemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/ripemd.c -------------------------------------------------------------------------------- /libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/ripemd.h -------------------------------------------------------------------------------- /libavutil/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/sha.c -------------------------------------------------------------------------------- /libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/sha.h -------------------------------------------------------------------------------- /libavutil/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/sha512.c -------------------------------------------------------------------------------- /libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/sha512.h -------------------------------------------------------------------------------- /libavutil/tea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/tea.c -------------------------------------------------------------------------------- /libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/tea.h -------------------------------------------------------------------------------- /libavutil/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/thread.h -------------------------------------------------------------------------------- /libavutil/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/time.c -------------------------------------------------------------------------------- /libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/time.h -------------------------------------------------------------------------------- /libavutil/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/timer.h -------------------------------------------------------------------------------- /libavutil/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/tree.c -------------------------------------------------------------------------------- /libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/tree.h -------------------------------------------------------------------------------- /libavutil/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/utils.c -------------------------------------------------------------------------------- /libavutil/xtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/xtea.c -------------------------------------------------------------------------------- /libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libavutil/xtea.h -------------------------------------------------------------------------------- /libswresample/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /libswresample/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /swresample 2 | -------------------------------------------------------------------------------- /libswscale/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libswscale/gamma.c -------------------------------------------------------------------------------- /libswscale/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libswscale/input.c -------------------------------------------------------------------------------- /libswscale/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /libswscale/slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libswscale/slice.c -------------------------------------------------------------------------------- /libswscale/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /colorspace 2 | /pixdesc_query 3 | /swscale 4 | -------------------------------------------------------------------------------- /libswscale/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/libswscale/utils.c -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/api/.gitignore: -------------------------------------------------------------------------------- 1 | /*-test 2 | -------------------------------------------------------------------------------- /tests/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/api/Makefile -------------------------------------------------------------------------------- /tests/audiogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/audiogen.c -------------------------------------------------------------------------------- /tests/audiomatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/audiomatch.c -------------------------------------------------------------------------------- /tests/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/base64.c -------------------------------------------------------------------------------- /tests/checkasm/.gitignore: -------------------------------------------------------------------------------- 1 | /checkasm 2 | -------------------------------------------------------------------------------- /tests/fate-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate-run.sh -------------------------------------------------------------------------------- /tests/fate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate.sh -------------------------------------------------------------------------------- /tests/fate/aac.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/aac.mak -------------------------------------------------------------------------------- /tests/fate/ac3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/ac3.mak -------------------------------------------------------------------------------- /tests/fate/als.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/als.mak -------------------------------------------------------------------------------- /tests/fate/api.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/api.mak -------------------------------------------------------------------------------- /tests/fate/bmp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/bmp.mak -------------------------------------------------------------------------------- /tests/fate/cbs.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/cbs.mak -------------------------------------------------------------------------------- /tests/fate/dca.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/dca.mak -------------------------------------------------------------------------------- /tests/fate/dfa.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/dfa.mak -------------------------------------------------------------------------------- /tests/fate/ea.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/ea.mak -------------------------------------------------------------------------------- /tests/fate/fft.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/fft.mak -------------------------------------------------------------------------------- /tests/fate/gif.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/gif.mak -------------------------------------------------------------------------------- /tests/fate/hap.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/hap.mak -------------------------------------------------------------------------------- /tests/fate/mov.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/mov.mak -------------------------------------------------------------------------------- /tests/fate/mp3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/mp3.mak -------------------------------------------------------------------------------- /tests/fate/mpc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/mpc.mak -------------------------------------------------------------------------------- /tests/fate/mxf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/mxf.mak -------------------------------------------------------------------------------- /tests/fate/pcm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/pcm.mak -------------------------------------------------------------------------------- /tests/fate/qt.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/qt.mak -------------------------------------------------------------------------------- /tests/fate/vpx.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/vpx.mak -------------------------------------------------------------------------------- /tests/fate/vqf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/vqf.mak -------------------------------------------------------------------------------- /tests/fate/wma.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/fate/wma.mak -------------------------------------------------------------------------------- /tests/filtergraphs/hqdn3d: -------------------------------------------------------------------------------- 1 | perms=random, hqdn3d=enable='not(between(t,5,6))' 2 | -------------------------------------------------------------------------------- /tests/filtergraphs/hstack: -------------------------------------------------------------------------------- 1 | hstack 2 | -------------------------------------------------------------------------------- /tests/filtergraphs/select-alternate: -------------------------------------------------------------------------------- 1 | select=not(mod(n\,2)) 2 | -------------------------------------------------------------------------------- /tests/filtergraphs/vstack: -------------------------------------------------------------------------------- 1 | vstack 2 | -------------------------------------------------------------------------------- /tests/md5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/md5.sh -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-creative: -------------------------------------------------------------------------------- 1 | 66004779a5e51ca659b21a4197e019e6 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-creative-8-2.6bit: -------------------------------------------------------------------------------- 1 | dee4417597abc2db70a175d6809870e7 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-creative-8-2bit: -------------------------------------------------------------------------------- 1 | 832846066fbce28821b7f0717c4d3a90 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-creative-8-4bit: -------------------------------------------------------------------------------- 1 | 1813d196cef83f7030bb150399b2903e 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ea-r2: -------------------------------------------------------------------------------- 1 | CRC=0xa1158634 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ea-r3: -------------------------------------------------------------------------------- 1 | CRC=0x9ea2507f 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ima-apc: -------------------------------------------------------------------------------- 1 | 6dcee91d3364f389f804da7a25934b36 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ima-dk3: -------------------------------------------------------------------------------- 1 | 62fbe4db4a49cb044f57f92cce9993c5 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ima-dk4: -------------------------------------------------------------------------------- 1 | 5234b53dde4961dd715a2524d6a8eb75 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ima-iss: -------------------------------------------------------------------------------- 1 | 816ca37c22e42f488fd787e3155e59ff 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ima-oki: -------------------------------------------------------------------------------- 1 | 641049800e735b62e975baacc9a011a4 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ima-rad: -------------------------------------------------------------------------------- 1 | 495f0ae514c28c6bdcbd40811a17e2a5 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm-ima_wav-stereo: -------------------------------------------------------------------------------- 1 | 1ee96f1efc09251a732621049dc5b66e 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adpcm_ms-stereo: -------------------------------------------------------------------------------- 1 | 3b7554e9a186c30adfd2a86bae950f4a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/adts-demux: -------------------------------------------------------------------------------- 1 | CRC=0xbda37454 2 | -------------------------------------------------------------------------------- /tests/ref/fate/aea-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc1312082 2 | -------------------------------------------------------------------------------- /tests/ref/fate/aic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/aic -------------------------------------------------------------------------------- /tests/ref/fate/amv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/amv -------------------------------------------------------------------------------- /tests/ref/fate/ast: -------------------------------------------------------------------------------- 1 | CRC=0x87713611 2 | -------------------------------------------------------------------------------- /tests/ref/fate/bcstm: -------------------------------------------------------------------------------- 1 | CRC=0xca62d03b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/bfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/bfi -------------------------------------------------------------------------------- /tests/ref/fate/bfstm: -------------------------------------------------------------------------------- 1 | CRC=0xbd3d0d33 2 | -------------------------------------------------------------------------------- /tests/ref/fate/bink-demux: -------------------------------------------------------------------------------- 1 | CRC=0x839f34e6 2 | -------------------------------------------------------------------------------- /tests/ref/fate/binsub-mksenc: -------------------------------------------------------------------------------- 1 | f80f42e646fce972e73aa6d99dcfa470 2 | -------------------------------------------------------------------------------- /tests/ref/fate/binsub-movtextenc: -------------------------------------------------------------------------------- 1 | af6a8f38d7c11d9af7823cc44554d2ad 2 | -------------------------------------------------------------------------------- /tests/ref/fate/brstm: -------------------------------------------------------------------------------- 1 | CRC=0x1feb92a8 2 | -------------------------------------------------------------------------------- /tests/ref/fate/caf: -------------------------------------------------------------------------------- 1 | CRC=0xd0d7195c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-AUD_MW_E: -------------------------------------------------------------------------------- 1 | 9b8884667eda0b9853bec631458686ce 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-BASQP1_Sony_C: -------------------------------------------------------------------------------- 1 | 00c52ae60bf9a41ae1145fbf5fea9838 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-CABACI3_Sony_B: -------------------------------------------------------------------------------- 1 | 2d94c80b858aec880530bad47afe3668 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-CVBS3_Sony_C: -------------------------------------------------------------------------------- 1 | 59ff1df9b25e80277cad4ad99e634df6 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-CVFC1_Sony_C: -------------------------------------------------------------------------------- 1 | 669f4f3d3ae35fa5a6f5c94e48776dcf 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-CVMANL1_TOSHIBA_B: -------------------------------------------------------------------------------- 1 | 0c1d9694df747cc4697caf866bd3051a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-CVNLFI1_Sony_C: -------------------------------------------------------------------------------- 1 | 7817d89bd749bc617a225978958a3af0 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-CVSE2_Sony_B: -------------------------------------------------------------------------------- 1 | ca8bdba497bd2f3b97c50d59692eb537 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-CVWP1_TOSHIBA_E: -------------------------------------------------------------------------------- 1 | 01290611165b8d8ccba8468f3dae4c4d 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-FM1_BT_B: -------------------------------------------------------------------------------- 1 | f7d5474ec576eea3f70d83a26a641a60 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-MR1_BT_A: -------------------------------------------------------------------------------- 1 | 699d37e66764ddb3b4265c299ca77dcd 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-SVA_Base_B: -------------------------------------------------------------------------------- 1 | 443e55dd5f63dccf9a62acbb48451b08 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-Sharp_MP_PAFF_1r2: -------------------------------------------------------------------------------- 1 | fd01840ed6b086c3118b7c53c86d01f5 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-h264-sp1_bt_a: -------------------------------------------------------------------------------- 1 | 8405c5583d31d7015ed401b34b4ec93c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-CAINIT_E_SHARP_3: -------------------------------------------------------------------------------- 1 | 44d1c0b80828af779d942cc20dde4ea4 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-CAINIT_H_SHARP_3: -------------------------------------------------------------------------------- 1 | ae9311dfcaf65bb8de9c4fcf23ce0871 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-CONFWIN_A_Sony_1: -------------------------------------------------------------------------------- 1 | dce8104b2addbdd601eb280a88e18583 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-HRD_A_Fujitsu_2: -------------------------------------------------------------------------------- 1 | 716a90051f028c90daeb86b3825af36d 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-LTRPSPS_A_Qualcomm_1: -------------------------------------------------------------------------------- 1 | 11b599202a4d25693123bea8bb003e54 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-NUT_A_ericsson_5: -------------------------------------------------------------------------------- 1 | 25cf94dfa2e0334eeedbfa9a8ed1c4b2 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-PICSIZE_A_Bossen_1: -------------------------------------------------------------------------------- 1 | e87fbd90c297d401738db928e3e04dd4 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-PICSIZE_B_Bossen_1: -------------------------------------------------------------------------------- 1 | 4993d49d6f2f532dfc683a9d26c1e313 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-RPLM_A_qualcomm_4: -------------------------------------------------------------------------------- 1 | f5d2633eefcd95e189faf4302d270457 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-RPS_A_docomo_4: -------------------------------------------------------------------------------- 1 | 97bd4fefd8cd95584f586027e244f283 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-RPS_E_qualcomm_5: -------------------------------------------------------------------------------- 1 | b2528ef681729176ccb38a77be93a0de 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-SLIST_D_Sony_9: -------------------------------------------------------------------------------- 1 | 59a22d715e30748492da5e0b9d421909 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-STRUCT_A_Samsung_5: -------------------------------------------------------------------------------- 1 | 647eb851b935fd3bc6a98ce5ce45dbc7 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-TILES_B_Cisco_1: -------------------------------------------------------------------------------- 1 | 85a114def19cefbd0fb0daf8370d711c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-WPP_A_ericsson_MAIN_2: -------------------------------------------------------------------------------- 1 | de7d440b556eea827953e6d12aeb4023 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-WPP_F_ericsson_MAIN_2: -------------------------------------------------------------------------------- 1 | f197136f1fb3242c3422a48470dd7d35 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-WP_A_Toshiba_3: -------------------------------------------------------------------------------- 1 | 158312a1a35ef4b20cb4aeee48549c03 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-hevc-ipcm_E_NEC_2: -------------------------------------------------------------------------------- 1 | 2e1f9c95364cfac2aa6e6ee3a52c43c4 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-mpeg2-hhi_burst_422_short: -------------------------------------------------------------------------------- 1 | e0c2fdd9baeba0c5ba5839a8cd7a72d3 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-mpeg2-sony-ct3: -------------------------------------------------------------------------------- 1 | b1e15a09cfffbad801810af0928736ab 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cbs-mpeg2-tcela-6: -------------------------------------------------------------------------------- 1 | 771b6756a63793e05b74e645794908a2 2 | -------------------------------------------------------------------------------- /tests/ref/fate/cine-demux: -------------------------------------------------------------------------------- 1 | CRC=0x8555ed33 2 | -------------------------------------------------------------------------------- /tests/ref/fate/crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/crc -------------------------------------------------------------------------------- /tests/ref/fate/dca-xll: -------------------------------------------------------------------------------- 1 | 5eb9a95ddaf3c803e74443a49a691686 2 | -------------------------------------------------------------------------------- /tests/ref/fate/dpcm-sierra: -------------------------------------------------------------------------------- 1 | a99402e1f1a0f137608898251b3f309b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/dpcm-xan: -------------------------------------------------------------------------------- 1 | b6da857766896ab10bb900004f915053 2 | -------------------------------------------------------------------------------- /tests/ref/fate/dpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/dpx -------------------------------------------------------------------------------- /tests/ref/fate/ea-cdata: -------------------------------------------------------------------------------- 1 | db441b7f9c8767ee675002763cd3ae46 2 | -------------------------------------------------------------------------------- /tests/ref/fate/h264-bsf-mp4toannexb: -------------------------------------------------------------------------------- 1 | f340e7ca9a46d437af4e96f6c8de221c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/idroq-video-encode: -------------------------------------------------------------------------------- 1 | e9ff61023826fce304350ff6e7c63b2f 2 | -------------------------------------------------------------------------------- /tests/ref/fate/iff-fibonacci: -------------------------------------------------------------------------------- 1 | e968a853779bb6438339e3b8d69d8d24 2 | -------------------------------------------------------------------------------- /tests/ref/fate/iff-pcm: -------------------------------------------------------------------------------- 1 | 6dc1329541393525a60fd6b9782573f5 2 | -------------------------------------------------------------------------------- /tests/ref/fate/jv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/jv -------------------------------------------------------------------------------- /tests/ref/fate/lfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/lfg -------------------------------------------------------------------------------- /tests/ref/fate/limited_input_seek: -------------------------------------------------------------------------------- 1 | 20a1bb9a1cfb23c1fe86f14e6065cd95 2 | -------------------------------------------------------------------------------- /tests/ref/fate/limited_input_seek-copyts: -------------------------------------------------------------------------------- 1 | ec3604b1954ed80de364b8ef491771ce 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-alac: -------------------------------------------------------------------------------- 1 | d0beb768d860b4776358077dd9fcb1e9 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-meridianaudio: -------------------------------------------------------------------------------- 1 | b3d0c9523c42fae639f7074e60281509 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-monkeysaudio-399: -------------------------------------------------------------------------------- 1 | a28d4e5f2192057f7d4bece870f40bd0 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-shorten: -------------------------------------------------------------------------------- 1 | da93c50961443b88fce416ae61c8ca8a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-tak: -------------------------------------------------------------------------------- 1 | CRC=0x4ec0971f 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-truehd-5.1: -------------------------------------------------------------------------------- 1 | 95d8aac39dd9f0d7fb83dc7b6f88df35 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-truehd-5.1-downmix-2.0: -------------------------------------------------------------------------------- 1 | a269aee0051d4400c9117136f08c9767 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-tta: -------------------------------------------------------------------------------- 1 | CRC=0xb2b8b6d9 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-tta-encrypted: -------------------------------------------------------------------------------- 1 | CRC=0x4563745f 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-wma: -------------------------------------------------------------------------------- 1 | ab45f262b22030e908cb03f2cc8e89b5 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-wma24-1: -------------------------------------------------------------------------------- 1 | 9ade91f506bc025854f6ffea0d635bc6 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-wma24-2: -------------------------------------------------------------------------------- 1 | 908ec5c16f497bf7d5658d2689d125c8 2 | -------------------------------------------------------------------------------- /tests/ref/fate/lossless-wma24-rawtile: -------------------------------------------------------------------------------- 1 | 337592f38a2218a5bc95ceb9b5e72c8b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/m4v -------------------------------------------------------------------------------- /tests/ref/fate/mapchan-silent-mono: -------------------------------------------------------------------------------- 1 | b6b034fffa8639e64d79be84f16d9ebe 2 | -------------------------------------------------------------------------------- /tests/ref/fate/md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/md5 -------------------------------------------------------------------------------- /tests/ref/fate/mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/mkv -------------------------------------------------------------------------------- /tests/ref/fate/mlv-demux: -------------------------------------------------------------------------------- 1 | CRC=0x937f8af3 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpc7-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdeb152dd 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpc8-demux: -------------------------------------------------------------------------------- 1 | CRC=0x5cdeaf0c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpeg4-als-conformance-00: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpeg4-als-conformance-01: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpeg4-als-conformance-02: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpeg4-als-conformance-03: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpeg4-als-conformance-04: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpeg4-als-conformance-05: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mpeg4-bsf-unpack-bframes: -------------------------------------------------------------------------------- 1 | a0c4ba21ab9d68966b8fce7cc848e2c6 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mtv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/mtv -------------------------------------------------------------------------------- /tests/ref/fate/murmur3: -------------------------------------------------------------------------------- 1 | result: 0x63f3de036384ba69 0x7192878ce684ed2d 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mxf-missing-index-demux: -------------------------------------------------------------------------------- 1 | CRC=0x48508eed 2 | -------------------------------------------------------------------------------- /tests/ref/fate/mxf-reel_name: -------------------------------------------------------------------------------- 1 | dda6c54b642b8794a87d809fdb361f95 2 | -------------------------------------------------------------------------------- /tests/ref/fate/nistsphere-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc4faddaf 2 | -------------------------------------------------------------------------------- /tests/ref/fate/oma-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdd181a1c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/opt -------------------------------------------------------------------------------- /tests/ref/fate/pcm_s16be-stereo: -------------------------------------------------------------------------------- 1 | 759cf5d12a4b2fb653e61f5219331f14 2 | -------------------------------------------------------------------------------- /tests/ref/fate/pcm_s16le-stereo: -------------------------------------------------------------------------------- 1 | 0262b20b728f5bb95594e64e2173b2f2 2 | -------------------------------------------------------------------------------- /tests/ref/fate/pcm_u8-mono: -------------------------------------------------------------------------------- 1 | c2dcec9b230dad733b6b877fbed36755 2 | -------------------------------------------------------------------------------- /tests/ref/fate/pcm_u8-stereo: -------------------------------------------------------------------------------- 1 | 973cf68365c3d58ff60ba652433b3bd2 2 | -------------------------------------------------------------------------------- /tests/ref/fate/ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/ptx -------------------------------------------------------------------------------- /tests/ref/fate/qcp-demux: -------------------------------------------------------------------------------- 1 | CRC=0x4f9f567a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-alaw-mono: -------------------------------------------------------------------------------- 1 | 7257c296fbba7eedf688fcb667144f7b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-alaw-stereo: -------------------------------------------------------------------------------- 1 | 011d4aecaee697cc861012b7c25b5d40 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-ima4-mono: -------------------------------------------------------------------------------- 1 | e178ed520edf2f46492ae740d88f5815 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-ima4-stereo: -------------------------------------------------------------------------------- 1 | d22be0e193dcbba1068a1ca6ab04cf77 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-mac3-mono: -------------------------------------------------------------------------------- 1 | 728d89210e1c90a9185db729b0b6e8c0 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-mac3-stereo: -------------------------------------------------------------------------------- 1 | 2eef3c68fce3d18ec757bcbc0d369698 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-mac6-mono: -------------------------------------------------------------------------------- 1 | eec238d2737365fba15da813e5a7fbc9 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-mac6-stereo: -------------------------------------------------------------------------------- 1 | 2716d66016d8230bcc0fe90586da97a9 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-ulaw-mono: -------------------------------------------------------------------------------- 1 | 63075293c68079826146963e94f45ca6 2 | -------------------------------------------------------------------------------- /tests/ref/fate/qt-ulaw-stereo: -------------------------------------------------------------------------------- 1 | 96316117d444b06b2aa20877f7de36fd 2 | -------------------------------------------------------------------------------- /tests/ref/fate/ra-144: -------------------------------------------------------------------------------- 1 | 2da17ae831ea415592c7e6828e3fb69a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/ralf: -------------------------------------------------------------------------------- 1 | 10da0398e06a470a0b97817fe113abcb 2 | -------------------------------------------------------------------------------- /tests/ref/fate/redspark-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc0fd1aa2 2 | -------------------------------------------------------------------------------- /tests/ref/fate/rl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/rl2 -------------------------------------------------------------------------------- /tests/ref/fate/rsd-demux: -------------------------------------------------------------------------------- 1 | CRC=0x7b7807d8 2 | -------------------------------------------------------------------------------- /tests/ref/fate/sha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/sha -------------------------------------------------------------------------------- /tests/ref/fate/smc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/smc -------------------------------------------------------------------------------- /tests/ref/fate/tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/tea -------------------------------------------------------------------------------- /tests/ref/fate/thp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/thp -------------------------------------------------------------------------------- /tests/ref/fate/time_base: -------------------------------------------------------------------------------- 1 | f97551f884df5ab709c5869c66c7b9bc 2 | -------------------------------------------------------------------------------- /tests/ref/fate/tmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/tmv -------------------------------------------------------------------------------- /tests/ref/fate/unknown_layout-ac3: -------------------------------------------------------------------------------- 1 | bbb7550d6d93973c10f4ee13c87cf799 2 | -------------------------------------------------------------------------------- /tests/ref/fate/unknown_layout-pcm: -------------------------------------------------------------------------------- 1 | 4dada0795adf50f7a0e60861658f86ea 2 | -------------------------------------------------------------------------------- /tests/ref/fate/url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/url -------------------------------------------------------------------------------- /tests/ref/fate/v410enc: -------------------------------------------------------------------------------- 1 | 465bcc7477104a8295f47b35f1b987df 2 | -------------------------------------------------------------------------------- /tests/ref/fate/vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/vb -------------------------------------------------------------------------------- /tests/ref/fate/vp5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/vp5 -------------------------------------------------------------------------------- /tests/ref/fate/vp7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/vp7 -------------------------------------------------------------------------------- /tests/ref/fate/vqf-demux: -------------------------------------------------------------------------------- 1 | 5f4cd9a6a8bea0040db6732a7830e9d7 2 | -------------------------------------------------------------------------------- /tests/ref/fate/w64: -------------------------------------------------------------------------------- 1 | CRC=0xc1e71a5c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-channels-4.0: -------------------------------------------------------------------------------- 1 | a03999c3ad17423f3a7e3d537fea8589 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-channels-5.1: -------------------------------------------------------------------------------- 1 | 4ab874ad4a47141073f6db9aeec422a8 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-channels-6.1: -------------------------------------------------------------------------------- 1 | a524a76c85f55b7d63914fc1543a5268 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-channels-7.1: -------------------------------------------------------------------------------- 1 | cffe4d47290ff3cef974e5aa6bc32559 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-channels-monofloat: -------------------------------------------------------------------------------- 1 | 71386c0f63105e414220f0f0d369a0e6 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-channels-monoint: -------------------------------------------------------------------------------- 1 | 931f27e3ec69fae0952548504461d97c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-clipping: -------------------------------------------------------------------------------- 1 | d18d0b2dc7d329aefcbb889dc99383ab 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-cuesheet: -------------------------------------------------------------------------------- 1 | 85eb2940491442ca25c2a702a6f30e5f 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-falsestereo: -------------------------------------------------------------------------------- 1 | e3fdd584bef84e85f4ca84e2769306f8 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossless-12bit: -------------------------------------------------------------------------------- 1 | 925e047ac0d4c874a9cff3cc9117ac91 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossless-16bit: -------------------------------------------------------------------------------- 1 | e2dc4b85377b275a48c8bd2a4f5b91fd 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossless-24bit: -------------------------------------------------------------------------------- 1 | 9d7bc1a45bd3ba9d1eb5706f0dfc3e47 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossless-32bit: -------------------------------------------------------------------------------- 1 | c35f539bb5796ed93908c987fab1c26c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossless-8bit: -------------------------------------------------------------------------------- 1 | e4e65e2048ba373d89836907328cfb27 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossless-float: -------------------------------------------------------------------------------- 1 | 04b860cf4f9ecba36c053fdf83dac14a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossy-16bit: -------------------------------------------------------------------------------- 1 | c2aa8d83d14f799a9289b73bb6263fbc 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossy-24bit: -------------------------------------------------------------------------------- 1 | 0c04941424ba0981eac0e681130788f7 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossy-32bit: -------------------------------------------------------------------------------- 1 | 7b94c7ab8ec78ddf59bd7967199cdc8e 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossy-8bit: -------------------------------------------------------------------------------- 1 | f0e452d762d5e7b675970e6e67b781e7 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-lossy-float: -------------------------------------------------------------------------------- 1 | d4733e795e5af80da9a265cf83a6da69 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-matroskamode: -------------------------------------------------------------------------------- 1 | cffe4d47290ff3cef974e5aa6bc32559 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-speed-default: -------------------------------------------------------------------------------- 1 | a57bec3f270c3b294d1e5ea07760514c 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-speed-fast: -------------------------------------------------------------------------------- 1 | ebff08f89073e3f662f822df428711d5 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-speed-high: -------------------------------------------------------------------------------- 1 | a28c4d0f1d0c6ac7739e05150a8c401a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-speed-vhigh: -------------------------------------------------------------------------------- 1 | a28c4d0f1d0c6ac7739e05150a8c401a 2 | -------------------------------------------------------------------------------- /tests/ref/fate/wavpack-zerolsbs: -------------------------------------------------------------------------------- 1 | 33c09fedba88693f6cc423ca3763e7fe 2 | -------------------------------------------------------------------------------- /tests/ref/fate/ws_snd: -------------------------------------------------------------------------------- 1 | 023317c7876aa5271f086f753d84561b 2 | -------------------------------------------------------------------------------- /tests/ref/fate/xwma-demux: -------------------------------------------------------------------------------- 1 | CRC=0x2ac2159e 2 | -------------------------------------------------------------------------------- /tests/ref/fate/yop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/fate/yop -------------------------------------------------------------------------------- /tests/ref/lavf/asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/asf -------------------------------------------------------------------------------- /tests/ref/lavf/ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/ast -------------------------------------------------------------------------------- /tests/ref/lavf/au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/au -------------------------------------------------------------------------------- /tests/ref/lavf/avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/avi -------------------------------------------------------------------------------- /tests/ref/lavf/bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/bmp -------------------------------------------------------------------------------- /tests/ref/lavf/caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/caf -------------------------------------------------------------------------------- /tests/ref/lavf/dpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/dpx -------------------------------------------------------------------------------- /tests/ref/lavf/flm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/flm -------------------------------------------------------------------------------- /tests/ref/lavf/gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/gif -------------------------------------------------------------------------------- /tests/ref/lavf/gxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/gxf -------------------------------------------------------------------------------- /tests/ref/lavf/jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/jpg -------------------------------------------------------------------------------- /tests/ref/lavf/mka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/mka -------------------------------------------------------------------------------- /tests/ref/lavf/mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/mkv -------------------------------------------------------------------------------- /tests/ref/lavf/mmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/mmf -------------------------------------------------------------------------------- /tests/ref/lavf/mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/mov -------------------------------------------------------------------------------- /tests/ref/lavf/mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/mpg -------------------------------------------------------------------------------- /tests/ref/lavf/mxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/mxf -------------------------------------------------------------------------------- /tests/ref/lavf/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/nut -------------------------------------------------------------------------------- /tests/ref/lavf/ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/ogg -------------------------------------------------------------------------------- /tests/ref/lavf/pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/pam -------------------------------------------------------------------------------- /tests/ref/lavf/pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/pcx -------------------------------------------------------------------------------- /tests/ref/lavf/pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/pgm -------------------------------------------------------------------------------- /tests/ref/lavf/png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/png -------------------------------------------------------------------------------- /tests/ref/lavf/ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/ppm -------------------------------------------------------------------------------- /tests/ref/lavf/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/rm -------------------------------------------------------------------------------- /tests/ref/lavf/rso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/rso -------------------------------------------------------------------------------- /tests/ref/lavf/sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/sgi -------------------------------------------------------------------------------- /tests/ref/lavf/sox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/sox -------------------------------------------------------------------------------- /tests/ref/lavf/swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/swf -------------------------------------------------------------------------------- /tests/ref/lavf/tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/tga -------------------------------------------------------------------------------- /tests/ref/lavf/ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/ts -------------------------------------------------------------------------------- /tests/ref/lavf/tta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/tta -------------------------------------------------------------------------------- /tests/ref/lavf/voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/voc -------------------------------------------------------------------------------- /tests/ref/lavf/w64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/w64 -------------------------------------------------------------------------------- /tests/ref/lavf/wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/wav -------------------------------------------------------------------------------- /tests/ref/lavf/wtv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/wtv -------------------------------------------------------------------------------- /tests/ref/lavf/wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/wv -------------------------------------------------------------------------------- /tests/ref/lavf/xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/xbm -------------------------------------------------------------------------------- /tests/ref/lavf/xwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/ref/lavf/xwd -------------------------------------------------------------------------------- /tests/rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/rotozoom.c -------------------------------------------------------------------------------- /tests/test.ffmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/test.ffmeta -------------------------------------------------------------------------------- /tests/tiny_psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/tiny_psnr.c -------------------------------------------------------------------------------- /tests/tiny_ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/tiny_ssim.c -------------------------------------------------------------------------------- /tests/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/utils.c -------------------------------------------------------------------------------- /tests/videogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tests/videogen.c -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/aviocat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/aviocat.c -------------------------------------------------------------------------------- /tools/cl2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/cl2c -------------------------------------------------------------------------------- /tools/clean-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/clean-diff -------------------------------------------------------------------------------- /tools/coverity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/coverity.c -------------------------------------------------------------------------------- /tools/cws2fws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/cws2fws.c -------------------------------------------------------------------------------- /tools/dvd2concat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/dvd2concat -------------------------------------------------------------------------------- /tools/ffescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/ffescape.c -------------------------------------------------------------------------------- /tools/ffeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/ffeval.c -------------------------------------------------------------------------------- /tools/ffhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/ffhash.c -------------------------------------------------------------------------------- /tools/gen-rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/gen-rc -------------------------------------------------------------------------------- /tools/graph2dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/graph2dot.c -------------------------------------------------------------------------------- /tools/ismindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/ismindex.c -------------------------------------------------------------------------------- /tools/loudnorm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/loudnorm.rb -------------------------------------------------------------------------------- /tools/murge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/murge -------------------------------------------------------------------------------- /tools/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/normalize.py -------------------------------------------------------------------------------- /tools/patcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/patcheck -------------------------------------------------------------------------------- /tools/pktdumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/pktdumper.c -------------------------------------------------------------------------------- /tools/plotframes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/plotframes -------------------------------------------------------------------------------- /tools/probetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/probetest.c -------------------------------------------------------------------------------- /tools/seek_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/seek_print.c -------------------------------------------------------------------------------- /tools/sidxindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/sidxindex.c -------------------------------------------------------------------------------- /tools/sofa2wavs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/sofa2wavs.c -------------------------------------------------------------------------------- /tools/trasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/trasher.c -------------------------------------------------------------------------------- /tools/unwrap-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/unwrap-diff -------------------------------------------------------------------------------- /tools/yuvcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/yuvcmp.c -------------------------------------------------------------------------------- /tools/zmqsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/zmqsend.c -------------------------------------------------------------------------------- /tools/zmqshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/FFmpeg/HEAD/tools/zmqshell.py --------------------------------------------------------------------------------