├── Qt-5.12.5.7z ├── breakpad └── src │ ├── client │ └── windows │ │ ├── common │ │ ├── auto_critical_section.h │ │ └── ipc_protocol.h │ │ ├── crash_generation │ │ ├── client_info.h │ │ ├── crash_generation_client.h │ │ ├── crash_generation_server.h │ │ └── minidump_generator.h │ │ └── handler │ │ └── exception_handler.h │ ├── common │ ├── android │ │ ├── include │ │ │ ├── elf.h │ │ │ ├── link.h │ │ │ ├── sgidefs.h │ │ │ ├── stab.h │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── signal.h │ │ │ │ └── user.h │ │ │ └── ucontext.h │ │ ├── testing │ │ │ ├── include │ │ │ │ └── wchar.h │ │ │ ├── mkdtemp.h │ │ │ └── pthread_fixes.h │ │ └── ucontext_constants.h │ ├── basictypes.h │ ├── byte_cursor.h │ ├── convert_UTF.h │ ├── dwarf │ │ ├── bytereader-inl.h │ │ ├── bytereader.h │ │ ├── cfi_assembler.h │ │ ├── dwarf2diehandler.h │ │ ├── dwarf2enums.h │ │ ├── dwarf2reader.h │ │ ├── dwarf2reader_test_common.h │ │ ├── elf_reader.h │ │ ├── functioninfo.h │ │ ├── line_state_machine.h │ │ └── types.h │ ├── dwarf_cfi_to_module.h │ ├── dwarf_cu_to_module.h │ ├── dwarf_line_to_module.h │ ├── language.h │ ├── linux │ │ ├── crc32.h │ │ ├── dump_symbols.h │ │ ├── eintr_wrapper.h │ │ ├── elf_core_dump.h │ │ ├── elf_gnu_compat.h │ │ ├── elf_symbols_to_module.h │ │ ├── elfutils-inl.h │ │ ├── elfutils.h │ │ ├── file_id.h │ │ ├── google_crashdump_uploader.h │ │ ├── guid_creator.h │ │ ├── http_upload.h │ │ ├── ignore_ret.h │ │ ├── libcurl_wrapper.h │ │ ├── linux_libc_support.h │ │ ├── memory_mapped_file.h │ │ ├── safe_readlink.h │ │ ├── symbol_upload.h │ │ ├── synth_elf.h │ │ └── tests │ │ │ ├── auto_testfile.h │ │ │ └── crash_generator.h │ ├── mac │ │ ├── Breakpad.xcconfig │ │ ├── BreakpadDebug.xcconfig │ │ ├── BreakpadRelease.xcconfig │ │ ├── GTMDefines.h │ │ ├── GTMLogger.h │ │ ├── HTTPMultipartUpload.h │ │ ├── MachIPC.h │ │ ├── MachIPC.mm │ │ ├── arch_utilities.h │ │ ├── bootstrap_compat.h │ │ ├── byteswap.h │ │ ├── dump_syms.h │ │ ├── file_id.h │ │ ├── launch_reporter.h │ │ ├── macho_id.h │ │ ├── macho_reader.h │ │ ├── macho_utilities.h │ │ ├── macho_walker.h │ │ ├── scoped_task_suspend-inl.h │ │ ├── string_utilities.h │ │ ├── super_fat_arch.h │ │ └── testing │ │ │ └── GTMSenTestCase.h │ ├── md5.h │ ├── memory.h │ ├── memory_range.h │ ├── minidump_type_helper.h │ ├── module.h │ ├── scoped_ptr.h │ ├── simple_string_dictionary.h │ ├── solaris │ │ ├── dump_symbols.h │ │ ├── file_id.h │ │ ├── guid_creator.h │ │ └── message_output.h │ ├── stabs_reader.h │ ├── stabs_to_module.h │ ├── stdio_wrapper.h │ ├── string_conversion.h │ ├── symbol_data.h │ ├── test_assembler.h │ ├── testdata │ │ └── func-line-pairing.h │ ├── tests │ │ ├── auto_tempdir.h │ │ └── file_utils.h │ ├── unordered.h │ ├── using_std_string.h │ └── windows │ │ ├── dia_util.h │ │ ├── guid_string.h │ │ ├── http_upload.h │ │ ├── omap.h │ │ ├── omap_internal.h │ │ ├── pdb_source_line_writer.h │ │ └── string_utils-inl.h │ ├── google_breakpad │ ├── common │ │ ├── breakpad_types.h │ │ ├── minidump_cpu_amd64.h │ │ ├── minidump_cpu_arm.h │ │ ├── minidump_cpu_arm64.h │ │ ├── minidump_cpu_mips.h │ │ ├── minidump_cpu_ppc.h │ │ ├── minidump_cpu_ppc64.h │ │ ├── minidump_cpu_sparc.h │ │ ├── minidump_cpu_x86.h │ │ ├── minidump_exception_linux.h │ │ ├── minidump_exception_mac.h │ │ ├── minidump_exception_ps3.h │ │ ├── minidump_exception_solaris.h │ │ ├── minidump_exception_win32.h │ │ ├── minidump_format.h │ │ └── minidump_size.h │ └── processor │ │ ├── basic_source_line_resolver.h │ │ ├── call_stack.h │ │ ├── code_module.h │ │ ├── code_modules.h │ │ ├── dump_context.h │ │ ├── dump_object.h │ │ ├── exploitability.h │ │ ├── fast_source_line_resolver.h │ │ ├── memory_region.h │ │ ├── microdump.h │ │ ├── microdump_processor.h │ │ ├── minidump.h │ │ ├── minidump_processor.h │ │ ├── proc_maps_linux.h │ │ ├── process_result.h │ │ ├── process_state.h │ │ ├── source_line_resolver_base.h │ │ ├── source_line_resolver_interface.h │ │ ├── stack_frame.h │ │ ├── stack_frame_cpu.h │ │ ├── stack_frame_symbolizer.h │ │ ├── stackwalker.h │ │ ├── symbol_supplier.h │ │ └── system_info.h │ └── out │ ├── Debug │ └── obj │ │ └── client │ │ └── windows │ │ ├── common.cc.pdb │ │ ├── common.lib │ │ ├── crash_generation │ │ ├── crash_generation_client.cc.pdb │ │ └── crash_generation_client.lib │ │ └── handler │ │ ├── exception_handler.cc.pdb │ │ └── exception_handler.lib │ └── Release │ ├── .ninja_deps │ ├── .ninja_log │ ├── build.ninja │ ├── environment.x64 │ ├── environment.x86 │ ├── gyp-win-tool │ └── obj │ └── client │ └── windows │ ├── common.cc.pdb │ ├── common.lib │ ├── crash_generation │ ├── crash_generation_client.cc.pdb │ └── crash_generation_client.lib │ └── handler │ ├── exception_handler.cc.pdb │ └── exception_handler.lib ├── cleanup.bat ├── ffmpeg ├── libavcodec │ ├── Makefile │ ├── a64colors.h │ ├── a64tables.h │ ├── aac.h │ ├── aac_ac3_parser.h │ ├── aac_defines.h │ ├── aacadtsdec.h │ ├── aaccoder_trellis.h │ ├── aaccoder_twoloop.h │ ├── aacdectab.h │ ├── aacenc.h │ ├── aacenc_is.h │ ├── aacenc_ltp.h │ ├── aacenc_pred.h │ ├── aacenc_quantization.h │ ├── aacenc_quantization_misc.h │ ├── aacenc_tns.h │ ├── aacenc_utils.h │ ├── aacenctab.h │ ├── aacps.h │ ├── aacps_fixed_tablegen.h │ ├── aacps_tablegen.h │ ├── aacpsdsp.h │ ├── aacsbr.h │ ├── aacsbr_fixed_tablegen.h │ ├── aacsbr_tablegen.h │ ├── aacsbr_tablegen_common.h │ ├── aacsbrdata.h │ ├── aactab.h │ ├── aandcttab.h │ ├── ac3.h │ ├── ac3_parser.h │ ├── ac3dec.h │ ├── ac3dec_data.h │ ├── ac3dsp.h │ ├── ac3enc.h │ ├── ac3tab.h │ ├── acelp_filters.h │ ├── acelp_pitch_delay.h │ ├── acelp_vectors.h │ ├── adpcm.h │ ├── adpcm_data.h │ ├── adx.h │ ├── alac_data.h │ ├── alacdsp.h │ ├── amr.h │ ├── amrnbdata.h │ ├── amrwbdata.h │ ├── apng.h │ ├── ass.h │ ├── ass_split.h │ ├── asv.h │ ├── atrac.h │ ├── atrac1data.h │ ├── atrac3data.h │ ├── atrac3plus.h │ ├── atrac3plus_data.h │ ├── audio_frame_queue.h │ ├── audioconvert.h │ ├── audiodsp.h │ ├── avcodec.h │ ├── avcodecres.rc │ ├── avdct.h │ ├── avfft.h │ ├── bethsoftvideo.h │ ├── bgmc.h │ ├── binkdata.h │ ├── binkdsp.h │ ├── bintext.h │ ├── blockdsp.h │ ├── bmp.h │ ├── bsf.h │ ├── bswapdsp.h │ ├── bytestream.h │ ├── cabac.h │ ├── cabac_functions.h │ ├── canopus.h │ ├── cavs.h │ ├── cavsdsp.h │ ├── cbrt_data.h │ ├── cbrt_tablegen.h │ ├── celp_filters.h │ ├── celp_math.h │ ├── cfhd.h │ ├── cga_data.h │ ├── cookdata.h │ ├── copy_block.h │ ├── d3d11va.h │ ├── dca.h │ ├── dca_core.h │ ├── dca_exss.h │ ├── dca_lbr.h │ ├── dca_syncwords.h │ ├── dca_xll.h │ ├── dcaadpcm.h │ ├── dcadata.h │ ├── dcadct.h │ ├── dcadec.h │ ├── dcadsp.h │ ├── dcaenc.h │ ├── dcahuff.h │ ├── dcamath.h │ ├── dct.h │ ├── dct32.h │ ├── dctref.h │ ├── decode.h │ ├── dirac.h │ ├── dirac_arith.h │ ├── dirac_dwt.h │ ├── dirac_vlc.h │ ├── diracdsp.h │ ├── diractab.h │ ├── dnxhddata.h │ ├── dnxhdenc.h │ ├── dolby_e.h │ ├── dsd.h │ ├── dsd_tablegen.h │ ├── dv.h │ ├── dv_profile.h │ ├── dv_profile_internal.h │ ├── dv_tablegen.h │ ├── dvaudio.h │ ├── dvbtxt.h │ ├── dvdata.h │ ├── dxva2.h │ ├── dxva2_internal.h │ ├── eac3_data.h │ ├── eac3enc.h │ ├── eaidct.h │ ├── elbg.h │ ├── elsdec.h │ ├── error_resilience.h │ ├── evrcdata.h │ ├── exif.h │ ├── exrdsp.h │ ├── faandct.h │ ├── faanidct.h │ ├── faxcompr.h │ ├── fdctdsp.h │ ├── ffjni.h │ ├── fft-internal.h │ ├── fft.h │ ├── fft_table.h │ ├── ffv1.h │ ├── fits.h │ ├── flac.h │ ├── flacdata.h │ ├── flacdsp.h │ ├── flv.h │ ├── fmtconvert.h │ ├── frame_thread_encoder.h │ ├── g722.h │ ├── g722dsp.h │ ├── g723_1.h │ ├── g729.h │ ├── g729data.h │ ├── g729postfilter.h │ ├── get_bits.h │ ├── gif.h │ ├── golomb.h │ ├── gsm.h │ ├── gsmdec_data.h │ ├── h261.h │ ├── h263.h │ ├── h263_parser.h │ ├── h263data.h │ ├── h263dsp.h │ ├── h264.h │ ├── h2645_parse.h │ ├── h264_mvpred.h │ ├── h264_parse.h │ ├── h264_ps.h │ ├── h264_sei.h │ ├── h264chroma.h │ ├── h264data.h │ ├── h264dec.h │ ├── h264dsp.h │ ├── h264idct.h │ ├── h264pred.h │ ├── h264qpel.h │ ├── hap.h │ ├── hevc.h │ ├── hevc_data.h │ ├── hevc_parse.h │ ├── hevc_ps.h │ ├── hevc_sei.h │ ├── hevcdec.h │ ├── hevcdsp.h │ ├── hevcpred.h │ ├── hpeldsp.h │ ├── hq_hqa.h │ ├── hq_hqadsp.h │ ├── hqx.h │ ├── hqxdsp.h │ ├── htmlsubtitles.h │ ├── huffman.h │ ├── huffyuv.h │ ├── huffyuvdsp.h │ ├── huffyuvencdsp.h │ ├── hwaccel.h │ ├── idctdsp.h │ ├── iirfilter.h │ ├── imcdata.h │ ├── imdct15.h │ ├── indeo2data.h │ ├── indeo3data.h │ ├── indeo4data.h │ ├── indeo5data.h │ ├── internal.h │ ├── intrax8.h │ ├── intrax8dsp.h │ ├── intrax8huf.h │ ├── ivi.h │ ├── ivi_dsp.h │ ├── jacosub.h │ ├── jni.h │ ├── jpeg2000.h │ ├── jpeg2000dsp.h │ ├── jpeg2000dwt.h │ ├── jpegls.h │ ├── jpeglsdec.h │ ├── jpegtables.h │ ├── kbdwin.h │ ├── lagarithrac.h │ ├── lcl.h │ ├── libavcodec.a │ ├── libavcodec.pc │ ├── libopenh264.h │ ├── libopus.h │ ├── libschroedinger.h │ ├── libvpx.h │ ├── libwebpenc_common.h │ ├── libxvid.h │ ├── lossless_audiodsp.h │ ├── lossless_videodsp.h │ ├── lossless_videoencdsp.h │ ├── lpc.h │ ├── lsp.h │ ├── lzf.h │ ├── lzw.h │ ├── mathops.h │ ├── mdct15.h │ ├── me_cmp.h │ ├── mediacodec.h │ ├── mediacodec_surface.h │ ├── mediacodec_sw_buffer.h │ ├── mediacodec_wrapper.h │ ├── mediacodecdec_common.h │ ├── metasound_data.h │ ├── mjpeg.h │ ├── mjpegdec.h │ ├── mjpegenc.h │ ├── mjpegenc_common.h │ ├── mjpegenc_huffman.h │ ├── mlp.h │ ├── mlp_parser.h │ ├── mlpdsp.h │ ├── mlz.h │ ├── motion_est.h │ ├── motionpixels_tablegen.h │ ├── mpc.h │ ├── mpc7data.h │ ├── mpc8data.h │ ├── mpc8huff.h │ ├── mpcdata.h │ ├── mpeg12.h │ ├── mpeg12data.h │ ├── mpeg12vlc.h │ ├── mpeg4audio.h │ ├── mpeg4data.h │ ├── mpeg4video.h │ ├── mpeg4video_parser.h │ ├── mpeg_er.h │ ├── mpegaudio.h │ ├── mpegaudio_tablegen.h │ ├── mpegaudiodata.h │ ├── mpegaudiodecheader.h │ ├── mpegaudiodectab.h │ ├── mpegaudiodsp.h │ ├── mpegaudiotab.h │ ├── mpegpicture.h │ ├── mpegutils.h │ ├── mpegvideo.h │ ├── mpegvideodata.h │ ├── mpegvideodsp.h │ ├── mpegvideoencdsp.h │ ├── mqc.h │ ├── msgsmdec.h │ ├── msmpeg4.h │ ├── msmpeg4data.h │ ├── msrledec.h │ ├── mss12.h │ ├── mss2dsp.h │ ├── mss34dsp.h │ ├── nellymoser.h │ ├── nvenc.h │ ├── on2avcdata.h │ ├── options_table.h │ ├── opus.h │ ├── opus_celt.h │ ├── opus_pvq.h │ ├── opus_rc.h │ ├── opusenc.h │ ├── opusenc_psy.h │ ├── opusenc_utils.h │ ├── opustab.h │ ├── paf.h │ ├── parser.h │ ├── pcm_tablegen.h │ ├── pixblockdsp.h │ ├── pixels.h │ ├── png.h │ ├── pngdsp.h │ ├── pnm.h │ ├── profiles.h │ ├── proresdata.h │ ├── proresdec.h │ ├── proresdsp.h │ ├── psymodel.h │ ├── pthread_internal.h │ ├── put_bits.h │ ├── qcelpdata.h │ ├── qdm2_tablegen.h │ ├── qdm2data.h │ ├── qpeldsp.h │ ├── qsv.h │ ├── qsv_internal.h │ ├── qsvdec.h │ ├── qsvenc.h │ ├── ra144.h │ ├── ra288.h │ ├── ralfdata.h │ ├── rangecoder.h │ ├── ratecontrol.h │ ├── raw.h │ ├── rdft.h │ ├── rectangle.h │ ├── rl.h │ ├── rle.h │ ├── rnd_avg.h │ ├── roqvideo.h │ ├── rtjpeg.h │ ├── rv10.h │ ├── rv30data.h │ ├── rv34.h │ ├── rv34data.h │ ├── rv34dsp.h │ ├── rv34vlc.h │ ├── rv40data.h │ ├── rv40vlc2.h │ ├── sbr.h │ ├── sbrdsp.h │ ├── sgi.h │ ├── simple_idct.h │ ├── sinewin.h │ ├── sinewin_tablegen.h │ ├── sipr.h │ ├── sipr16kdata.h │ ├── siprdata.h │ ├── snappy.h │ ├── snow.h │ ├── snow_dwt.h │ ├── snowdata.h │ ├── sp5x.h │ ├── startcode.h │ ├── sunrast.h │ ├── svq1.h │ ├── svq1_cb.h │ ├── svq1_vlc.h │ ├── svq1enc.h │ ├── svq1enc_cb.h │ ├── synth_filter.h │ ├── tableprint.h │ ├── tableprint_vlc.h │ ├── tak.h │ ├── takdsp.h │ ├── targa.h │ ├── texturedsp.h │ ├── thread.h │ ├── tiff.h │ ├── tiff_common.h │ ├── tiff_data.h │ ├── tpeldsp.h │ ├── truemotion1data.h │ ├── truespeech_data.h │ ├── tscc2data.h │ ├── ttadata.h │ ├── ttadsp.h │ ├── ttaencdsp.h │ ├── twinvq.h │ ├── twinvq_data.h │ ├── ulti_cb.h │ ├── unary.h │ ├── utvideo.h │ ├── utvideodsp.h │ ├── v210dec.h │ ├── v210enc.h │ ├── v4l2_buffers.h │ ├── v4l2_context.h │ ├── v4l2_fmt.h │ ├── v4l2_m2m.h │ ├── vaapi.h │ ├── vaapi_decode.h │ ├── vaapi_encode.h │ ├── vaapi_encode_h26x.h │ ├── vaapi_internal.h │ ├── vc1.h │ ├── vc1_common.h │ ├── vc1_pred.h │ ├── vc1acdata.h │ ├── vc1data.h │ ├── vc1dsp.h │ ├── vc2enc_dwt.h │ ├── vda.h │ ├── vda_vt_internal.h │ ├── vdpau.h │ ├── vdpau_compat.h │ ├── vdpau_internal.h │ ├── version.h │ ├── videodsp.h │ ├── videotoolbox.h │ ├── vlc.h │ ├── vorbis.h │ ├── vorbis_enc_data.h │ ├── vorbis_parser.h │ ├── vorbis_parser_internal.h │ ├── vorbisdsp.h │ ├── vp3data.h │ ├── vp3dsp.h │ ├── vp56.h │ ├── vp56data.h │ ├── vp56dsp.h │ ├── vp5data.h │ ├── vp6data.h │ ├── vp8.h │ ├── vp8data.h │ ├── vp8dsp.h │ ├── vp9.h │ ├── vp9data.h │ ├── vp9dec.h │ ├── vp9dsp.h │ ├── vp9shared.h │ ├── wavpack.h │ ├── wavpackenc.h │ ├── wma.h │ ├── wma_common.h │ ├── wma_freqs.h │ ├── wmadata.h │ ├── wmaprodata.h │ ├── wmavoice_data.h │ ├── wmv2.h │ ├── wmv2data.h │ ├── wmv2dsp.h │ ├── x86 │ │ ├── Makefile │ │ ├── cabac.h │ │ ├── constants.h │ │ ├── fdct.h │ │ ├── fft.h │ │ ├── fpel.h │ │ ├── h264_i386.h │ │ ├── hevcdsp.h │ │ ├── hpeldsp.h │ │ ├── idctdsp.h │ │ ├── inline_asm.h │ │ ├── mathops.h │ │ ├── simple_idct.h │ │ ├── vc1dsp.h │ │ ├── vp56_arith.h │ │ ├── vp9dsp_init.h │ │ └── xvididct.h │ ├── xface.h │ ├── xiph.h │ ├── xvididct.h │ ├── xvmc.h │ ├── xvmc_internal.h │ └── xwd.h ├── libavformat │ ├── Makefile │ ├── aiff.h │ ├── apetag.h │ ├── asf.h │ ├── asfcrypt.h │ ├── ast.h │ ├── audiointerleave.h │ ├── avc.h │ ├── avformat.h │ ├── avformatres.rc │ ├── avi.h │ ├── avio.h │ ├── avio_internal.h │ ├── avlanguage.h │ ├── caf.h │ ├── dash.h │ ├── dv.h │ ├── ffm.h │ ├── ffmeta.h │ ├── flac_picture.h │ ├── flacenc.h │ ├── flv.h │ ├── gxf.h │ ├── hevc.h │ ├── http.h │ ├── httpauth.h │ ├── id3v1.h │ ├── id3v2.h │ ├── img2.h │ ├── internal.h │ ├── ircam.h │ ├── isom.h │ ├── libavformat.a │ ├── libavformat.pc │ ├── lrc.h │ ├── matroska.h │ ├── metadata.h │ ├── mms.h │ ├── mov_chan.h │ ├── movenc.h │ ├── movenccenc.h │ ├── mpeg.h │ ├── mpegts.h │ ├── mxf.h │ ├── network.h │ ├── nut.h │ ├── oggdec.h │ ├── oma.h │ ├── options_table.h │ ├── os_support.h │ ├── pcm.h │ ├── qtpalette.h │ ├── rawdec.h │ ├── rawenc.h │ ├── rdt.h │ ├── replaygain.h │ ├── riff.h │ ├── rm.h │ ├── rmsipr.h │ ├── rso.h │ ├── rtmp.h │ ├── rtmpcrypt.h │ ├── rtmpdh.h │ ├── rtmppkt.h │ ├── rtp.h │ ├── rtpdec.h │ ├── rtpdec_formats.h │ ├── rtpenc.h │ ├── rtpenc_chain.h │ ├── rtpproto.h │ ├── rtsp.h │ ├── rtspcodes.h │ ├── sauce.h │ ├── smjpeg.h │ ├── sox.h │ ├── spdif.h │ ├── srtp.h │ ├── subtitles.h │ ├── swf.h │ ├── tee_common.h │ ├── tls.h │ ├── url.h │ ├── urldecode.h │ ├── version.h │ ├── voc.h │ ├── vorbiscomment.h │ ├── vpcc.h │ ├── w64.h │ ├── wtv.h │ ├── wv.h │ └── yuv4mpeg.h ├── libavutil │ ├── Makefile │ ├── adler32.h │ ├── aes.h │ ├── aes_ctr.h │ ├── aes_internal.h │ ├── atomic.h │ ├── atomic_gcc.h │ ├── atomic_suncc.h │ ├── atomic_win32.h │ ├── attributes.h │ ├── audio_fifo.h │ ├── avassert.h │ ├── avconfig.h │ ├── avstring.h │ ├── avutil.h │ ├── avutilres.rc │ ├── base64.h │ ├── blowfish.h │ ├── bprint.h │ ├── bswap.h │ ├── buffer.h │ ├── buffer_internal.h │ ├── camellia.h │ ├── cast5.h │ ├── channel_layout.h │ ├── color_utils.h │ ├── colorspace.h │ ├── common.h │ ├── cpu.h │ ├── cpu_internal.h │ ├── crc.h │ ├── des.h │ ├── dict.h │ ├── display.h │ ├── downmix_info.h │ ├── dynarray.h │ ├── error.h │ ├── eval.h │ ├── ffmath.h │ ├── ffversion.h │ ├── fifo.h │ ├── file.h │ ├── fixed_dsp.h │ ├── float_dsp.h │ ├── frame.h │ ├── hash.h │ ├── hmac.h │ ├── hwcontext.h │ ├── hwcontext_cuda.h │ ├── hwcontext_cuda_internal.h │ ├── hwcontext_d3d11va.h │ ├── hwcontext_drm.h │ ├── hwcontext_dxva2.h │ ├── hwcontext_internal.h │ ├── hwcontext_qsv.h │ ├── hwcontext_vaapi.h │ ├── hwcontext_vdpau.h │ ├── hwcontext_videotoolbox.h │ ├── imgutils.h │ ├── imgutils_internal.h │ ├── integer.h │ ├── internal.h │ ├── intfloat.h │ ├── intmath.h │ ├── intreadwrite.h │ ├── lfg.h │ ├── libavutil.a │ ├── libavutil.pc │ ├── libm.h │ ├── lls.h │ ├── log.h │ ├── lzo.h │ ├── macros.h │ ├── mastering_display_metadata.h │ ├── mathematics.h │ ├── md5.h │ ├── mem.h │ ├── mem_internal.h │ ├── motion_vector.h │ ├── murmur3.h │ ├── opencl.h │ ├── opencl_internal.h │ ├── opt.h │ ├── parseutils.h │ ├── pca.h │ ├── pixdesc.h │ ├── pixelutils.h │ ├── pixfmt.h │ ├── qsort.h │ ├── random_seed.h │ ├── rational.h │ ├── rc4.h │ ├── replaygain.h │ ├── reverse.h │ ├── ripemd.h │ ├── samplefmt.h │ ├── sha.h │ ├── sha512.h │ ├── slicethread.h │ ├── softfloat.h │ ├── softfloat_ieee754.h │ ├── softfloat_tables.h │ ├── spherical.h │ ├── stereo3d.h │ ├── tablegen.h │ ├── tea.h │ ├── thread.h │ ├── threadmessage.h │ ├── time.h │ ├── time_internal.h │ ├── timecode.h │ ├── timer.h │ ├── timestamp.h │ ├── tree.h │ ├── twofish.h │ ├── version.h │ ├── wchar_filename.h │ ├── x86 │ │ ├── Makefile │ │ ├── asm.h │ │ ├── bswap.h │ │ ├── cpu.h │ │ ├── emms.h │ │ ├── intmath.h │ │ ├── intreadwrite.h │ │ ├── pixelutils.h │ │ ├── timer.h │ │ └── w64xmmtest.h │ ├── xga_font_data.h │ └── xtea.h ├── libswresample │ ├── Makefile │ ├── audioconvert.h │ ├── libswresample.a │ ├── libswresample.pc │ ├── resample.h │ ├── swresample.h │ ├── swresample_internal.h │ ├── swresampleres.rc │ ├── version.h │ └── x86 │ │ └── Makefile └── libswscale │ ├── Makefile │ ├── libswscale.a │ ├── libswscale.pc │ ├── rgb2rgb.h │ ├── swscale.h │ ├── swscale_internal.h │ ├── swscaleres.rc │ ├── version.h │ └── x86 │ └── Makefile ├── lzma └── C │ ├── 7z.h │ ├── 7zAlloc.h │ ├── 7zBuf.h │ ├── 7zCrc.h │ ├── 7zFile.h │ ├── 7zTypes.h │ ├── 7zVersion.h │ ├── 7zVersion.rc │ ├── Aes.h │ ├── Alloc.h │ ├── Bcj2.h │ ├── Bra.h │ ├── Compiler.h │ ├── CpuArch.h │ ├── Delta.h │ ├── DllSecur.h │ ├── LzFind.h │ ├── LzFindMt.h │ ├── LzHash.h │ ├── Lzma2Dec.h │ ├── Lzma2Enc.h │ ├── Lzma86.h │ ├── LzmaDec.h │ ├── LzmaEnc.h │ ├── LzmaLib.h │ ├── MtCoder.h │ ├── Ppmd.h │ ├── Ppmd7.h │ ├── Precomp.h │ ├── RotateDefs.h │ ├── Sha256.h │ ├── Sort.h │ ├── Threads.h │ ├── Types.h │ ├── Util │ └── LzmaLib │ │ ├── Debug │ │ ├── LzmaLib.lib │ │ └── LzmaLib.pdb │ │ └── Release │ │ ├── LzmaLib.lib │ │ └── LzmaLib.pdb │ ├── Xz.h │ ├── XzCrc64.h │ └── XzEnc.h ├── ninja └── ninja.exe ├── openal-soft ├── build │ ├── Debug │ │ ├── OpenAL32.lib │ │ ├── OpenAL32.pdb │ │ ├── common.lib │ │ └── common.pdb │ └── Release │ │ ├── OpenAL32.lib │ │ └── common.lib └── include │ ├── AL │ ├── al.h │ ├── alc.h │ ├── alext.h │ ├── efx-creative.h │ ├── efx-presets.h │ └── efx.h │ ├── align.h │ ├── almalloc.h │ ├── atomic.h │ ├── bool.h │ ├── math_defs.h │ ├── rwlock.h │ ├── static_assert.h │ ├── threads.h │ └── uintmap.h ├── openssl_1_1_1 ├── include │ ├── crypto │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aria.h │ │ ├── asn1.h │ │ ├── async.h │ │ ├── bn.h │ │ ├── bn_conf.h │ │ ├── bn_conf.h.in │ │ ├── bn_dh.h │ │ ├── bn_srp.h │ │ ├── chacha.h │ │ ├── cryptlib.h │ │ ├── ctype.h │ │ ├── dso_conf.h │ │ ├── dso_conf.h.in │ │ ├── ec.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── lhash.h │ │ ├── md32_common.h │ │ ├── objects.h │ │ ├── poly1305.h │ │ ├── rand.h │ │ ├── sha.h │ │ ├── siphash.h │ │ ├── sm2.h │ │ ├── sm2err.h │ │ ├── sm3.h │ │ ├── sm4.h │ │ ├── store.h │ │ └── x509.h │ ├── internal │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── bio.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── constant_time.h │ │ ├── cryptlib.h │ │ ├── dane.h │ │ ├── dso.h │ │ ├── dsoerr.h │ │ ├── err.h │ │ ├── nelem.h │ │ ├── numbers.h │ │ ├── o_dir.h │ │ ├── o_str.h │ │ ├── refcount.h │ │ ├── sockets.h │ │ ├── sslconf.h │ │ ├── thread_once.h │ │ └── tsan_assist.h │ └── openssl │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h └── out32.dbg │ ├── libcrypto.lib │ ├── libssl.lib │ └── ossl_static.pdb ├── opus ├── include │ ├── opus.h │ ├── opus_custom.h │ ├── opus_defines.h │ ├── opus_multistream.h │ └── opus_types.h └── win32 │ └── VS2015 │ └── Win32 │ ├── Debug │ ├── opus.lib │ └── opus.pdb │ └── Release │ ├── m.lib │ └── opus.lib ├── prepare.bat └── zlib ├── blast.h ├── contrib └── vstudio │ └── vc14 │ └── x86 │ ├── ZlibStatDebug │ └── zlibstat.lib │ └── ZlibStatReleaseWithoutAsm │ ├── zlibstat.lib │ └── zlibstat.pdb ├── crc32.h ├── crypt.h ├── deflate.h ├── gzguts.h ├── gzlog.h ├── infback9.h ├── inffast.h ├── inffix9.h ├── inffixed.h ├── inflate.h ├── inflate9.h ├── inftree9.h ├── inftrees.h ├── ioapi.h ├── iowin32.h ├── mztools.h ├── puff.h ├── trees.h ├── unzip.h ├── zconf.h ├── zfstream.h ├── zip.h ├── zlib.h ├── zstream.h └── zutil.h /Qt-5.12.5.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/Qt-5.12.5.7z -------------------------------------------------------------------------------- /breakpad/src/common/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/basictypes.h -------------------------------------------------------------------------------- /breakpad/src/common/byte_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/byte_cursor.h -------------------------------------------------------------------------------- /breakpad/src/common/convert_UTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/convert_UTF.h -------------------------------------------------------------------------------- /breakpad/src/common/dwarf/bytereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/dwarf/bytereader.h -------------------------------------------------------------------------------- /breakpad/src/common/dwarf/elf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/dwarf/elf_reader.h -------------------------------------------------------------------------------- /breakpad/src/common/dwarf/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/dwarf/types.h -------------------------------------------------------------------------------- /breakpad/src/common/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/language.h -------------------------------------------------------------------------------- /breakpad/src/common/linux/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/linux/crc32.h -------------------------------------------------------------------------------- /breakpad/src/common/linux/elfutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/linux/elfutils.h -------------------------------------------------------------------------------- /breakpad/src/common/linux/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/linux/file_id.h -------------------------------------------------------------------------------- /breakpad/src/common/linux/ignore_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/linux/ignore_ret.h -------------------------------------------------------------------------------- /breakpad/src/common/linux/synth_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/linux/synth_elf.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/GTMDefines.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/GTMLogger.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/MachIPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/MachIPC.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/MachIPC.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/MachIPC.mm -------------------------------------------------------------------------------- /breakpad/src/common/mac/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/byteswap.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/dump_syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/dump_syms.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/file_id.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/macho_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/macho_id.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/macho_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/macho_reader.h -------------------------------------------------------------------------------- /breakpad/src/common/mac/macho_walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/mac/macho_walker.h -------------------------------------------------------------------------------- /breakpad/src/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/md5.h -------------------------------------------------------------------------------- /breakpad/src/common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/memory.h -------------------------------------------------------------------------------- /breakpad/src/common/memory_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/memory_range.h -------------------------------------------------------------------------------- /breakpad/src/common/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/module.h -------------------------------------------------------------------------------- /breakpad/src/common/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/scoped_ptr.h -------------------------------------------------------------------------------- /breakpad/src/common/solaris/file_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/solaris/file_id.h -------------------------------------------------------------------------------- /breakpad/src/common/stabs_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/stabs_reader.h -------------------------------------------------------------------------------- /breakpad/src/common/stdio_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/stdio_wrapper.h -------------------------------------------------------------------------------- /breakpad/src/common/symbol_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/symbol_data.h -------------------------------------------------------------------------------- /breakpad/src/common/unordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/unordered.h -------------------------------------------------------------------------------- /breakpad/src/common/windows/omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/common/windows/omap.h -------------------------------------------------------------------------------- /breakpad/src/out/Release/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/breakpad/src/out/Release/.ninja_log -------------------------------------------------------------------------------- /cleanup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/cleanup.bat -------------------------------------------------------------------------------- /ffmpeg/libavcodec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/Makefile -------------------------------------------------------------------------------- /ffmpeg/libavcodec/a64colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/a64colors.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/a64tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/a64tables.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aac.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aac_ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aac_ac3_parser.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aac_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aac_defines.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacadtsdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacadtsdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacdectab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacdectab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacenc_is.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacenc_is.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacenc_ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacenc_ltp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacenc_pred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacenc_pred.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacenc_tns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacenc_tns.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacenc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacenc_utils.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacenctab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacenctab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacps.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacps_tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacps_tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacpsdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacpsdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacsbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacsbr.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacsbr_tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacsbr_tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aacsbrdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aacsbrdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aactab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aactab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/aandcttab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/aandcttab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ac3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ac3.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ac3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ac3dec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ac3dec_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ac3dec_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ac3dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ac3dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ac3enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ac3enc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ac3tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ac3tab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/acelp_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/acelp_filters.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/acelp_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/acelp_vectors.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/adpcm.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/adpcm_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/adpcm_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/adx.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/alac_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/alac_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/alacdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/alacdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/amr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/amr.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/amrnbdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/amrnbdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/amrwbdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/amrwbdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/apng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/apng.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ass.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ass_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ass_split.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/asv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/asv.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/atrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/atrac.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/atrac1data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/atrac1data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/atrac3data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/atrac3data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/atrac3plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/atrac3plus.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/atrac3plus_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/atrac3plus_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/audioconvert.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/audiodsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/audiodsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/avcodec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/avcodecres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/avcodecres.rc -------------------------------------------------------------------------------- /ffmpeg/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/avdct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/avfft.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/bethsoftvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/bethsoftvideo.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/bgmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/bgmc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/binkdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/binkdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/binkdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/binkdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/bintext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/bintext.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/blockdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/blockdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/bmp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/bsf.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/bswapdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/bswapdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/bytestream.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cabac.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cabac_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cabac_functions.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/canopus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/canopus.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cavs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cavs.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cavsdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cavsdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cbrt_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cbrt_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cbrt_tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cbrt_tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/celp_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/celp_filters.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/celp_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/celp_math.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cfhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cfhd.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cga_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cga_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/cookdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/cookdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/copy_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/copy_block.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dca.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dca_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dca_core.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dca_exss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dca_exss.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dca_lbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dca_lbr.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dca_syncwords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dca_syncwords.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dca_xll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dca_xll.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcaadpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcaadpcm.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcadata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcadct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcadct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcadec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcadec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcadsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcadsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcaenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcaenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcahuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcahuff.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dcamath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dcamath.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dct32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dct32.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dctref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dctref.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/decode.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dirac.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dirac_arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dirac_arith.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dirac_dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dirac_dwt.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dirac_vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dirac_vlc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/diracdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/diracdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/diractab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/diractab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dnxhddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dnxhddata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dnxhdenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dnxhdenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dolby_e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dolby_e.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dsd.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dsd_tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dsd_tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dv.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dv_tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dv_tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dvaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dvaudio.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dvbtxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dvbtxt.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dvdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dvdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dxva2.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/dxva2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/dxva2_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/eac3_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/eac3_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/eac3enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/eac3enc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/eaidct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/eaidct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/elbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/elbg.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/elsdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/elsdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/evrcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/evrcdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/exif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/exif.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/exrdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/exrdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/faandct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/faandct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/faanidct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/faanidct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/faxcompr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/faxcompr.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/fdctdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/fdctdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ffjni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ffjni.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/fft-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/fft-internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/fft.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/fft_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/fft_table.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ffv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ffv1.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/fits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/fits.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/flac.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/flacdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/flacdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/flacdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/flacdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/flv.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/fmtconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/fmtconvert.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/g722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/g722.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/g722dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/g722dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/g723_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/g723_1.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/g729.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/g729.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/g729data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/g729data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/g729postfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/g729postfilter.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/get_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/get_bits.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/gif.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/golomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/golomb.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/gsm.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/gsmdec_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/gsmdec_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h261.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h261.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h263.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h263.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h263_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h263_parser.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h263data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h263data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h263dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h263dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h2645_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h2645_parse.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264_mvpred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264_mvpred.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264_parse.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264_ps.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264_sei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264_sei.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264chroma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264chroma.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264dec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264idct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264pred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264pred.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/h264qpel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/h264qpel.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hap.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevc_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevc_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevc_parse.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevc_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevc_ps.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevc_sei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevc_sei.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevcdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevcdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevcdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevcdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hevcpred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hevcpred.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hpeldsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hpeldsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hq_hqa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hq_hqa.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hq_hqadsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hq_hqadsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hqx.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hqxdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hqxdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/htmlsubtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/htmlsubtitles.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/huffman.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/huffyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/huffyuv.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/huffyuvdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/huffyuvdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/huffyuvencdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/huffyuvencdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/hwaccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/hwaccel.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/idctdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/idctdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/iirfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/iirfilter.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/imcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/imcdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/imdct15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/imdct15.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/indeo2data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/indeo2data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/indeo3data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/indeo3data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/indeo4data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/indeo4data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/indeo5data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/indeo5data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/intrax8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/intrax8.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/intrax8dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/intrax8dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/intrax8huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/intrax8huf.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ivi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ivi.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ivi_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ivi_dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jacosub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jacosub.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jni.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jpeg2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jpeg2000.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jpeg2000dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jpeg2000dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jpeg2000dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jpeg2000dwt.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jpegls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jpegls.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jpeglsdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jpeglsdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/jpegtables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/jpegtables.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/kbdwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/kbdwin.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/lagarithrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/lagarithrac.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/lcl.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/libavcodec.a -------------------------------------------------------------------------------- /ffmpeg/libavcodec/libavcodec.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/libavcodec.pc -------------------------------------------------------------------------------- /ffmpeg/libavcodec/libopenh264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/libopenh264.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/libopus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/libopus.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/libschroedinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/libschroedinger.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/libvpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/libvpx.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/libxvid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/libxvid.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/lpc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/lsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/lzf.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/lzw.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mathops.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mdct15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mdct15.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/me_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/me_cmp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/metasound_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/metasound_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mjpeg.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mjpegdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mjpegdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mjpegenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mjpegenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mjpegenc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mjpegenc_common.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mlp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mlp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mlp_parser.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mlpdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mlpdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mlz.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/motion_est.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/motion_est.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpc7data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpc7data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpc8data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpc8data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpc8huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpc8huff.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpcdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpeg12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpeg12.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpeg12data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpeg12data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpeg12vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpeg12vlc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpeg4audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpeg4audio.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpeg4data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpeg4data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpeg4video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpeg4video.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpeg_er.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpeg_er.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegaudio.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegaudiodata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegaudiodata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegaudiodectab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegaudiodectab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegaudiodsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegaudiodsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegaudiotab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegaudiotab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegpicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegpicture.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegutils.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegvideo.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegvideodata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegvideodata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegvideodsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegvideodsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mpegvideoencdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mpegvideoencdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mqc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/msgsmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/msgsmdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/msmpeg4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/msmpeg4.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/msmpeg4data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/msmpeg4data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/msrledec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/msrledec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mss12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mss12.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mss2dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mss2dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/mss34dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/mss34dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/nellymoser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/nellymoser.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/nvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/nvenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/on2avcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/on2avcdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/options_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/options_table.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opus.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opus_celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opus_celt.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opus_pvq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opus_pvq.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opus_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opus_rc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opusenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opusenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opusenc_psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opusenc_psy.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opusenc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opusenc_utils.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/opustab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/opustab.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/paf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/paf.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/parser.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/pcm_tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/pcm_tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/pixblockdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/pixblockdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/pixels.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/png.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/pngdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/pngdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/pnm.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/profiles.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/proresdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/proresdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/proresdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/proresdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/proresdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/proresdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/psymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/psymodel.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/put_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/put_bits.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qcelpdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qcelpdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qdm2_tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qdm2_tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qdm2data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qdm2data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qpeldsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qpeldsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qsv.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qsv_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qsv_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qsvdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qsvdec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/qsvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/qsvenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ra144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ra144.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ra288.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ra288.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ralfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ralfdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rangecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rangecoder.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ratecontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ratecontrol.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/raw.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rdft.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rectangle.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rl.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rle.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rnd_avg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rnd_avg.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/roqvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/roqvideo.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rtjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rtjpeg.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv10.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv30data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv30data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv34.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv34data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv34data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv34dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv34dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv34vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv34vlc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv40data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv40data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/rv40vlc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/rv40vlc2.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sbr.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sbrdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sbrdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sgi.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/simple_idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/simple_idct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sinewin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sinewin.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sipr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sipr.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sipr16kdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sipr16kdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/siprdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/siprdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/snappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/snappy.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/snow.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/snow_dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/snow_dwt.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/snowdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/snowdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sp5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sp5x.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/startcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/startcode.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/sunrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/sunrast.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/svq1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/svq1.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/svq1_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/svq1_cb.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/svq1_vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/svq1_vlc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/svq1enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/svq1enc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/svq1enc_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/svq1enc_cb.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/synth_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/synth_filter.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tableprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tableprint.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tableprint_vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tableprint_vlc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tak.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/takdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/takdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/targa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/targa.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/texturedsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/texturedsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/thread.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tiff.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tiff_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tiff_common.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tiff_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tiff_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tpeldsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tpeldsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/truemotion1data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/truemotion1data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/truespeech_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/truespeech_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/tscc2data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/tscc2data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ttadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ttadata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ttadsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ttadsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ttaencdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ttaencdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/twinvq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/twinvq.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/twinvq_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/twinvq_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/ulti_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/ulti_cb.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/unary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/unary.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/utvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/utvideo.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/utvideodsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/utvideodsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/v210dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/v210dec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/v210enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/v210enc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/v4l2_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/v4l2_buffers.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/v4l2_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/v4l2_context.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/v4l2_fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/v4l2_fmt.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/v4l2_m2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/v4l2_m2m.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vaapi.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vaapi_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vaapi_decode.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vaapi_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vaapi_encode.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vaapi_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vaapi_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vc1.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vc1_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vc1_common.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vc1_pred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vc1_pred.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vc1acdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vc1acdata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vc1data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vc1data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vc1dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vc1dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vc2enc_dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vc2enc_dwt.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vda.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vda_vt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vda_vt_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vdpau.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vdpau_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vdpau_compat.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vdpau_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vdpau_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/version.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/videodsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/videodsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vlc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vorbis.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vorbis_enc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vorbis_enc_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vorbisdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vorbisdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp3data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp3data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp3dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp3dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp56.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp56.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp56data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp56data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp56dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp56dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp5data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp5data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp6data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp6data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp8.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp8data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp8data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp8dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp8dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp9.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp9data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp9data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp9dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp9dec.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp9dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp9dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/vp9shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/vp9shared.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wavpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wavpack.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wavpackenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wavpackenc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wma.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wma_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wma_common.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wma_freqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wma_freqs.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wmadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wmadata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wmaprodata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wmaprodata.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wmavoice_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wmavoice_data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wmv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wmv2.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wmv2data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wmv2data.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/wmv2dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/wmv2dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/Makefile -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/cabac.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/constants.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/fdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/fdct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/fft.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/fpel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/fpel.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/h264_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/h264_i386.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/hevcdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/hevcdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/hpeldsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/hpeldsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/idctdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/idctdsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/inline_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/inline_asm.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/mathops.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/simple_idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/simple_idct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/vc1dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/vc1dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/vp56_arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/vp56_arith.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/vp9dsp_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/vp9dsp_init.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/x86/xvididct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/x86/xvididct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/xface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/xface.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/xiph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/xiph.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/xvididct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/xvididct.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/xvmc.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/xvmc_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/xvmc_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavcodec/xwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavcodec/xwd.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/Makefile -------------------------------------------------------------------------------- /ffmpeg/libavformat/aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/aiff.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/apetag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/apetag.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/asf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/asf.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/asfcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/asfcrypt.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/ast.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/avc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/avformat.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/avformatres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/avformatres.rc -------------------------------------------------------------------------------- /ffmpeg/libavformat/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/avi.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/avio.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/avio_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/avio_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/avlanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/avlanguage.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/caf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/caf.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/dash.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/dv.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/ffm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/ffm.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/ffmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/ffmeta.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/flac_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/flac_picture.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/flacenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/flacenc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/flv.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/gxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/gxf.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/hevc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/http.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/httpauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/httpauth.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/id3v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/id3v1.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/id3v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/id3v2.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/img2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/img2.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/internal.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/ircam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/ircam.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/isom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/isom.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/libavformat.a -------------------------------------------------------------------------------- /ffmpeg/libavformat/libavformat.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/libavformat.pc -------------------------------------------------------------------------------- /ffmpeg/libavformat/lrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/lrc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/matroska.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/matroska.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/metadata.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/mms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/mms.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/mov_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/mov_chan.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/movenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/movenc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/movenccenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/movenccenc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/mpeg.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/mpegts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/mpegts.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/mxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/mxf.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/network.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/nut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/nut.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/oggdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/oggdec.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/oma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/oma.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/options_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/options_table.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/os_support.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/pcm.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/qtpalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/qtpalette.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rawdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rawdec.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rawenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rawenc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rdt.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/replaygain.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/riff.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rm.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rmsipr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rmsipr.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rso.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtmp.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtmpcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtmpcrypt.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtmpdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtmpdh.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtmppkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtmppkt.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtp.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtpdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtpdec.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtpdec_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtpdec_formats.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtpenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtpenc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtpenc_chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtpenc_chain.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtpproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtpproto.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtsp.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/rtspcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/rtspcodes.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/sauce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/sauce.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/smjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/smjpeg.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/sox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/sox.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/spdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/spdif.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/srtp.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/subtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/subtitles.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/swf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/swf.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/tee_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/tee_common.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/tls.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/url.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/urldecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/urldecode.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/version.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/voc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/vorbiscomment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/vorbiscomment.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/vpcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/vpcc.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/w64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/w64.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/wtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/wtv.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/wv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/wv.h -------------------------------------------------------------------------------- /ffmpeg/libavformat/yuv4mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavformat/yuv4mpeg.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/Makefile -------------------------------------------------------------------------------- /ffmpeg/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/adler32.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/aes.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/aes_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/aes_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/atomic.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/atomic_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/atomic_gcc.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/atomic_suncc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/atomic_suncc.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/atomic_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/atomic_win32.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/attributes.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/avassert.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/avconfig.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/avstring.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/avutil.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/avutilres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/avutilres.rc -------------------------------------------------------------------------------- /ffmpeg/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/base64.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/blowfish.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/bprint.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/bswap.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/buffer.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/buffer_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/buffer_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/camellia.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/cast5.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/channel_layout.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/color_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/color_utils.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/colorspace.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/common.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/cpu.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/cpu_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/cpu_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/crc.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/des.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/dict.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/display.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/downmix_info.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/dynarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/dynarray.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/error.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/eval.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/ffmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/ffmath.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/ffversion.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/fifo.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/file.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/fixed_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/fixed_dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/float_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/float_dsp.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/frame.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hash.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hmac.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hwcontext.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/imgutils.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/integer.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/internal.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/intfloat.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/intmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/intmath.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/lfg.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/libavutil.a -------------------------------------------------------------------------------- /ffmpeg/libavutil/libavutil.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/libavutil.pc -------------------------------------------------------------------------------- /ffmpeg/libavutil/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/libm.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/lls.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/log.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/lzo.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/macros.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/mathematics.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/md5.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/mem.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/mem_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/mem_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/motion_vector.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/murmur3.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/opencl.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/opencl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/opencl_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/opt.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/parseutils.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/pca.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/pixdesc.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/pixelutils.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/pixfmt.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/qsort.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/random_seed.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/rational.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/rc4.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/replaygain.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/reverse.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/ripemd.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/samplefmt.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/sha.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/sha512.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/slicethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/slicethread.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/softfloat.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/softfloat_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/softfloat_tables.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/spherical.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/stereo3d.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/tablegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/tablegen.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/tea.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/thread.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/threadmessage.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/time.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/time_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/time_internal.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/timecode.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/timer.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/timestamp.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/tree.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/twofish.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/version.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/wchar_filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/wchar_filename.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/Makefile -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/asm.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/bswap.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/cpu.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/emms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/emms.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/intmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/intmath.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/intreadwrite.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/pixelutils.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/timer.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/x86/w64xmmtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/x86/w64xmmtest.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/xga_font_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/xga_font_data.h -------------------------------------------------------------------------------- /ffmpeg/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libavutil/xtea.h -------------------------------------------------------------------------------- /ffmpeg/libswresample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswresample/Makefile -------------------------------------------------------------------------------- /ffmpeg/libswresample/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswresample/audioconvert.h -------------------------------------------------------------------------------- /ffmpeg/libswresample/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswresample/resample.h -------------------------------------------------------------------------------- /ffmpeg/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswresample/swresample.h -------------------------------------------------------------------------------- /ffmpeg/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswresample/version.h -------------------------------------------------------------------------------- /ffmpeg/libswresample/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswresample/x86/Makefile -------------------------------------------------------------------------------- /ffmpeg/libswscale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/Makefile -------------------------------------------------------------------------------- /ffmpeg/libswscale/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/libswscale.a -------------------------------------------------------------------------------- /ffmpeg/libswscale/libswscale.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/libswscale.pc -------------------------------------------------------------------------------- /ffmpeg/libswscale/rgb2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/rgb2rgb.h -------------------------------------------------------------------------------- /ffmpeg/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/swscale.h -------------------------------------------------------------------------------- /ffmpeg/libswscale/swscaleres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/swscaleres.rc -------------------------------------------------------------------------------- /ffmpeg/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/version.h -------------------------------------------------------------------------------- /ffmpeg/libswscale/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ffmpeg/libswscale/x86/Makefile -------------------------------------------------------------------------------- /lzma/C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7z.h -------------------------------------------------------------------------------- /lzma/C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7zAlloc.h -------------------------------------------------------------------------------- /lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /lzma/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7zFile.h -------------------------------------------------------------------------------- /lzma/C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7zTypes.h -------------------------------------------------------------------------------- /lzma/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7zVersion.h -------------------------------------------------------------------------------- /lzma/C/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/7zVersion.rc -------------------------------------------------------------------------------- /lzma/C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Aes.h -------------------------------------------------------------------------------- /lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Alloc.h -------------------------------------------------------------------------------- /lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Bra.h -------------------------------------------------------------------------------- /lzma/C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Compiler.h -------------------------------------------------------------------------------- /lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/CpuArch.h -------------------------------------------------------------------------------- /lzma/C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Delta.h -------------------------------------------------------------------------------- /lzma/C/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/DllSecur.h -------------------------------------------------------------------------------- /lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/LzFind.h -------------------------------------------------------------------------------- /lzma/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/LzFindMt.h -------------------------------------------------------------------------------- /lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/LzHash.h -------------------------------------------------------------------------------- /lzma/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Lzma2Dec.h -------------------------------------------------------------------------------- /lzma/C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Lzma2Enc.h -------------------------------------------------------------------------------- /lzma/C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Lzma86.h -------------------------------------------------------------------------------- /lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /lzma/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/LzmaLib.h -------------------------------------------------------------------------------- /lzma/C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/MtCoder.h -------------------------------------------------------------------------------- /lzma/C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Ppmd.h -------------------------------------------------------------------------------- /lzma/C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Ppmd7.h -------------------------------------------------------------------------------- /lzma/C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Precomp.h -------------------------------------------------------------------------------- /lzma/C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/RotateDefs.h -------------------------------------------------------------------------------- /lzma/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Sha256.h -------------------------------------------------------------------------------- /lzma/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Sort.h -------------------------------------------------------------------------------- /lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Threads.h -------------------------------------------------------------------------------- /lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Types.h -------------------------------------------------------------------------------- /lzma/C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/Xz.h -------------------------------------------------------------------------------- /lzma/C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/XzCrc64.h -------------------------------------------------------------------------------- /lzma/C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/lzma/C/XzEnc.h -------------------------------------------------------------------------------- /ninja/ninja.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/ninja/ninja.exe -------------------------------------------------------------------------------- /openal-soft/build/Debug/common.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/build/Debug/common.lib -------------------------------------------------------------------------------- /openal-soft/build/Debug/common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/build/Debug/common.pdb -------------------------------------------------------------------------------- /openal-soft/include/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/AL/al.h -------------------------------------------------------------------------------- /openal-soft/include/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/AL/alc.h -------------------------------------------------------------------------------- /openal-soft/include/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/AL/alext.h -------------------------------------------------------------------------------- /openal-soft/include/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/AL/efx.h -------------------------------------------------------------------------------- /openal-soft/include/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/align.h -------------------------------------------------------------------------------- /openal-soft/include/almalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/almalloc.h -------------------------------------------------------------------------------- /openal-soft/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/atomic.h -------------------------------------------------------------------------------- /openal-soft/include/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/bool.h -------------------------------------------------------------------------------- /openal-soft/include/math_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/math_defs.h -------------------------------------------------------------------------------- /openal-soft/include/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/rwlock.h -------------------------------------------------------------------------------- /openal-soft/include/static_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/static_assert.h -------------------------------------------------------------------------------- /openal-soft/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/threads.h -------------------------------------------------------------------------------- /openal-soft/include/uintmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openal-soft/include/uintmap.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/aria.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/asn1.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/bn.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/ec.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/err.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/evp.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/rand.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/sha.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/sm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/sm2.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/sm3.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/sm4.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/crypto/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/crypto/x509.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/aes.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/bio.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/bn.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/cms.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/ct.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/des.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/dh.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/dsa.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/ec.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/err.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/evp.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/kdf.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/md2.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/md4.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/md5.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/pem.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/rc2.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/rc4.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/rc5.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/rsa.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/sha.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/srp.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/ssl.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/ts.h -------------------------------------------------------------------------------- /openssl_1_1_1/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/include/openssl/ui.h -------------------------------------------------------------------------------- /openssl_1_1_1/out32.dbg/libssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/openssl_1_1_1/out32.dbg/libssl.lib -------------------------------------------------------------------------------- /opus/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/opus/include/opus.h -------------------------------------------------------------------------------- /opus/include/opus_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/opus/include/opus_custom.h -------------------------------------------------------------------------------- /opus/include/opus_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/opus/include/opus_defines.h -------------------------------------------------------------------------------- /opus/include/opus_multistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/opus/include/opus_multistream.h -------------------------------------------------------------------------------- /opus/include/opus_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/opus/include/opus_types.h -------------------------------------------------------------------------------- /prepare.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/prepare.bat -------------------------------------------------------------------------------- /zlib/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/blast.h -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/crypt.h -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/gzlog.h -------------------------------------------------------------------------------- /zlib/infback9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/infback9.h -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffix9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/inffix9.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inflate9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/inflate9.h -------------------------------------------------------------------------------- /zlib/inftree9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/inftree9.h -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/ioapi.h -------------------------------------------------------------------------------- /zlib/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/iowin32.h -------------------------------------------------------------------------------- /zlib/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/mztools.h -------------------------------------------------------------------------------- /zlib/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/puff.h -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/unzip.h -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/zfstream.h -------------------------------------------------------------------------------- /zlib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/zip.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/zstream.h -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telegramdesktop/dependencies_windows/HEAD/zlib/zutil.h --------------------------------------------------------------------------------