├── .gitattributes ├── AmfUnityPlugin ├── .gitignore ├── AmfUnityPlugin.sln ├── README.md ├── build │ ├── AmfUnityPlugin.vcxproj │ └── AmfUnityPlugin.vcxproj.filters ├── dist2Proj.cmd ├── makeDist.cmd ├── prepareUnity.cmd └── source │ ├── AMF │ ├── LICENSE.txt │ ├── README.md │ ├── Thirdparty │ │ └── ffmpeg │ │ │ └── ffmpeg-3.3.1 │ │ │ ├── ffmpeg-3.3.1.tar.bz2 │ │ │ ├── ffmpeg-build-win │ │ │ ├── get_sourcecode │ │ │ ├── win32 │ │ │ └── release │ │ │ │ ├── bin │ │ │ │ ├── avcodec-57.dll │ │ │ │ ├── avdevice-57.dll │ │ │ │ ├── avfilter-6.dll │ │ │ │ ├── avformat-57.dll │ │ │ │ ├── avresample-3.dll │ │ │ │ ├── avutil-55.dll │ │ │ │ ├── ffmpeg.exe │ │ │ │ ├── ffmpeg_g.exe │ │ │ │ ├── ffprobe.exe │ │ │ │ ├── ffprobe_g.exe │ │ │ │ ├── swresample-2.dll │ │ │ │ └── swscale-4.dll │ │ │ │ ├── include │ │ │ │ ├── cmdutils.h │ │ │ │ ├── cmdutils_common_opts.h │ │ │ │ ├── compat │ │ │ │ │ ├── aix │ │ │ │ │ │ └── math.h │ │ │ │ │ ├── atomics │ │ │ │ │ │ ├── dummy │ │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ │ ├── pthread │ │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ │ ├── suncc │ │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ │ └── win32 │ │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ ├── avisynth │ │ │ │ │ │ ├── avisynth_c.h │ │ │ │ │ │ ├── avs │ │ │ │ │ │ │ ├── capi.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── avxsynth_c.h │ │ │ │ │ │ └── windowsPorts │ │ │ │ │ │ │ ├── basicDataTypeConversions.h │ │ │ │ │ │ │ └── windows2linux.h │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── dynlink_cuda.h │ │ │ │ │ │ ├── dynlink_cuviddec.h │ │ │ │ │ │ ├── dynlink_loader.h │ │ │ │ │ │ └── dynlink_nvcuvid.h │ │ │ │ │ ├── dispatch_semaphore │ │ │ │ │ │ └── semaphore.h │ │ │ │ │ ├── float │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ └── limits.h │ │ │ │ │ ├── msvcrt │ │ │ │ │ │ └── snprintf.h │ │ │ │ │ ├── nvenc │ │ │ │ │ │ └── nvEncodeAPI.h │ │ │ │ │ ├── os2threads.h │ │ │ │ │ ├── tms470 │ │ │ │ │ │ └── math.h │ │ │ │ │ ├── va_copy.h │ │ │ │ │ ├── w32dlfcn.h │ │ │ │ │ └── w32pthreads.h │ │ │ │ ├── config.h │ │ │ │ ├── ffmpeg.h │ │ │ │ ├── ffserver_config.h │ │ │ │ ├── libavcodec │ │ │ │ │ ├── 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 │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── cabac.h │ │ │ │ │ │ ├── idct.h │ │ │ │ │ │ └── vp9dsp_init.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 │ │ │ │ │ ├── alpha │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── hpeldsp_alpha.h │ │ │ │ │ │ ├── idctdsp_alpha.h │ │ │ │ │ │ └── regdef.h │ │ │ │ │ ├── amr.h │ │ │ │ │ ├── amrnbdata.h │ │ │ │ │ ├── amrwbdata.h │ │ │ │ │ ├── apng.h │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── aac.h │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── audiodsp_arm.h │ │ │ │ │ │ ├── blockdsp_arm.h │ │ │ │ │ │ ├── cabac.h │ │ │ │ │ │ ├── dca.h │ │ │ │ │ │ ├── hevcdsp_arm.h │ │ │ │ │ │ ├── hpeldsp_arm.h │ │ │ │ │ │ ├── idct.h │ │ │ │ │ │ ├── idctdsp_arm.h │ │ │ │ │ │ ├── mathops.h │ │ │ │ │ │ ├── mpegvideo_arm.h │ │ │ │ │ │ ├── startcode.h │ │ │ │ │ │ ├── vc1dsp.h │ │ │ │ │ │ ├── videodsp_arm.h │ │ │ │ │ │ ├── vp56_arith.h │ │ │ │ │ │ ├── vp8.h │ │ │ │ │ │ ├── vp8dsp.h │ │ │ │ │ │ └── vp9dsp_init.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 │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── avr32 │ │ │ │ │ │ └── mathops.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 │ │ │ │ │ ├── dcadata.h │ │ │ │ │ ├── dcadct.h │ │ │ │ │ ├── dcadec.h │ │ │ │ │ ├── dcadsp.h │ │ │ │ │ ├── dcaenc.h │ │ │ │ │ ├── dcahuff.h │ │ │ │ │ ├── dcamath.h │ │ │ │ │ ├── dct.h │ │ │ │ │ ├── dct32.h │ │ │ │ │ ├── dctref.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dirac_arith.h │ │ │ │ │ ├── dirac_dwt.h │ │ │ │ │ ├── dirac_vlc.h │ │ │ │ │ ├── diracdsp.h │ │ │ │ │ ├── diractab.h │ │ │ │ │ ├── dnxhddata.h │ │ │ │ │ ├── dnxhdenc.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 │ │ │ │ │ ├── faandct.h │ │ │ │ │ ├── faanidct.h │ │ │ │ │ ├── faxcompr.h │ │ │ │ │ ├── fdctdsp.h │ │ │ │ │ ├── ffjni.h │ │ │ │ │ ├── fft-internal.h │ │ │ │ │ ├── fft.h │ │ │ │ │ ├── fft_table.h │ │ │ │ │ ├── ffv1.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── aacdec_mips.h │ │ │ │ │ │ ├── aacpsy_mips.h │ │ │ │ │ │ ├── aacsbr_mips.h │ │ │ │ │ │ ├── amrwbdec_mips.h │ │ │ │ │ │ ├── blockdsp_mips.h │ │ │ │ │ │ ├── compute_antialias_fixed.h │ │ │ │ │ │ ├── compute_antialias_float.h │ │ │ │ │ │ ├── constants.h │ │ │ │ │ │ ├── h263dsp_mips.h │ │ │ │ │ │ ├── h264chroma_mips.h │ │ │ │ │ │ ├── h264dsp_mips.h │ │ │ │ │ │ ├── h264pred_mips.h │ │ │ │ │ │ ├── hevc_macros_msa.h │ │ │ │ │ │ ├── hevcdsp_mips.h │ │ │ │ │ │ ├── hevcpred_mips.h │ │ │ │ │ │ ├── hpeldsp_mips.h │ │ │ │ │ │ ├── idctdsp_mips.h │ │ │ │ │ │ ├── lsp_mips.h │ │ │ │ │ │ ├── mathops.h │ │ │ │ │ │ ├── me_cmp_mips.h │ │ │ │ │ │ ├── mpegvideo_mips.h │ │ │ │ │ │ ├── pixblockdsp_mips.h │ │ │ │ │ │ ├── qpeldsp_mips.h │ │ │ │ │ │ ├── vc1dsp_mips.h │ │ │ │ │ │ ├── vp8dsp_mips.h │ │ │ │ │ │ ├── vp9dsp_mips.h │ │ │ │ │ │ ├── wmv2dsp_mips.h │ │ │ │ │ │ └── xvididct_mips.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 │ │ │ │ │ ├── opustab.h │ │ │ │ │ ├── paf.h │ │ │ │ │ ├── parser.h │ │ │ │ │ ├── pcm_tablegen.h │ │ │ │ │ ├── pixblockdsp.h │ │ │ │ │ ├── pixels.h │ │ │ │ │ ├── png.h │ │ │ │ │ ├── pngdsp.h │ │ │ │ │ ├── pnm.h │ │ │ │ │ ├── ppc │ │ │ │ │ │ ├── fdct.h │ │ │ │ │ │ ├── fft_vsx.h │ │ │ │ │ │ ├── hpeldsp_altivec.h │ │ │ │ │ │ └── mathops.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 │ │ │ │ │ ├── v210dec.h │ │ │ │ │ ├── v210enc.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vaapi_decode.h │ │ │ │ │ ├── vaapi_encode.h │ │ │ │ │ ├── vaapi_encode_h26x.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 │ │ │ │ │ │ ├── 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 │ │ │ │ ├── libavdevice │ │ │ │ │ ├── alsa.h │ │ │ │ │ ├── avdevice.h │ │ │ │ │ ├── decklink_common.h │ │ │ │ │ ├── decklink_common_c.h │ │ │ │ │ ├── decklink_dec.h │ │ │ │ │ ├── decklink_enc.h │ │ │ │ │ ├── dshow_capture.h │ │ │ │ │ ├── dv1394.h │ │ │ │ │ ├── fbdev_common.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── opengl_enc_shaders.h │ │ │ │ │ ├── oss.h │ │ │ │ │ ├── pulse_audio_common.h │ │ │ │ │ ├── sndio.h │ │ │ │ │ ├── timefilter.h │ │ │ │ │ ├── v4l2-common.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── af_volume.h │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── avf_showcqt.h │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── avfiltergraph.h │ │ │ │ │ ├── bbox.h │ │ │ │ │ ├── blend.h │ │ │ │ │ ├── bufferqueue.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ ├── bwdif.h │ │ │ │ │ ├── colorspacedsp.h │ │ │ │ │ ├── deshake.h │ │ │ │ │ ├── deshake_opencl.h │ │ │ │ │ ├── deshake_opencl_kernel.h │ │ │ │ │ ├── drawutils.h │ │ │ │ │ ├── dualinput.h │ │ │ │ │ ├── ebur128.h │ │ │ │ │ ├── filters.h │ │ │ │ │ ├── formats.h │ │ │ │ │ ├── framepool.h │ │ │ │ │ ├── framequeue.h │ │ │ │ │ ├── framesync.h │ │ │ │ │ ├── generate_wave_table.h │ │ │ │ │ ├── gradfun.h │ │ │ │ │ ├── hermite.h │ │ │ │ │ ├── interlace.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── lavfutils.h │ │ │ │ │ ├── lswsutils.h │ │ │ │ │ ├── maskedmerge.h │ │ │ │ │ ├── motion_estimation.h │ │ │ │ │ ├── opencl_allkernels.h │ │ │ │ │ ├── psnr.h │ │ │ │ │ ├── removegrain.h │ │ │ │ │ ├── scale.h │ │ │ │ │ ├── signature.h │ │ │ │ │ ├── ssim.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── tinterlace.h │ │ │ │ │ ├── transform.h │ │ │ │ │ ├── unsharp.h │ │ │ │ │ ├── unsharp_opencl.h │ │ │ │ │ ├── unsharp_opencl_kernel.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── vf_eq.h │ │ │ │ │ ├── vf_fspp.h │ │ │ │ │ ├── vf_hqdn3d.h │ │ │ │ │ ├── vf_idet.h │ │ │ │ │ ├── vf_noise.h │ │ │ │ │ ├── vf_pp7.h │ │ │ │ │ ├── vf_pullup.h │ │ │ │ │ ├── vf_spp.h │ │ │ │ │ ├── video.h │ │ │ │ │ ├── vidstabutils.h │ │ │ │ │ ├── w3fdif.h │ │ │ │ │ ├── window_func.h │ │ │ │ │ └── yadif.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── aiff.h │ │ │ │ │ ├── apetag.h │ │ │ │ │ ├── asf.h │ │ │ │ │ ├── asfcrypt.h │ │ │ │ │ ├── ast.h │ │ │ │ │ ├── audiointerleave.h │ │ │ │ │ ├── avc.h │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avi.h │ │ │ │ │ ├── avio.h │ │ │ │ │ ├── avio_internal.h │ │ │ │ │ ├── avlanguage.h │ │ │ │ │ ├── caf.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 │ │ │ │ │ ├── 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 │ │ │ │ ├── libavresample │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ └── asm-offsets.h │ │ │ │ │ ├── arm │ │ │ │ │ │ └── asm-offsets.h │ │ │ │ │ ├── audio_convert.h │ │ │ │ │ ├── audio_data.h │ │ │ │ │ ├── audio_mix.h │ │ │ │ │ ├── avresample.h │ │ │ │ │ ├── dither.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── resample.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── bswap.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── neontest.h │ │ │ │ │ │ └── timer.h │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── aes_internal.h │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── bswap.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── float_dsp_arm.h │ │ │ │ │ │ ├── intmath.h │ │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ │ ├── neontest.h │ │ │ │ │ │ └── timer.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── atomic_gcc.h │ │ │ │ │ ├── atomic_suncc.h │ │ │ │ │ ├── atomic_win32.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avr32 │ │ │ │ │ │ ├── bswap.h │ │ │ │ │ │ └── intreadwrite.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── bfin │ │ │ │ │ │ ├── bswap.h │ │ │ │ │ │ └── timer.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_dxva2.h │ │ │ │ │ ├── hwcontext_internal.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── imgutils_internal.h │ │ │ │ │ ├── integer.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intmath.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── libm.h │ │ │ │ │ ├── lls.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── lzo.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── mem_internal.h │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── asmdefs.h │ │ │ │ │ │ ├── generic_macros_msa.h │ │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ │ ├── libm_mips.h │ │ │ │ │ │ └── mmiutils.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opencl.h │ │ │ │ │ ├── opencl_internal.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pca.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── ppc │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── float_dsp_altivec.h │ │ │ │ │ │ ├── float_dsp_vsx.h │ │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── types_altivec.h │ │ │ │ │ │ └── util_altivec.h │ │ │ │ │ ├── qsort.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── reverse.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sh4 │ │ │ │ │ │ └── bswap.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.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 │ │ │ │ │ ├── tomi │ │ │ │ │ │ └── intreadwrite.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── wchar_filename.h │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── bswap.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── emms.h │ │ │ │ │ │ ├── intmath.h │ │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ └── w64xmmtest.h │ │ │ │ │ ├── xga_font_data.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libpostproc │ │ │ │ │ ├── postprocess.h │ │ │ │ │ ├── postprocess_internal.h │ │ │ │ │ └── version.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── audioconvert.h │ │ │ │ │ ├── resample.h │ │ │ │ │ ├── swresample.h │ │ │ │ │ ├── swresample_internal.h │ │ │ │ │ └── version.h │ │ │ │ ├── libswscale │ │ │ │ │ ├── ppc │ │ │ │ │ │ └── yuv2rgb_altivec.h │ │ │ │ │ ├── rgb2rgb.h │ │ │ │ │ ├── swscale.h │ │ │ │ │ ├── swscale_internal.h │ │ │ │ │ └── version.h │ │ │ │ └── tests │ │ │ │ │ └── checkasm │ │ │ │ │ └── checkasm.h │ │ │ │ └── lib │ │ │ │ ├── avcodec.lib │ │ │ │ ├── avdevice.lib │ │ │ │ ├── avfilter.lib │ │ │ │ ├── avformat.lib │ │ │ │ ├── avresample.lib │ │ │ │ ├── avutil.lib │ │ │ │ ├── swresample.lib │ │ │ │ └── swscale.lib │ │ │ └── x64 │ │ │ └── release │ │ │ ├── bin │ │ │ ├── avcodec-57.dll │ │ │ ├── avdevice-57.dll │ │ │ ├── avfilter-6.dll │ │ │ ├── avformat-57.dll │ │ │ ├── avresample-3.dll │ │ │ ├── avutil-55.dll │ │ │ ├── ffmpeg.exe │ │ │ ├── ffmpeg_g.exe │ │ │ ├── ffprobe.exe │ │ │ ├── ffprobe_g.exe │ │ │ ├── swresample-2.dll │ │ │ └── swscale-4.dll │ │ │ ├── include │ │ │ ├── cmdutils.h │ │ │ ├── cmdutils_common_opts.h │ │ │ ├── compat │ │ │ │ ├── aix │ │ │ │ │ └── math.h │ │ │ │ ├── atomics │ │ │ │ │ ├── dummy │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ ├── pthread │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ ├── suncc │ │ │ │ │ │ └── stdatomic.h │ │ │ │ │ └── win32 │ │ │ │ │ │ └── stdatomic.h │ │ │ │ ├── avisynth │ │ │ │ │ ├── avisynth_c.h │ │ │ │ │ ├── avs │ │ │ │ │ │ ├── capi.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── avxsynth_c.h │ │ │ │ │ └── windowsPorts │ │ │ │ │ │ ├── basicDataTypeConversions.h │ │ │ │ │ │ └── windows2linux.h │ │ │ │ ├── cuda │ │ │ │ │ ├── dynlink_cuda.h │ │ │ │ │ ├── dynlink_cuviddec.h │ │ │ │ │ ├── dynlink_loader.h │ │ │ │ │ └── dynlink_nvcuvid.h │ │ │ │ ├── dispatch_semaphore │ │ │ │ │ └── semaphore.h │ │ │ │ ├── float │ │ │ │ │ ├── float.h │ │ │ │ │ └── limits.h │ │ │ │ ├── msvcrt │ │ │ │ │ └── snprintf.h │ │ │ │ ├── nvenc │ │ │ │ │ └── nvEncodeAPI.h │ │ │ │ ├── os2threads.h │ │ │ │ ├── tms470 │ │ │ │ │ └── math.h │ │ │ │ ├── va_copy.h │ │ │ │ ├── w32dlfcn.h │ │ │ │ └── w32pthreads.h │ │ │ ├── config.h │ │ │ ├── ffmpeg.h │ │ │ ├── ffserver_config.h │ │ │ ├── libavcodec │ │ │ │ ├── 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 │ │ │ │ ├── aarch64 │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ ├── cabac.h │ │ │ │ │ ├── idct.h │ │ │ │ │ └── vp9dsp_init.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 │ │ │ │ ├── alpha │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── hpeldsp_alpha.h │ │ │ │ │ ├── idctdsp_alpha.h │ │ │ │ │ └── regdef.h │ │ │ │ ├── amr.h │ │ │ │ ├── amrnbdata.h │ │ │ │ ├── amrwbdata.h │ │ │ │ ├── apng.h │ │ │ │ ├── arm │ │ │ │ │ ├── aac.h │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ ├── audiodsp_arm.h │ │ │ │ │ ├── blockdsp_arm.h │ │ │ │ │ ├── cabac.h │ │ │ │ │ ├── dca.h │ │ │ │ │ ├── hevcdsp_arm.h │ │ │ │ │ ├── hpeldsp_arm.h │ │ │ │ │ ├── idct.h │ │ │ │ │ ├── idctdsp_arm.h │ │ │ │ │ ├── mathops.h │ │ │ │ │ ├── mpegvideo_arm.h │ │ │ │ │ ├── startcode.h │ │ │ │ │ ├── vc1dsp.h │ │ │ │ │ ├── videodsp_arm.h │ │ │ │ │ ├── vp56_arith.h │ │ │ │ │ ├── vp8.h │ │ │ │ │ ├── vp8dsp.h │ │ │ │ │ └── vp9dsp_init.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 │ │ │ │ ├── avdct.h │ │ │ │ ├── avfft.h │ │ │ │ ├── avr32 │ │ │ │ │ └── mathops.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 │ │ │ │ ├── dcadata.h │ │ │ │ ├── dcadct.h │ │ │ │ ├── dcadec.h │ │ │ │ ├── dcadsp.h │ │ │ │ ├── dcaenc.h │ │ │ │ ├── dcahuff.h │ │ │ │ ├── dcamath.h │ │ │ │ ├── dct.h │ │ │ │ ├── dct32.h │ │ │ │ ├── dctref.h │ │ │ │ ├── dirac.h │ │ │ │ ├── dirac_arith.h │ │ │ │ ├── dirac_dwt.h │ │ │ │ ├── dirac_vlc.h │ │ │ │ ├── diracdsp.h │ │ │ │ ├── diractab.h │ │ │ │ ├── dnxhddata.h │ │ │ │ ├── dnxhdenc.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 │ │ │ │ ├── faandct.h │ │ │ │ ├── faanidct.h │ │ │ │ ├── faxcompr.h │ │ │ │ ├── fdctdsp.h │ │ │ │ ├── ffjni.h │ │ │ │ ├── fft-internal.h │ │ │ │ ├── fft.h │ │ │ │ ├── fft_table.h │ │ │ │ ├── ffv1.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── mips │ │ │ │ │ ├── aacdec_mips.h │ │ │ │ │ ├── aacpsy_mips.h │ │ │ │ │ ├── aacsbr_mips.h │ │ │ │ │ ├── amrwbdec_mips.h │ │ │ │ │ ├── blockdsp_mips.h │ │ │ │ │ ├── compute_antialias_fixed.h │ │ │ │ │ ├── compute_antialias_float.h │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── h263dsp_mips.h │ │ │ │ │ ├── h264chroma_mips.h │ │ │ │ │ ├── h264dsp_mips.h │ │ │ │ │ ├── h264pred_mips.h │ │ │ │ │ ├── hevc_macros_msa.h │ │ │ │ │ ├── hevcdsp_mips.h │ │ │ │ │ ├── hevcpred_mips.h │ │ │ │ │ ├── hpeldsp_mips.h │ │ │ │ │ ├── idctdsp_mips.h │ │ │ │ │ ├── lsp_mips.h │ │ │ │ │ ├── mathops.h │ │ │ │ │ ├── me_cmp_mips.h │ │ │ │ │ ├── mpegvideo_mips.h │ │ │ │ │ ├── pixblockdsp_mips.h │ │ │ │ │ ├── qpeldsp_mips.h │ │ │ │ │ ├── vc1dsp_mips.h │ │ │ │ │ ├── vp8dsp_mips.h │ │ │ │ │ ├── vp9dsp_mips.h │ │ │ │ │ ├── wmv2dsp_mips.h │ │ │ │ │ └── xvididct_mips.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 │ │ │ │ ├── opustab.h │ │ │ │ ├── paf.h │ │ │ │ ├── parser.h │ │ │ │ ├── pcm_tablegen.h │ │ │ │ ├── pixblockdsp.h │ │ │ │ ├── pixels.h │ │ │ │ ├── png.h │ │ │ │ ├── pngdsp.h │ │ │ │ ├── pnm.h │ │ │ │ ├── ppc │ │ │ │ │ ├── fdct.h │ │ │ │ │ ├── fft_vsx.h │ │ │ │ │ ├── hpeldsp_altivec.h │ │ │ │ │ └── mathops.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 │ │ │ │ ├── v210dec.h │ │ │ │ ├── v210enc.h │ │ │ │ ├── vaapi.h │ │ │ │ ├── vaapi_decode.h │ │ │ │ ├── vaapi_encode.h │ │ │ │ ├── vaapi_encode_h26x.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 │ │ │ │ │ ├── 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 │ │ │ ├── libavdevice │ │ │ │ ├── alsa.h │ │ │ │ ├── avdevice.h │ │ │ │ ├── decklink_common.h │ │ │ │ ├── decklink_common_c.h │ │ │ │ ├── decklink_dec.h │ │ │ │ ├── decklink_enc.h │ │ │ │ ├── dshow_capture.h │ │ │ │ ├── dv1394.h │ │ │ │ ├── fbdev_common.h │ │ │ │ ├── internal.h │ │ │ │ ├── opengl_enc_shaders.h │ │ │ │ ├── oss.h │ │ │ │ ├── pulse_audio_common.h │ │ │ │ ├── sndio.h │ │ │ │ ├── timefilter.h │ │ │ │ ├── v4l2-common.h │ │ │ │ └── version.h │ │ │ ├── libavfilter │ │ │ │ ├── af_volume.h │ │ │ │ ├── audio.h │ │ │ │ ├── avf_showcqt.h │ │ │ │ ├── avfilter.h │ │ │ │ ├── avfiltergraph.h │ │ │ │ ├── bbox.h │ │ │ │ ├── blend.h │ │ │ │ ├── bufferqueue.h │ │ │ │ ├── buffersink.h │ │ │ │ ├── buffersrc.h │ │ │ │ ├── bwdif.h │ │ │ │ ├── colorspacedsp.h │ │ │ │ ├── deshake.h │ │ │ │ ├── deshake_opencl.h │ │ │ │ ├── deshake_opencl_kernel.h │ │ │ │ ├── drawutils.h │ │ │ │ ├── dualinput.h │ │ │ │ ├── ebur128.h │ │ │ │ ├── filters.h │ │ │ │ ├── formats.h │ │ │ │ ├── framepool.h │ │ │ │ ├── framequeue.h │ │ │ │ ├── framesync.h │ │ │ │ ├── generate_wave_table.h │ │ │ │ ├── gradfun.h │ │ │ │ ├── hermite.h │ │ │ │ ├── interlace.h │ │ │ │ ├── internal.h │ │ │ │ ├── lavfutils.h │ │ │ │ ├── lswsutils.h │ │ │ │ ├── maskedmerge.h │ │ │ │ ├── motion_estimation.h │ │ │ │ ├── opencl_allkernels.h │ │ │ │ ├── psnr.h │ │ │ │ ├── removegrain.h │ │ │ │ ├── scale.h │ │ │ │ ├── signature.h │ │ │ │ ├── ssim.h │ │ │ │ ├── stereo3d.h │ │ │ │ ├── thread.h │ │ │ │ ├── tinterlace.h │ │ │ │ ├── transform.h │ │ │ │ ├── unsharp.h │ │ │ │ ├── unsharp_opencl.h │ │ │ │ ├── unsharp_opencl_kernel.h │ │ │ │ ├── version.h │ │ │ │ ├── vf_eq.h │ │ │ │ ├── vf_fspp.h │ │ │ │ ├── vf_hqdn3d.h │ │ │ │ ├── vf_idet.h │ │ │ │ ├── vf_noise.h │ │ │ │ ├── vf_pp7.h │ │ │ │ ├── vf_pullup.h │ │ │ │ ├── vf_spp.h │ │ │ │ ├── video.h │ │ │ │ ├── vidstabutils.h │ │ │ │ ├── w3fdif.h │ │ │ │ ├── window_func.h │ │ │ │ └── yadif.h │ │ │ ├── libavformat │ │ │ │ ├── aiff.h │ │ │ │ ├── apetag.h │ │ │ │ ├── asf.h │ │ │ │ ├── asfcrypt.h │ │ │ │ ├── ast.h │ │ │ │ ├── audiointerleave.h │ │ │ │ ├── avc.h │ │ │ │ ├── avformat.h │ │ │ │ ├── avi.h │ │ │ │ ├── avio.h │ │ │ │ ├── avio_internal.h │ │ │ │ ├── avlanguage.h │ │ │ │ ├── caf.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 │ │ │ │ ├── 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 │ │ │ ├── libavresample │ │ │ │ ├── aarch64 │ │ │ │ │ └── asm-offsets.h │ │ │ │ ├── arm │ │ │ │ │ └── asm-offsets.h │ │ │ │ ├── audio_convert.h │ │ │ │ ├── audio_data.h │ │ │ │ ├── audio_mix.h │ │ │ │ ├── avresample.h │ │ │ │ ├── dither.h │ │ │ │ ├── internal.h │ │ │ │ ├── resample.h │ │ │ │ └── version.h │ │ │ ├── libavutil │ │ │ │ ├── aarch64 │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── neontest.h │ │ │ │ │ └── timer.h │ │ │ │ ├── adler32.h │ │ │ │ ├── aes.h │ │ │ │ ├── aes_ctr.h │ │ │ │ ├── aes_internal.h │ │ │ │ ├── arm │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── float_dsp_arm.h │ │ │ │ │ ├── intmath.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── neontest.h │ │ │ │ │ └── timer.h │ │ │ │ ├── atomic.h │ │ │ │ ├── atomic_gcc.h │ │ │ │ ├── atomic_suncc.h │ │ │ │ ├── atomic_win32.h │ │ │ │ ├── attributes.h │ │ │ │ ├── audio_fifo.h │ │ │ │ ├── avassert.h │ │ │ │ ├── avconfig.h │ │ │ │ ├── avr32 │ │ │ │ │ ├── bswap.h │ │ │ │ │ └── intreadwrite.h │ │ │ │ ├── avstring.h │ │ │ │ ├── avutil.h │ │ │ │ ├── base64.h │ │ │ │ ├── bfin │ │ │ │ │ ├── bswap.h │ │ │ │ │ └── timer.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_dxva2.h │ │ │ │ ├── hwcontext_internal.h │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ ├── imgutils.h │ │ │ │ ├── imgutils_internal.h │ │ │ │ ├── integer.h │ │ │ │ ├── internal.h │ │ │ │ ├── intfloat.h │ │ │ │ ├── intmath.h │ │ │ │ ├── intreadwrite.h │ │ │ │ ├── lfg.h │ │ │ │ ├── libm.h │ │ │ │ ├── lls.h │ │ │ │ ├── log.h │ │ │ │ ├── lzo.h │ │ │ │ ├── macros.h │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ ├── mathematics.h │ │ │ │ ├── md5.h │ │ │ │ ├── mem.h │ │ │ │ ├── mem_internal.h │ │ │ │ ├── mips │ │ │ │ │ ├── asmdefs.h │ │ │ │ │ ├── generic_macros_msa.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── libm_mips.h │ │ │ │ │ └── mmiutils.h │ │ │ │ ├── motion_vector.h │ │ │ │ ├── murmur3.h │ │ │ │ ├── opencl.h │ │ │ │ ├── opencl_internal.h │ │ │ │ ├── opt.h │ │ │ │ ├── parseutils.h │ │ │ │ ├── pca.h │ │ │ │ ├── pixdesc.h │ │ │ │ ├── pixelutils.h │ │ │ │ ├── pixfmt.h │ │ │ │ ├── ppc │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── float_dsp_altivec.h │ │ │ │ │ ├── float_dsp_vsx.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── types_altivec.h │ │ │ │ │ └── util_altivec.h │ │ │ │ ├── qsort.h │ │ │ │ ├── random_seed.h │ │ │ │ ├── rational.h │ │ │ │ ├── rc4.h │ │ │ │ ├── replaygain.h │ │ │ │ ├── reverse.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── samplefmt.h │ │ │ │ ├── sh4 │ │ │ │ │ └── bswap.h │ │ │ │ ├── sha.h │ │ │ │ ├── sha512.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 │ │ │ │ ├── tomi │ │ │ │ │ └── intreadwrite.h │ │ │ │ ├── tree.h │ │ │ │ ├── twofish.h │ │ │ │ ├── version.h │ │ │ │ ├── wchar_filename.h │ │ │ │ ├── x86 │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── emms.h │ │ │ │ │ ├── intmath.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── timer.h │ │ │ │ │ └── w64xmmtest.h │ │ │ │ ├── xga_font_data.h │ │ │ │ └── xtea.h │ │ │ ├── libpostproc │ │ │ │ ├── postprocess.h │ │ │ │ ├── postprocess_internal.h │ │ │ │ └── version.h │ │ │ ├── libswresample │ │ │ │ ├── audioconvert.h │ │ │ │ ├── resample.h │ │ │ │ ├── swresample.h │ │ │ │ ├── swresample_internal.h │ │ │ │ └── version.h │ │ │ ├── libswscale │ │ │ │ ├── ppc │ │ │ │ │ └── yuv2rgb_altivec.h │ │ │ │ ├── rgb2rgb.h │ │ │ │ ├── swscale.h │ │ │ │ ├── swscale_internal.h │ │ │ │ └── version.h │ │ │ └── tests │ │ │ │ └── checkasm │ │ │ │ └── checkasm.h │ │ │ └── lib │ │ │ ├── avcodec.lib │ │ │ ├── avdevice.lib │ │ │ ├── avfilter.lib │ │ │ ├── avformat.lib │ │ │ ├── avresample.lib │ │ │ ├── avutil.lib │ │ │ ├── swresample.lib │ │ │ └── swscale.lib │ └── amf │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── doc │ │ ├── AMF_API_Reference.pdf │ │ ├── AMF_SDK_EULA.rtf │ │ ├── AMF_Video_Converter_API.pdf │ │ ├── AMF_Video_Decode_API.pdf │ │ ├── AMF_Video_Encode_API.pdf │ │ ├── AMF_Video_Encode_HEVC_API.pdf │ │ └── Readme.txt │ │ └── public │ │ ├── common │ │ ├── .gitattributes │ │ ├── AMFFactory.cpp │ │ ├── AMFFactory.h │ │ ├── AMFSTL.cpp │ │ ├── AMFSTL.h │ │ ├── ByteArray.h │ │ ├── CurrentTime.h │ │ ├── CurrentTimeImpl.cpp │ │ ├── CurrentTimeImpl.h │ │ ├── DataStream.h │ │ ├── DataStreamFactory.cpp │ │ ├── DataStreamFile.cpp │ │ ├── DataStreamFile.h │ │ ├── DataStreamMemory.cpp │ │ ├── DataStreamMemory.h │ │ ├── IOCapsImpl.cpp │ │ ├── IOCapsImpl.h │ │ ├── InterfaceImpl.h │ │ ├── ObservableImpl.h │ │ ├── PropertyStorageExImpl.cpp │ │ ├── PropertyStorageExImpl.h │ │ ├── PropertyStorageImpl.h │ │ ├── Thread.cpp │ │ ├── Thread.h │ │ ├── TraceAdapter.cpp │ │ ├── TraceAdapter.h │ │ └── Windows │ │ │ └── ThreadWindows.cpp │ │ ├── include │ │ ├── .gitattributes │ │ ├── components │ │ │ ├── Ambisonic2SRenderer.h │ │ │ ├── AudioCapture.h │ │ │ ├── Component.h │ │ │ ├── ComponentCaps.h │ │ │ ├── DisplayCapture.h │ │ │ ├── FFMPEGAudioConverter.h │ │ │ ├── FFMPEGAudioDecoder.h │ │ │ ├── FFMPEGAudioEncoder.h │ │ │ ├── FFMPEGComponents.h │ │ │ ├── FFMPEGFileDemuxer.h │ │ │ ├── FFMPEGFileMuxer.h │ │ │ ├── MediaSource.h │ │ │ ├── VideoConverter.h │ │ │ ├── VideoDecoderUVD.h │ │ │ ├── VideoEncoderHEVC.h │ │ │ └── VideoEncoderVCE.h │ │ └── core │ │ │ ├── AudioBuffer.h │ │ │ ├── Buffer.h │ │ │ ├── Compute.h │ │ │ ├── ComputeFactory.h │ │ │ ├── Context.h │ │ │ ├── Data.h │ │ │ ├── Debug.h │ │ │ ├── Dump.h │ │ │ ├── Factory.h │ │ │ ├── Interface.h │ │ │ ├── Plane.h │ │ │ ├── Platform.h │ │ │ ├── PropertyStorage.h │ │ │ ├── PropertyStorageEx.h │ │ │ ├── Result.h │ │ │ ├── Surface.h │ │ │ ├── Trace.h │ │ │ ├── Variant.h │ │ │ └── Version.h │ │ ├── proj │ │ ├── vs2013 │ │ │ └── ComponentsFFMPEG │ │ │ │ ├── ComponentsFFMPEG.vcxproj │ │ │ │ └── ComponentsFFMPEG.vcxproj.filters │ │ ├── vs2015 │ │ │ ├── AmfMediaCommon.sln │ │ │ ├── AmfMediaCommon │ │ │ │ ├── AmfMediaCommon.vcxproj │ │ │ │ └── AmfMediaCommon.vcxproj.filters │ │ │ └── ComponentsFFMPEG │ │ │ │ ├── ComponentsFFMPEG.vcxproj │ │ │ │ └── ComponentsFFMPEG.vcxproj.filters │ │ └── vs2017 │ │ │ ├── AmfMediaCommon.sln │ │ │ ├── AmfMediaCommon │ │ │ ├── AmfMediaCommon.vcxproj │ │ │ └── AmfMediaCommon.vcxproj.filters │ │ │ └── ComponentsFFMPEG │ │ │ ├── ComponentsFFMPEG.vcxproj │ │ │ └── ComponentsFFMPEG.vcxproj.filters │ │ ├── props │ │ ├── AMF_VS2013.props │ │ ├── AMF_VS2015.props │ │ ├── AMF_VS2017.props │ │ ├── SDK32-10.0.10586.0.props │ │ └── SDK64-10.0.10586.0.props │ │ ├── samples │ │ ├── CPPSamples │ │ │ ├── CapabilityManager │ │ │ │ ├── CapabilityManager.cpp │ │ │ │ ├── CapabilityManager_VS2013.vcxproj │ │ │ │ ├── CapabilityManager_VS2013.vcxproj.filters │ │ │ │ ├── CapabilityManager_VS2015.vcxproj │ │ │ │ ├── CapabilityManager_VS2015.vcxproj.filters │ │ │ │ ├── CapabilityManager_VS2017.vcxproj │ │ │ │ ├── CapabilityManager_VS2017.vcxproj.filters │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── DVR │ │ │ │ ├── DVR.cpp │ │ │ │ ├── DVR.h │ │ │ │ ├── DVR.ico │ │ │ │ ├── DVR.rc │ │ │ │ ├── DVR_VS2013.vcxproj │ │ │ │ ├── DVR_VS2013.vcxproj.filters │ │ │ │ ├── DVR_VS2015.vcxproj │ │ │ │ ├── DVR_VS2015.vcxproj.filters │ │ │ │ ├── DVR_VS2017.vcxproj │ │ │ │ ├── DVR_VS2017.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── targetver.h │ │ │ ├── PlaybackHW │ │ │ │ ├── PlaybackHW.cpp │ │ │ │ ├── PlaybackHW.h │ │ │ │ ├── PlaybackHW.ico │ │ │ │ ├── PlaybackHW.rc │ │ │ │ ├── PlaybackHW_VS2013.vcxproj │ │ │ │ ├── PlaybackHW_VS2013.vcxproj.filters │ │ │ │ ├── PlaybackHW_VS2015.vcxproj │ │ │ │ ├── PlaybackHW_VS2015.vcxproj.filters │ │ │ │ ├── PlaybackHW_VS2017.vcxproj │ │ │ │ ├── PlaybackHW_VS2017.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ ├── small.ico │ │ │ │ └── targetver.h │ │ │ ├── SVCSplitter │ │ │ │ ├── SVCSplitter.cpp │ │ │ │ ├── SVCSplitter.h │ │ │ │ ├── SVCSplitter_VS2013.vcxproj │ │ │ │ ├── SVCSplitter_VS2013.vcxproj.filters │ │ │ │ ├── SVCSplitter_VS2015.vcxproj │ │ │ │ ├── SVCSplitter_VS2015.vcxproj.filters │ │ │ │ ├── SVCSplitter_VS2017.vcxproj │ │ │ │ └── SVCSplitter_VS2017.vcxproj.filters │ │ │ ├── SimpleConverter │ │ │ │ ├── SimpleConverter.cpp │ │ │ │ ├── SimpleConverter_VS2013.vcxproj │ │ │ │ ├── SimpleConverter_VS2013.vcxproj.filters │ │ │ │ ├── SimpleConverter_VS2015.vcxproj │ │ │ │ ├── SimpleConverter_VS2015.vcxproj.filters │ │ │ │ ├── SimpleConverter_VS2017.vcxproj │ │ │ │ └── SimpleConverter_VS2017.vcxproj.filters │ │ │ ├── SimpleDecoder │ │ │ │ ├── SimpleDecoder.cpp │ │ │ │ ├── SimpleDecoder_VS2013.vcxproj │ │ │ │ ├── SimpleDecoder_VS2013.vcxproj.filters │ │ │ │ ├── SimpleDecoder_VS2015.vcxproj │ │ │ │ ├── SimpleDecoder_VS2015.vcxproj.filters │ │ │ │ ├── SimpleDecoder_VS2017.vcxproj │ │ │ │ └── SimpleDecoder_VS2017.vcxproj.filters │ │ │ ├── SimpleEncoder │ │ │ │ ├── SimpleEncoder.cpp │ │ │ │ ├── SimpleEncoder_VS2013.vcxproj │ │ │ │ ├── SimpleEncoder_VS2013.vcxproj.filters │ │ │ │ ├── SimpleEncoder_VS2015.vcxproj │ │ │ │ ├── SimpleEncoder_VS2015.vcxproj.filters │ │ │ │ ├── SimpleEncoder_VS2017.vcxproj │ │ │ │ └── SimpleEncoder_VS2017.vcxproj.filters │ │ │ ├── TranscodeHW │ │ │ │ ├── TranscodeHW.cpp │ │ │ │ ├── TranscodeHW_VS2013.vcxproj │ │ │ │ ├── TranscodeHW_VS2013.vcxproj.filters │ │ │ │ ├── TranscodeHW_VS2015.vcxproj │ │ │ │ ├── TranscodeHW_VS2015.vcxproj.filters │ │ │ │ ├── TranscodeHW_VS2017.vcxproj │ │ │ │ ├── TranscodeHW_VS2017.vcxproj.filters │ │ │ │ ├── TranscodeIntraRefresh.bat │ │ │ │ ├── TranscodeSVC.bat │ │ │ │ └── TranscodeSpeed.bat │ │ │ ├── VCEEncoderD3D │ │ │ │ ├── RenderEncodePipeline.cpp │ │ │ │ ├── RenderEncodePipeline.h │ │ │ │ ├── RenderWindow.cpp │ │ │ │ ├── RenderWindow.h │ │ │ │ ├── VCEEncoderD3D.bat │ │ │ │ ├── VCEEncoderD3D.cpp │ │ │ │ ├── VCEEncoderD3D.rc │ │ │ │ ├── VCEEncoderD3DPerformanceTest.bat │ │ │ │ ├── VCEEncoderD3D_SVC_dx9.bat │ │ │ │ ├── VCEEncoderD3D_VS2013.vcxproj │ │ │ │ ├── VCEEncoderD3D_VS2013.vcxproj.filters │ │ │ │ ├── VCEEncoderD3D_VS2015.vcxproj │ │ │ │ ├── VCEEncoderD3D_VS2015.vcxproj.filters │ │ │ │ ├── VCEEncoderD3D_VS2017.vcxproj │ │ │ │ ├── VCEEncoderD3D_VS2017.vcxproj.filters │ │ │ │ ├── VideoRender.cpp │ │ │ │ ├── VideoRender.h │ │ │ │ ├── VideoRenderDX11.cpp │ │ │ │ ├── VideoRenderDX11.h │ │ │ │ ├── VideoRenderDX9.cpp │ │ │ │ ├── VideoRenderDX9.h │ │ │ │ ├── VideoRenderHost.cpp │ │ │ │ ├── VideoRenderHost.h │ │ │ │ ├── VideoRenderOpenCL.cpp │ │ │ │ ├── VideoRenderOpenCL.h │ │ │ │ ├── VideoRenderOpenGL.cpp │ │ │ │ ├── VideoRenderOpenGL.h │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ └── common │ │ │ │ ├── AudioPresenter.cpp │ │ │ │ ├── AudioPresenter.h │ │ │ │ ├── AudioPresenterWin.cpp │ │ │ │ ├── AudioPresenterWin.h │ │ │ │ ├── BackBufferPresenter.cpp │ │ │ │ ├── BackBufferPresenter.h │ │ │ │ ├── BitStreamParser.cpp │ │ │ │ ├── BitStreamParser.h │ │ │ │ ├── BitStreamParserH264.cpp │ │ │ │ ├── BitStreamParserH264.h │ │ │ │ ├── BitStreamParserH265.cpp │ │ │ │ ├── BitStreamParserH265.h │ │ │ │ ├── CmdLineParser.cpp │ │ │ │ ├── CmdLineParser.h │ │ │ │ ├── CmdLogger.cpp │ │ │ │ ├── CmdLogger.h │ │ │ │ ├── DeviceDX11.cpp │ │ │ │ ├── DeviceDX11.h │ │ │ │ ├── DeviceDX9.cpp │ │ │ │ ├── DeviceDX9.h │ │ │ │ ├── DeviceOpenCL.cpp │ │ │ │ ├── DeviceOpenCL.h │ │ │ │ ├── DeviceOpenGL.cpp │ │ │ │ ├── DeviceOpenGL.h │ │ │ │ ├── DisplayDvrPipeline.cpp │ │ │ │ ├── DisplayDvrPipeline.h │ │ │ │ ├── EncoderParamsAVC.cpp │ │ │ │ ├── EncoderParamsAVC.h │ │ │ │ ├── EncoderParamsHEVC.cpp │ │ │ │ ├── EncoderParamsHEVC.h │ │ │ │ ├── EncoderPipeline.cpp │ │ │ │ ├── EncoderPipeline.h │ │ │ │ ├── OpenCLLoader.cpp │ │ │ │ ├── OpenCLLoader.h │ │ │ │ ├── Options.cpp │ │ │ │ ├── Options.h │ │ │ │ ├── ParametersStorage.cpp │ │ │ │ ├── ParametersStorage.h │ │ │ │ ├── Pipeline.cpp │ │ │ │ ├── Pipeline.h │ │ │ │ ├── PipelineElement.h │ │ │ │ ├── PlaybackPipeline.cpp │ │ │ │ ├── PlaybackPipeline.h │ │ │ │ ├── PlaybackPipelineBase.cpp │ │ │ │ ├── PlaybackPipelineBase.h │ │ │ │ ├── TranscodePipeline.cpp │ │ │ │ ├── TranscodePipeline.h │ │ │ │ ├── VideoPresenter.cpp │ │ │ │ ├── VideoPresenter.h │ │ │ │ ├── VideoPresenterDX11.cpp │ │ │ │ ├── VideoPresenterDX11.h │ │ │ │ ├── VideoPresenterDX9.cpp │ │ │ │ ├── VideoPresenterDX9.h │ │ │ │ ├── VideoPresenterOpenGL.cpp │ │ │ │ └── VideoPresenterOpenGL.h │ │ ├── CPPSamples_vs2013.sln │ │ ├── CPPSamples_vs2015.sln │ │ ├── CPPSamples_vs2017.sln │ │ └── SamplesC │ │ │ ├── SimpleEncoderC │ │ │ ├── SimpleEncoderC.c │ │ │ ├── SimpleEncoderC.vcxproj │ │ │ ├── SimpleEncoderC.vcxproj.filters │ │ │ ├── SimpleEncoderC_VS2015.vcxproj │ │ │ ├── SimpleEncoderC_VS2015.vcxproj.filters │ │ │ ├── SimpleEncoderC_VS2017.vcxproj │ │ │ └── SimpleEncoderC_VS2017.vcxproj.filters │ │ │ └── common │ │ │ ├── AMFFactoryC.c │ │ │ ├── AMFFactoryC.h │ │ │ ├── ThreadC.h │ │ │ ├── ThreadWindowsC.c │ │ │ ├── TraceAdapterC.c │ │ │ └── TraceAdapterC.h │ │ └── src │ │ └── components │ │ ├── AmbisonicRenderer │ │ ├── Ambisonic2SRendererImpl.cpp │ │ ├── Ambisonic2SRendererImpl.h │ │ ├── HRTFtable.cpp │ │ ├── HRTFtable.h │ │ ├── convolution.cpp │ │ ├── convolution.h │ │ ├── measuredHRTF │ │ │ ├── headers44.1 │ │ │ │ ├── H-10e090a.wav44.h │ │ │ │ ├── H-30e048a.wav44.h │ │ │ │ ├── H-30e138a.wav44.h │ │ │ │ ├── H0e000a.wav44.h │ │ │ │ ├── H0e020a.wav44.h │ │ │ │ ├── H0e160a.wav44.h │ │ │ │ ├── H20e090a.wav44.h │ │ │ │ ├── H40e045a.wav44.h │ │ │ │ ├── H40e135a.wav44.h │ │ │ │ ├── H70e000a.wav44.h │ │ │ │ └── H70e180a.wav44.h │ │ │ └── headers48 │ │ │ │ ├── H-10e090a.wav48.h │ │ │ │ ├── H-30e048a.wav48.h │ │ │ │ ├── H-30e138a.wav48.h │ │ │ │ ├── H0e000a.wav48.h │ │ │ │ ├── H0e020a.wav48.h │ │ │ │ ├── H0e160a.wav48.h │ │ │ │ ├── H20e090a.wav48.h │ │ │ │ ├── H40e045a.wav48.h │ │ │ │ ├── H40e135a.wav48.h │ │ │ │ ├── H70e000a.wav48.h │ │ │ │ └── H70e180a.wav48.h │ │ ├── wav.cpp │ │ └── wav.h │ │ ├── AudioCapture │ │ ├── AudioCaptureImpl.cpp │ │ ├── AudioCaptureImpl.h │ │ ├── WASAPISource.cpp │ │ └── WASAPISource.h │ │ ├── ComponentsFFMPEG │ │ ├── AudioConverterFFMPEGImpl.cpp │ │ ├── AudioConverterFFMPEGImpl.h │ │ ├── AudioDecoderFFMPEGImpl.cpp │ │ ├── AudioDecoderFFMPEGImpl.h │ │ ├── AudioEncoderFFMPEGImpl.cpp │ │ ├── AudioEncoderFFMPEGImpl.h │ │ ├── ComponentFactory.cpp │ │ ├── FileDemuxerFFMPEGImpl.cpp │ │ ├── FileDemuxerFFMPEGImpl.h │ │ ├── FileMuxerFFMPEGImpl.cpp │ │ ├── FileMuxerFFMPEGImpl.h │ │ ├── H264Mp4ToAnnexB.cpp │ │ ├── H264Mp4ToAnnexB.h │ │ ├── UtilsFFMPEG.cpp │ │ └── UtilsFFMPEG.h │ │ └── DisplayCapture │ │ ├── CaptureStats.h │ │ ├── DDAPISource.cpp │ │ ├── DDAPISource.h │ │ ├── DisplayCaptureImpl.cpp │ │ └── DisplayCaptureImpl.h │ ├── AmfUnityPlugin.cpp │ ├── Pipeline │ ├── AudioPresenterBuffer.cpp │ ├── AudioPresenterBuffer.h │ ├── PlaybackPipeline.cpp │ ├── PlaybackPipeline.h │ ├── UnityAVPipeline.cpp │ ├── UnityAVPipeline.h │ ├── VideoPresenterTexture.cpp │ └── VideoPresenterTexture.h │ ├── Scripts │ ├── Amf360UnityPlugin.cs │ └── AmfUnityPlugin.cs │ └── Unity │ ├── .gitignore │ └── README.txt ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/.gitattributes -------------------------------------------------------------------------------- /AmfUnityPlugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/.gitignore -------------------------------------------------------------------------------- /AmfUnityPlugin/AmfUnityPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/AmfUnityPlugin.sln -------------------------------------------------------------------------------- /AmfUnityPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/README.md -------------------------------------------------------------------------------- /AmfUnityPlugin/build/AmfUnityPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/build/AmfUnityPlugin.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/build/AmfUnityPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/build/AmfUnityPlugin.vcxproj.filters -------------------------------------------------------------------------------- /AmfUnityPlugin/dist2Proj.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/dist2Proj.cmd -------------------------------------------------------------------------------- /AmfUnityPlugin/makeDist.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/makeDist.cmd -------------------------------------------------------------------------------- /AmfUnityPlugin/prepareUnity.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/prepareUnity.cmd -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/LICENSE.txt -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/README.md -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/ffmpeg-3.3.1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/ffmpeg-3.3.1.tar.bz2 -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/ffmpeg-build-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/ffmpeg-build-win -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/get_sourcecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/get_sourcecode -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avcodec-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avcodec-57.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avdevice-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avdevice-57.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avfilter-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avfilter-6.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avformat-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avformat-57.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avresample-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avresample-3.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avutil-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/avutil-55.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffmpeg.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffmpeg_g.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffmpeg_g.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffprobe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffprobe.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffprobe_g.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/ffprobe_g.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/swresample-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/swresample-2.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/swscale-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/bin/swscale-4.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/cmdutils.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/compat/aix/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/compat/aix/math.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/compat/va_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/compat/va_copy.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/compat/w32dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/compat/w32dlfcn.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/config.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/ffmpeg.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/ffserver_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/ffserver_config.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/aac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/aacps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/aacps.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/ac3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/ac3.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/adpcm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/adx.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/amr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/amr.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/apng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/apng.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/ass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/ass.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/asv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/asv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/atrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/atrac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/bgmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/bgmc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/bmp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/bsf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/cabac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/cavs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/cavs.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/cfhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/cfhd.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dca.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dct.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dct32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dct32.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dsd.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/dv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/fft.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/flv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/gif.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/gsm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/hap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/hap.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/hqx.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/ivi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/ivi.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/jni.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lcl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lpc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lsp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lzf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/lzw.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mlp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mlz.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mpc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/mqc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/paf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/paf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/png.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/pnm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/raw.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/rl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/rle.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/sbr.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/sgi.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/tak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/tak.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vc1.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vda.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vlc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vp8.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vp9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/vp9.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/wma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/wma.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/xwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavcodec/xwd.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavformat/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavformat/dv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavformat/rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavformat/rm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavformat/wv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavformat/wv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/aes.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/cpu.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/crc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/des.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/dict.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/eval.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/fifo.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/file.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/hash.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/hmac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/lfg.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/libm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/lls.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/log.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/lzo.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/md5.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/mem.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/opt.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/pca.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/rc4.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/sha.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/tea.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/time.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/tree.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/include/libavutil/xtea.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avcodec.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avdevice.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avfilter.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avformat.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avresample.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/avutil.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/swresample.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/win32/release/lib/swscale.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avcodec-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avcodec-57.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avdevice-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avdevice-57.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avfilter-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avfilter-6.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avformat-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avformat-57.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avresample-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avresample-3.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avutil-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/avutil-55.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffmpeg.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffmpeg_g.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffmpeg_g.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffprobe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffprobe.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffprobe_g.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/ffprobe_g.exe -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/swresample-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/swresample-2.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/swscale-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/bin/swscale-4.dll -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/cmdutils.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/compat/aix/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/compat/aix/math.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/compat/va_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/compat/va_copy.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/compat/w32dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/compat/w32dlfcn.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/config.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/ffmpeg.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/ffserver_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/ffserver_config.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/aac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/aacps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/aacps.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ac3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ac3.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/adpcm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/adx.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/amr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/amr.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/apng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/apng.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ass.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/asv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/asv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/atrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/atrac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/bgmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/bgmc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/bmp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/bsf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/cabac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/cavs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/cavs.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/cfhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/cfhd.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dca.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dct.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dct32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dct32.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dsd.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/elbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/elbg.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/exif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/exif.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ffjni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ffjni.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/fft.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ffv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ffv1.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/flac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/flv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/g722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/g722.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/g729.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/g729.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/gif.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/gsm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/h261.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/h261.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/h263.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/h263.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/h264.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/hap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/hap.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/hevc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/hqx.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ivi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ivi.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/jni.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lcl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lpc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lsp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lzf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/lzw.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mjpeg.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mlp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mlz.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mpc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mqc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mss12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/mss12.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/nvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/nvenc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/opus.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/paf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/paf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/png.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/pnm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ra144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ra144.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ra288.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/ra288.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/raw.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rdft.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rle.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rv10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rv10.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rv34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/rv34.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sbr.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sgi.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sipr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sipr.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/snow.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sp5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/sp5x.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/svq1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/svq1.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/tak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/tak.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/targa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/targa.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/tiff.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/unary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/unary.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vc1.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vda.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vlc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vp56.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vp56.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vp8.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vp9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/vp9.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/wma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/wma.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/wmv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/wmv2.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xface.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xiph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xiph.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavcodec/xwd.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavdevice/alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavdevice/alsa.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavdevice/oss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavdevice/oss.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavfilter/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavfilter/bbox.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavfilter/psnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavfilter/psnr.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavfilter/ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavfilter/ssim.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/aiff.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/asf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/asf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/ast.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/avc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/avi.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/avio.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/caf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/caf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/dv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/ffm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/ffm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/flv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/gxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/gxf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/hevc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/http.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/img2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/img2.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/isom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/isom.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/lrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/lrc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/mms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/mms.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/mpeg.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/mxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/mxf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/nut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/nut.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/oma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/oma.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/pcm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rdt.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/riff.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rso.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rtmp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rtp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/rtsp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/sox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/sox.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/srtp.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/swf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/swf.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/tls.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/url.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/voc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/vpcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/vpcc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/w64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/w64.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/wtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/wtv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/wv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavformat/wv.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/aes.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/atomic.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/avutil.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/base64.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/bprint.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/bswap.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/buffer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/cast5.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/common.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/cpu.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/crc.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/des.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/dict.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/error.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/eval.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/ffmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/ffmath.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/fifo.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/file.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/frame.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/hash.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/hmac.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/lfg.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/libm.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/lls.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/log.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/lzo.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/macros.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/md5.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/mem.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/opencl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/opt.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/pca.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/qsort.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/rc4.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/sha.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/sha512.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/tea.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/thread.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/time.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/timer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/tree.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/include/libavutil/xtea.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avcodec.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avdevice.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avfilter.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avformat.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avresample.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/avutil.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/swresample.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/Thirdparty/ffmpeg/ffmpeg-3.3.1/x64/release/lib/swscale.lib -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/.gitattributes -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/.gitignore -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/doc/AMF_API_Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/doc/AMF_API_Reference.pdf -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/doc/AMF_SDK_EULA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/doc/AMF_SDK_EULA.rtf -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Converter_API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Converter_API.pdf -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Decode_API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Decode_API.pdf -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Encode_API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Encode_API.pdf -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Encode_HEVC_API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/doc/AMF_Video_Encode_HEVC_API.pdf -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/doc/Readme.txt -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/.gitattributes -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/AMFFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/AMFFactory.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/AMFFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/AMFFactory.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/AMFSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/AMFSTL.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/AMFSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/AMFSTL.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/ByteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/ByteArray.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/CurrentTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/CurrentTime.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/CurrentTimeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/CurrentTimeImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/CurrentTimeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/CurrentTimeImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/DataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/DataStream.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/DataStreamFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/DataStreamFactory.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/DataStreamFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/DataStreamFile.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/DataStreamFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/DataStreamFile.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/DataStreamMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/DataStreamMemory.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/DataStreamMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/DataStreamMemory.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/IOCapsImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/IOCapsImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/IOCapsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/IOCapsImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/InterfaceImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/InterfaceImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/ObservableImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/ObservableImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/PropertyStorageExImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/PropertyStorageExImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/PropertyStorageExImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/PropertyStorageExImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/PropertyStorageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/PropertyStorageImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/Thread.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/Thread.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/TraceAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/TraceAdapter.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/TraceAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/TraceAdapter.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/common/Windows/ThreadWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/common/Windows/ThreadWindows.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/.gitattributes -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/Ambisonic2SRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/Ambisonic2SRenderer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/AudioCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/AudioCapture.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/Component.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/ComponentCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/ComponentCaps.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/DisplayCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/DisplayCapture.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGAudioConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGAudioConverter.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGAudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGAudioDecoder.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGAudioEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGAudioEncoder.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGComponents.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGFileDemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGFileDemuxer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGFileMuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/FFMPEGFileMuxer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/MediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/MediaSource.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/VideoConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/VideoConverter.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/VideoDecoderUVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/VideoDecoderUVD.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/VideoEncoderHEVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/VideoEncoderHEVC.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/components/VideoEncoderVCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/components/VideoEncoderVCE.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/AudioBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/AudioBuffer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Buffer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Compute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Compute.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/ComputeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/ComputeFactory.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Context.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Data.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Debug.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Dump.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Factory.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Interface.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Plane.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Platform.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/PropertyStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/PropertyStorage.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/PropertyStorageEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/PropertyStorageEx.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Result.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Surface.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Trace.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Variant.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/include/core/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/include/core/Version.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2013/ComponentsFFMPEG/ComponentsFFMPEG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2013/ComponentsFFMPEG/ComponentsFFMPEG.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/AmfMediaCommon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/AmfMediaCommon.sln -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/AmfMediaCommon/AmfMediaCommon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/AmfMediaCommon/AmfMediaCommon.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/AmfMediaCommon/AmfMediaCommon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/AmfMediaCommon/AmfMediaCommon.vcxproj.filters -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/ComponentsFFMPEG/ComponentsFFMPEG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2015/ComponentsFFMPEG/ComponentsFFMPEG.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/AmfMediaCommon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/AmfMediaCommon.sln -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/AmfMediaCommon/AmfMediaCommon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/AmfMediaCommon/AmfMediaCommon.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/AmfMediaCommon/AmfMediaCommon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/AmfMediaCommon/AmfMediaCommon.vcxproj.filters -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/ComponentsFFMPEG/ComponentsFFMPEG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/proj/vs2017/ComponentsFFMPEG/ComponentsFFMPEG.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/props/AMF_VS2013.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/props/AMF_VS2013.props -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/props/AMF_VS2015.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/props/AMF_VS2015.props -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/props/AMF_VS2017.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/props/AMF_VS2017.props -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/props/SDK32-10.0.10586.0.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/props/SDK32-10.0.10586.0.props -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/props/SDK64-10.0.10586.0.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/props/SDK64-10.0.10586.0.props -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/CapabilityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/CapabilityManager.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/stdafx.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/stdafx.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/CapabilityManager/targetver.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.ico -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR.rc -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2013.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2013.vcxproj.filters -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2015.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2015.vcxproj.filters -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2017.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/DVR_VS2017.vcxproj.filters -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/resource.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/DVR/targetver.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.ico -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW.rc -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW_VS2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW_VS2013.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW_VS2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW_VS2015.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW_VS2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/PlaybackHW_VS2017.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/resource.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/small.ico -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/PlaybackHW/targetver.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter_VS2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter_VS2013.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter_VS2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter_VS2015.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter_VS2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SVCSplitter/SVCSplitter_VS2017.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SimpleConverter/SimpleConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SimpleConverter/SimpleConverter.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SimpleDecoder/SimpleDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SimpleDecoder/SimpleDecoder.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SimpleEncoder/SimpleEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/SimpleEncoder/SimpleEncoder.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW_VS2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW_VS2013.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW_VS2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW_VS2015.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW_VS2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeHW_VS2017.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeIntraRefresh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeIntraRefresh.bat -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeSVC.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeSVC.bat -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeSpeed.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/TranscodeHW/TranscodeSpeed.bat -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderEncodePipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderEncodePipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderEncodePipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderEncodePipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderWindow.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/RenderWindow.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D.bat -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D.rc -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D_SVC_dx9.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VCEEncoderD3D_SVC_dx9.bat -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRender.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRender.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX11.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX11.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX9.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderDX9.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderHost.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderHost.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenCL.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenCL.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenGL.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/VideoRenderOpenGL.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/resource.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/stdafx.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/VCEEncoderD3D/stdafx.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenter.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenter.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenterWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenterWin.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenterWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/AudioPresenterWin.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BackBufferPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BackBufferPresenter.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BackBufferPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BackBufferPresenter.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParser.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParser.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH264.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH264.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH265.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH265.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH265.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/BitStreamParserH265.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLineParser.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLineParser.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLogger.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/CmdLogger.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX11.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX11.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX9.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceDX9.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenCL.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenCL.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenGL.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DeviceOpenGL.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DisplayDvrPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DisplayDvrPipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DisplayDvrPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/DisplayDvrPipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsAVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsAVC.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsAVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsAVC.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsHEVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsHEVC.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsHEVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderParamsHEVC.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderPipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/EncoderPipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/OpenCLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/OpenCLLoader.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/OpenCLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/OpenCLLoader.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Options.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Options.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/ParametersStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/ParametersStorage.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/ParametersStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/ParametersStorage.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Pipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/Pipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PipelineElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PipelineElement.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipelineBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipelineBase.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipelineBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/PlaybackPipelineBase.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/TranscodePipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/TranscodePipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/TranscodePipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/TranscodePipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenter.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenter.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX11.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX11.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX9.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterDX9.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterOpenGL.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples/common/VideoPresenterOpenGL.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples_vs2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples_vs2013.sln -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples_vs2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples_vs2015.sln -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples_vs2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/CPPSamples_vs2017.sln -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/SimpleEncoderC/SimpleEncoderC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/SimpleEncoderC/SimpleEncoderC.c -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/SimpleEncoderC/SimpleEncoderC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/SimpleEncoderC/SimpleEncoderC.vcxproj -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/AMFFactoryC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/AMFFactoryC.c -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/AMFFactoryC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/AMFFactoryC.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/ThreadC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/ThreadC.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/ThreadWindowsC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/ThreadWindowsC.c -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/TraceAdapterC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/TraceAdapterC.c -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/TraceAdapterC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/samples/SamplesC/common/TraceAdapterC.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/Ambisonic2SRendererImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/Ambisonic2SRendererImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/HRTFtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/HRTFtable.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/HRTFtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/HRTFtable.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/convolution.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/convolution.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/wav.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AmbisonicRenderer/wav.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/AudioCaptureImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/AudioCaptureImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/AudioCaptureImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/AudioCaptureImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/WASAPISource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/WASAPISource.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/WASAPISource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/AudioCapture/WASAPISource.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioConverterFFMPEGImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioConverterFFMPEGImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioDecoderFFMPEGImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioDecoderFFMPEGImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioDecoderFFMPEGImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioDecoderFFMPEGImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioEncoderFFMPEGImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioEncoderFFMPEGImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioEncoderFFMPEGImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/AudioEncoderFFMPEGImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/ComponentFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/ComponentFactory.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileDemuxerFFMPEGImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileDemuxerFFMPEGImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileDemuxerFFMPEGImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileDemuxerFFMPEGImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileMuxerFFMPEGImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileMuxerFFMPEGImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileMuxerFFMPEGImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/FileMuxerFFMPEGImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/H264Mp4ToAnnexB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/H264Mp4ToAnnexB.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/H264Mp4ToAnnexB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/H264Mp4ToAnnexB.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/UtilsFFMPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/UtilsFFMPEG.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/UtilsFFMPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/ComponentsFFMPEG/UtilsFFMPEG.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/CaptureStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/CaptureStats.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DDAPISource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DDAPISource.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DDAPISource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DDAPISource.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DisplayCaptureImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DisplayCaptureImpl.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DisplayCaptureImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AMF/amf/public/src/components/DisplayCapture/DisplayCaptureImpl.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/AmfUnityPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/AmfUnityPlugin.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/AudioPresenterBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/AudioPresenterBuffer.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/AudioPresenterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/AudioPresenterBuffer.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/PlaybackPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/PlaybackPipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/PlaybackPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/PlaybackPipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/UnityAVPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/UnityAVPipeline.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/UnityAVPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/UnityAVPipeline.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/VideoPresenterTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/VideoPresenterTexture.cpp -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Pipeline/VideoPresenterTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Pipeline/VideoPresenterTexture.h -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Scripts/Amf360UnityPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Scripts/Amf360UnityPlugin.cs -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Scripts/AmfUnityPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Scripts/AmfUnityPlugin.cs -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Unity/.gitignore: -------------------------------------------------------------------------------- 1 | IUnity* 2 | 3 | -------------------------------------------------------------------------------- /AmfUnityPlugin/source/Unity/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/AmfUnityPlugin/source/Unity/README.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/UnityIntegrations/HEAD/README.md --------------------------------------------------------------------------------