├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── codeql.yml │ └── msvc.yml ├── .gitignore ├── CHANGE_LOG.md ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Logo.png ├── README.md ├── TODO.md ├── content ├── audio │ └── sine.wav └── texture │ └── rgb.png ├── coverage.bat ├── docker └── Dockerfile ├── docs ├── GCC.txt ├── ProblemSolutions.txt ├── git-commands.txt ├── glslValidator.txt ├── glslValidator_MoltenVK.txt └── quic.md ├── manifest.manifest ├── wolf ├── .clang-format ├── .clang-tidy ├── .gitignore ├── CMakeLists.txt ├── DISABLE_ANALYSIS_BEGIN ├── DISABLE_ANALYSIS_END ├── cmake │ ├── media.cmake │ ├── ml.cmake │ ├── stream.cmake │ ├── system.cmake │ └── vcpkg.cmake ├── media │ ├── ffmpeg │ │ ├── w_av_config.cpp │ │ ├── w_av_config.hpp │ │ ├── w_av_format.cpp │ │ ├── w_av_format.hpp │ │ ├── w_av_frame.cpp │ │ ├── w_av_frame.hpp │ │ ├── w_av_packet.cpp │ │ ├── w_av_packet.hpp │ │ ├── w_decoder.cpp │ │ ├── w_decoder.hpp │ │ ├── w_encoder.cpp │ │ ├── w_encoder.hpp │ │ ├── w_ffmpeg.cpp │ │ ├── w_ffmpeg.hpp │ │ ├── w_ffmpeg_ctx.cpp │ │ └── w_ffmpeg_ctx.hpp │ ├── gst │ │ ├── audio │ │ │ ├── w_audio_format.cpp │ │ │ ├── w_audio_format.hpp │ │ │ ├── w_audio_info.cpp │ │ │ └── w_audio_info.hpp │ │ ├── core │ │ │ ├── w_buffer.cpp │ │ │ ├── w_buffer.hpp │ │ │ ├── w_bus.cpp │ │ │ ├── w_bus.hpp │ │ │ ├── w_caps.cpp │ │ │ ├── w_caps.hpp │ │ │ ├── w_clock.cpp │ │ │ ├── w_clock.hpp │ │ │ ├── w_element.cpp │ │ │ ├── w_element.hpp │ │ │ ├── w_element_factory.cpp │ │ │ ├── w_element_factory.hpp │ │ │ ├── w_format.cpp │ │ │ ├── w_format.hpp │ │ │ ├── w_mainloop.cpp │ │ │ ├── w_mainloop.hpp │ │ │ ├── w_message.cpp │ │ │ ├── w_message.hpp │ │ │ ├── w_nonowning.cpp │ │ │ ├── w_nonowning.hpp │ │ │ ├── w_pad.cpp │ │ │ ├── w_pad.hpp │ │ │ ├── w_pipeline.cpp │ │ │ ├── w_pipeline.hpp │ │ │ ├── w_refptr.cpp │ │ │ ├── w_refptr.hpp │ │ │ ├── w_signal_handler.cpp │ │ │ ├── w_signal_handler.hpp │ │ │ ├── w_structure.cpp │ │ │ └── w_structure.hpp │ │ ├── elements │ │ │ ├── w_element_aacparse.cpp │ │ │ ├── w_element_aacparse.hpp │ │ │ ├── w_element_appsrc.cpp │ │ │ ├── w_element_appsrc.hpp │ │ │ ├── w_element_audioconvert.cpp │ │ │ ├── w_element_audioconvert.hpp │ │ │ ├── w_element_audioresample.cpp │ │ │ ├── w_element_audioresample.hpp │ │ │ ├── w_element_autovideosink.cpp │ │ │ ├── w_element_autovideosink.hpp │ │ │ ├── w_element_avencflv.cpp │ │ │ ├── w_element_avencflv.hpp │ │ │ ├── w_element_capsfilter.cpp │ │ │ ├── w_element_capsfilter.hpp │ │ │ ├── w_element_filesink.cpp │ │ │ ├── w_element_filesink.hpp │ │ │ ├── w_element_flvmux.cpp │ │ │ ├── w_element_flvmux.hpp │ │ │ ├── w_element_h264parse.cpp │ │ │ ├── w_element_h264parse.hpp │ │ │ ├── w_element_mp4mux.cpp │ │ │ ├── w_element_mp4mux.hpp │ │ │ ├── w_element_openh264enc.cpp │ │ │ ├── w_element_openh264enc.hpp │ │ │ ├── w_element_queue.cpp │ │ │ ├── w_element_queue.hpp │ │ │ ├── w_element_rtmpsink.cpp │ │ │ ├── w_element_rtmpsink.hpp │ │ │ ├── w_element_rtph264pay.cpp │ │ │ ├── w_element_rtph264pay.hpp │ │ │ ├── w_element_udpsink.cpp │ │ │ ├── w_element_udpsink.hpp │ │ │ ├── w_element_videoconvert.cpp │ │ │ ├── w_element_videoconvert.hpp │ │ │ ├── w_element_videoscale.cpp │ │ │ ├── w_element_videoscale.hpp │ │ │ ├── w_element_videotestsrc.cpp │ │ │ ├── w_element_videotestsrc.hpp │ │ │ ├── w_element_voaacenc.cpp │ │ │ ├── w_element_voaacenc.hpp │ │ │ ├── w_element_wasapisrc.cpp │ │ │ ├── w_element_wasapisrc.hpp │ │ │ ├── w_element_x264enc.cpp │ │ │ └── w_element_x264enc.hpp │ │ ├── internal │ │ │ ├── w_common.cpp │ │ │ ├── w_common.hpp │ │ │ ├── w_utils.cpp │ │ │ ├── w_utils.hpp │ │ │ ├── w_wrapper.cpp │ │ │ └── w_wrapper.hpp │ │ ├── video │ │ │ ├── w_video_format.cpp │ │ │ ├── w_video_format.hpp │ │ │ ├── w_video_info.cpp │ │ │ └── w_video_info.hpp │ │ ├── w_application.cpp │ │ ├── w_application.hpp │ │ ├── w_flow.cpp │ │ └── w_flow.hpp │ ├── test │ │ ├── avframe.hpp │ │ ├── ffmpeg.hpp │ │ ├── gstreamer.hpp │ │ ├── image.hpp │ │ └── openal.hpp │ ├── w_image.cpp │ ├── w_image.hpp │ ├── w_image_data.cpp │ ├── w_image_data.hpp │ ├── w_openal.cpp │ └── w_openal.hpp ├── ml │ ├── nudity_detection │ │ ├── w_nudity_detection.cpp │ │ └── w_nudity_detection.hpp │ ├── referee_ocr │ │ ├── salieri.h │ │ ├── w_image_processor.cpp │ │ ├── w_image_processor.hpp │ │ ├── w_ocr_engine.cpp │ │ ├── w_ocr_engine.hpp │ │ ├── w_read_video_frames.cpp │ │ ├── w_read_video_frames.hpp │ │ ├── w_referee.cpp │ │ ├── w_referee.hpp │ │ ├── w_soccer.cpp │ │ ├── w_soccer.hpp │ │ ├── w_utilities.cpp │ │ └── w_utilities.hpp │ ├── test │ │ ├── common_test_asset │ │ │ ├── image_processor │ │ │ │ ├── find_all_contours_solid_black.png │ │ │ │ ├── gaussian_filter_7.png │ │ │ │ ├── gaussian_filter_default.png │ │ │ │ ├── make_white_background_50.png │ │ │ │ ├── make_white_background_default.png │ │ │ │ ├── negative_image_default.png │ │ │ │ ├── prepare_image_for_contour_detection_default.png │ │ │ │ ├── test_image.png │ │ │ │ ├── threshold_filter_180.png │ │ │ │ └── threshold_filter_default.png │ │ │ ├── ocr_engine │ │ │ │ ├── contours_to_char_structs_Solid_black.png │ │ │ │ ├── contours_to_char_structs_default.png │ │ │ │ ├── enhance_contour_image_for_model_make_white.png │ │ │ │ ├── enhance_contour_image_for_model_resize.png │ │ │ │ ├── filter_chars_by_contour_size copy 2.png │ │ │ │ ├── filter_chars_by_contour_size copy.png │ │ │ │ ├── filter_chars_by_contour_size.png │ │ │ │ ├── mask_contour.png │ │ │ │ └── test_image.png │ │ │ ├── soccer │ │ │ │ ├── .fill_stat_map │ │ │ │ ├── .initial_match_result_struct │ │ │ │ ├── .replace_team_names_with_most_similar_string │ │ │ │ ├── .replace_team_names_with_most_similar_string_0_9 │ │ │ │ ├── .set_config │ │ │ │ ├── .single_image_result_extraction │ │ │ │ ├── .update_match_data │ │ │ │ ├── replace_team_names_with_most_similar_string.txt │ │ │ │ ├── single_image_result_extraction.mp4 │ │ │ │ └── single_image_result_extraction.png │ │ │ └── utilities │ │ │ │ ├── .get_env_boolean │ │ │ │ ├── .get_env_cv_rect │ │ │ │ ├── .get_env_float │ │ │ │ ├── .get_env_int │ │ │ │ ├── .get_env_string │ │ │ │ ├── .get_nearest_string_0_5 │ │ │ │ ├── .get_nearest_string_0_9 │ │ │ │ ├── .set_env │ │ │ │ ├── get_nearest_string.txt │ │ │ │ └── get_value_from_json_file_by_key.json │ │ ├── w_image_processor_test.hpp │ │ ├── w_ocr_engine_test.hpp │ │ ├── w_referee_test.hpp │ │ ├── w_soccer_test.hpp │ │ └── w_utilities_test.hpp │ ├── w_common.cpp │ └── w_common.hpp ├── protos │ └── raft.proto ├── stream │ ├── grpc │ │ ├── w_grpc_client.cpp │ │ ├── w_grpc_client.hpp │ │ ├── w_grpc_server.cpp │ │ └── w_grpc_server.hpp │ ├── http │ │ ├── w_http_server.cpp │ │ └── w_http_server.hpp │ ├── janus │ │ ├── w_janus_api_emc.cpp │ │ └── w_janus_api_emc.hpp │ ├── quic │ │ ├── datatypes │ │ │ ├── common_flags.hpp │ │ │ ├── w_address.cpp │ │ │ ├── w_address.hpp │ │ │ ├── w_alpn.hpp │ │ │ ├── w_credential_config.cpp │ │ │ ├── w_credential_config.hpp │ │ │ ├── w_new_connection_info.cpp │ │ │ ├── w_new_connection_info.hpp │ │ │ ├── w_registration_config.cpp │ │ │ ├── w_registration_config.hpp │ │ │ ├── w_settings.cpp │ │ │ ├── w_settings.hpp │ │ │ ├── w_status.cpp │ │ │ └── w_status.hpp │ │ ├── events │ │ │ ├── w_connection_event.cpp │ │ │ ├── w_connection_event.hpp │ │ │ ├── w_listener_event.cpp │ │ │ ├── w_listener_event.hpp │ │ │ ├── w_stream_event.cpp │ │ │ └── w_stream_event.hpp │ │ ├── handles │ │ │ ├── w_configuration.cpp │ │ │ ├── w_configuration.hpp │ │ │ ├── w_connection.cpp │ │ │ ├── w_connection.hpp │ │ │ ├── w_listener.cpp │ │ │ ├── w_listener.hpp │ │ │ ├── w_registration.cpp │ │ │ ├── w_registration.hpp │ │ │ ├── w_stream.cpp │ │ │ └── w_stream.hpp │ │ ├── internal │ │ │ ├── common.cpp │ │ │ ├── common.hpp │ │ │ ├── w_msquic_api.cpp │ │ │ └── w_msquic_api.hpp │ │ ├── w_quic.cpp │ │ ├── w_quic.hpp │ │ ├── w_quic_client.cpp │ │ ├── w_quic_client.hpp │ │ ├── w_quic_server.cpp │ │ └── w_quic_server.hpp │ ├── rist │ │ ├── w_rist.cpp │ │ ├── w_rist.hpp │ │ ├── w_rist_data_block.cpp │ │ └── w_rist_data_block.hpp │ └── test │ │ ├── ffmpeg_stream.hpp │ │ ├── grpc.hpp │ │ ├── quic.hpp │ │ └── rist.hpp ├── system │ ├── compression │ │ ├── w_lz4.cpp │ │ ├── w_lz4.hpp │ │ ├── w_lzma.cpp │ │ └── w_lzma.hpp │ ├── db │ │ ├── w_postgresql.cpp │ │ └── w_postgresql.hpp │ ├── gamepad │ │ ├── w_gamepad_client.hpp │ │ ├── w_gamepad_client_emc.cpp │ │ ├── w_gamepad_client_keymap.hpp │ │ ├── w_gamepad_client_sdl.cpp │ │ ├── w_gamepad_client_types.hpp │ │ ├── w_gamepad_virtual.cpp │ │ ├── w_gamepad_virtual.hpp │ │ ├── w_gamepad_virtual_bus.hpp │ │ ├── w_gamepad_virtual_pool.cpp │ │ └── w_gamepad_virtual_pool.hpp │ ├── getopt.h │ ├── invocable.h │ ├── log │ │ ├── w_log.cpp │ │ ├── w_log.hpp │ │ └── w_log_config.hpp │ ├── script │ │ ├── w_lua.cpp │ │ ├── w_lua.hpp │ │ ├── w_python.cpp │ │ └── w_python.hpp │ ├── socket │ │ ├── w_socket_options.hpp │ │ ├── w_tcp_client.cpp │ │ ├── w_tcp_client.hpp │ │ ├── w_tcp_server.cpp │ │ ├── w_tcp_server.hpp │ │ ├── w_ws_client.cpp │ │ ├── w_ws_client.hpp │ │ ├── w_ws_client_emc.cpp │ │ ├── w_ws_client_emc.hpp │ │ ├── w_ws_server.cpp │ │ └── w_ws_server.hpp │ ├── test │ │ ├── compress.hpp │ │ ├── coroutine.hpp │ │ ├── gamepad.hpp │ │ ├── gametime.hpp │ │ ├── index.html │ │ ├── log.hpp │ │ ├── lua.hpp │ │ ├── postgresql.hpp │ │ ├── process.hpp │ │ ├── python.hpp │ │ ├── signal_slot.hpp │ │ ├── tcp.hpp │ │ ├── trace.hpp │ │ ├── ws.hpp │ │ └── ws_server.sh │ ├── w_flags.hpp │ ├── w_gametime.cpp │ ├── w_gametime.hpp │ ├── w_leak_detector.cpp │ ├── w_leak_detector.hpp │ ├── w_overloaded.hpp │ ├── w_process.cpp │ ├── w_process.hpp │ ├── w_time.cpp │ ├── w_time.hpp │ └── w_trace.hpp ├── tests.cpp ├── third_party │ ├── ffmpeg │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── bin │ │ │ ├── avcodec-59.dll │ │ │ ├── avdevice-59.dll │ │ │ ├── avfilter-8.dll │ │ │ ├── avformat-59.dll │ │ │ ├── avutil-57.dll │ │ │ ├── postproc-56.dll │ │ │ ├── swresample-4.dll │ │ │ └── swscale-6.dll │ │ ├── include │ │ │ ├── libavcodec │ │ │ │ ├── ac3_parser.h │ │ │ │ ├── adts_parser.h │ │ │ │ ├── avcodec.h │ │ │ │ ├── avdct.h │ │ │ │ ├── avfft.h │ │ │ │ ├── bsf.h │ │ │ │ ├── codec.h │ │ │ │ ├── codec_desc.h │ │ │ │ ├── codec_id.h │ │ │ │ ├── codec_par.h │ │ │ │ ├── d3d11va.h │ │ │ │ ├── defs.h │ │ │ │ ├── dirac.h │ │ │ │ ├── dv_profile.h │ │ │ │ ├── dxva2.h │ │ │ │ ├── jni.h │ │ │ │ ├── mediacodec.h │ │ │ │ ├── packet.h │ │ │ │ ├── qsv.h │ │ │ │ ├── vdpau.h │ │ │ │ ├── version.h │ │ │ │ ├── version_major.h │ │ │ │ ├── videotoolbox.h │ │ │ │ ├── vorbis_parser.h │ │ │ │ └── xvmc.h │ │ │ ├── libavdevice │ │ │ │ ├── avdevice.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libavfilter │ │ │ │ ├── avfilter.h │ │ │ │ ├── buffersink.h │ │ │ │ ├── buffersrc.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libavformat │ │ │ │ ├── avformat.h │ │ │ │ ├── avio.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libavutil │ │ │ │ ├── adler32.h │ │ │ │ ├── aes.h │ │ │ │ ├── aes_ctr.h │ │ │ │ ├── attributes.h │ │ │ │ ├── audio_fifo.h │ │ │ │ ├── avassert.h │ │ │ │ ├── avconfig.h │ │ │ │ ├── avstring.h │ │ │ │ ├── avutil.h │ │ │ │ ├── base64.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bprint.h │ │ │ │ ├── bswap.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast5.h │ │ │ │ ├── channel_layout.h │ │ │ │ ├── common.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── csp.h │ │ │ │ ├── des.h │ │ │ │ ├── detection_bbox.h │ │ │ │ ├── dict.h │ │ │ │ ├── display.h │ │ │ │ ├── dovi_meta.h │ │ │ │ ├── downmix_info.h │ │ │ │ ├── encryption_info.h │ │ │ │ ├── error.h │ │ │ │ ├── eval.h │ │ │ │ ├── ffversion.h │ │ │ │ ├── fifo.h │ │ │ │ ├── file.h │ │ │ │ ├── film_grain_params.h │ │ │ │ ├── frame.h │ │ │ │ ├── hash.h │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ ├── hdr_dynamic_vivid_metadata.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hwcontext.h │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ ├── hwcontext_drm.h │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ ├── hwcontext_opencl.h │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ ├── hwcontext_vulkan.h │ │ │ │ ├── imgutils.h │ │ │ │ ├── intfloat.h │ │ │ │ ├── intreadwrite.h │ │ │ │ ├── lfg.h │ │ │ │ ├── log.h │ │ │ │ ├── lzo.h │ │ │ │ ├── macros.h │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ ├── mathematics.h │ │ │ │ ├── md5.h │ │ │ │ ├── mem.h │ │ │ │ ├── motion_vector.h │ │ │ │ ├── murmur3.h │ │ │ │ ├── opt.h │ │ │ │ ├── parseutils.h │ │ │ │ ├── pixdesc.h │ │ │ │ ├── pixelutils.h │ │ │ │ ├── pixfmt.h │ │ │ │ ├── random_seed.h │ │ │ │ ├── rational.h │ │ │ │ ├── rc4.h │ │ │ │ ├── replaygain.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── samplefmt.h │ │ │ │ ├── sha.h │ │ │ │ ├── sha512.h │ │ │ │ ├── spherical.h │ │ │ │ ├── stereo3d.h │ │ │ │ ├── tea.h │ │ │ │ ├── threadmessage.h │ │ │ │ ├── time.h │ │ │ │ ├── timecode.h │ │ │ │ ├── timestamp.h │ │ │ │ ├── tree.h │ │ │ │ ├── twofish.h │ │ │ │ ├── tx.h │ │ │ │ ├── uuid.h │ │ │ │ ├── version.h │ │ │ │ ├── video_enc_params.h │ │ │ │ └── xtea.h │ │ │ ├── libpostproc │ │ │ │ ├── postprocess.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ └── libswscale │ │ │ │ ├── swscale.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ ├── lib │ │ │ └── win │ │ │ │ ├── avcodec-59.def │ │ │ │ ├── avcodec.lib │ │ │ │ ├── avdevice-59.def │ │ │ │ ├── avdevice.lib │ │ │ │ ├── avfilter-8.def │ │ │ │ ├── avfilter.lib │ │ │ │ ├── avformat-59.def │ │ │ │ ├── avformat.lib │ │ │ │ ├── avutil-57.def │ │ │ │ ├── avutil.lib │ │ │ │ ├── postproc-56.def │ │ │ │ ├── postproc.lib │ │ │ │ ├── swresample-4.def │ │ │ │ ├── swresample.lib │ │ │ │ ├── swscale-6.def │ │ │ │ └── swscale.lib │ │ └── presets │ │ │ ├── libvpx-1080p.ffpreset │ │ │ ├── libvpx-1080p50_60.ffpreset │ │ │ ├── libvpx-360p.ffpreset │ │ │ ├── libvpx-720p.ffpreset │ │ │ └── libvpx-720p50_60.ffpreset │ └── shells │ │ ├── ffmpeg │ │ ├── CMakeLists.txt │ │ ├── FFMPEG │ │ │ ├── CMakeLists-FFMPEG.txt.in │ │ │ └── CMakeLists.txt │ │ └── third_party │ │ │ ├── dav1d │ │ │ ├── CMakeLists-dav1d.txt.in │ │ │ └── CMakeLists.txt │ │ │ ├── svt-av1 │ │ │ ├── CMakeLists-svtav1.txt.in │ │ │ └── CMakeLists.txt │ │ │ └── vpx │ │ │ ├── CMakeLists-vpx.txt.in │ │ │ └── CMakeLists.txt │ │ ├── janus │ │ └── setup.sh │ │ ├── librist │ │ ├── android-arm.ini │ │ ├── android-armv8.ini │ │ ├── librist-android.sh │ │ ├── librist.bat │ │ └── librist.sh │ │ └── webRTC │ │ ├── webRTC.bat │ │ └── webRTC.sh ├── wolf.cpp ├── wolf.hpp └── wolf.ruleset └── wolf_demo └── wasm ├── build.sh ├── run.sh ├── ssl_server.py ├── wolf.cpp └── www ├── index.html ├── janus.js ├── janus_env.js ├── wolf.js └── wolf.wasm /.dockerignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/msvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/.github/workflows/msvc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGE_LOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/CHANGE_LOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/Logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/TODO.md -------------------------------------------------------------------------------- /content/audio/sine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/content/audio/sine.wav -------------------------------------------------------------------------------- /content/texture/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/content/texture/rgb.png -------------------------------------------------------------------------------- /coverage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/coverage.bat -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/GCC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/docs/GCC.txt -------------------------------------------------------------------------------- /docs/ProblemSolutions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/docs/ProblemSolutions.txt -------------------------------------------------------------------------------- /docs/git-commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/docs/git-commands.txt -------------------------------------------------------------------------------- /docs/glslValidator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/docs/glslValidator.txt -------------------------------------------------------------------------------- /docs/glslValidator_MoltenVK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/docs/glslValidator_MoltenVK.txt -------------------------------------------------------------------------------- /docs/quic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/docs/quic.md -------------------------------------------------------------------------------- /manifest.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/manifest.manifest -------------------------------------------------------------------------------- /wolf/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/.clang-format -------------------------------------------------------------------------------- /wolf/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/.clang-tidy -------------------------------------------------------------------------------- /wolf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/.gitignore -------------------------------------------------------------------------------- /wolf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/CMakeLists.txt -------------------------------------------------------------------------------- /wolf/DISABLE_ANALYSIS_BEGIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/DISABLE_ANALYSIS_BEGIN -------------------------------------------------------------------------------- /wolf/DISABLE_ANALYSIS_END: -------------------------------------------------------------------------------- 1 | #ifdef _MSC_VER 2 | #pragma warning(pop) 3 | #endif 4 | // NOLINTEND -------------------------------------------------------------------------------- /wolf/cmake/media.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/cmake/media.cmake -------------------------------------------------------------------------------- /wolf/cmake/ml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/cmake/ml.cmake -------------------------------------------------------------------------------- /wolf/cmake/stream.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/cmake/stream.cmake -------------------------------------------------------------------------------- /wolf/cmake/system.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/cmake/system.cmake -------------------------------------------------------------------------------- /wolf/cmake/vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/cmake/vcpkg.cmake -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_config.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_config.hpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_format.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_format.hpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_frame.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_frame.hpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_packet.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_av_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_av_packet.hpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_decoder.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_decoder.hpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_encoder.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_encoder.hpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_ffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_ffmpeg.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_ffmpeg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_ffmpeg.hpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_ffmpeg_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_ffmpeg_ctx.cpp -------------------------------------------------------------------------------- /wolf/media/ffmpeg/w_ffmpeg_ctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/ffmpeg/w_ffmpeg_ctx.hpp -------------------------------------------------------------------------------- /wolf/media/gst/audio/w_audio_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/audio/w_audio_format.cpp -------------------------------------------------------------------------------- /wolf/media/gst/audio/w_audio_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/audio/w_audio_format.hpp -------------------------------------------------------------------------------- /wolf/media/gst/audio/w_audio_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/audio/w_audio_info.cpp -------------------------------------------------------------------------------- /wolf/media/gst/audio/w_audio_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/audio/w_audio_info.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_buffer.cpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_buffer.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_bus.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_bus.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_bus.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_caps.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_caps.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_caps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_caps.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_clock.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_clock.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_clock.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_element.cpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_element.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_element_factory.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_element_factory.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_element_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_element_factory.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_format.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_format.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_format.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_mainloop.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_mainloop.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_mainloop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_mainloop.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_message.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_message.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_message.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_nonowning.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_nonowning.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_nonowning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_nonowning.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_pad.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_pad.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_pad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_pad.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_pipeline.cpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_pipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_pipeline.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_refptr.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_refptr.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_refptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_refptr.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_signal_handler.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/core/w_signal_handler.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/core/w_signal_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_signal_handler.hpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_structure.cpp -------------------------------------------------------------------------------- /wolf/media/gst/core/w_structure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/core/w_structure.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_aacparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_aacparse.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_aacparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_aacparse.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_appsrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_appsrc.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_appsrc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_appsrc.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_audioconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_audioconvert.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_audioconvert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_audioconvert.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_audioresample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_audioresample.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_audioresample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_audioresample.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_autovideosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_autovideosink.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_autovideosink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_autovideosink.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_avencflv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_avencflv.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_avencflv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_avencflv.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_capsfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_capsfilter.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_capsfilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_capsfilter.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_filesink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_filesink.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_filesink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_filesink.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_flvmux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_flvmux.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_flvmux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_flvmux.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_h264parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_h264parse.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_h264parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_h264parse.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_mp4mux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_mp4mux.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_mp4mux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_mp4mux.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_openh264enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_openh264enc.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_openh264enc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_openh264enc.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_queue.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_queue.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_rtmpsink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_rtmpsink.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_rtmpsink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_rtmpsink.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_rtph264pay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_rtph264pay.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_rtph264pay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_rtph264pay.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_udpsink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_udpsink.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_udpsink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_udpsink.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_videoconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_videoconvert.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_videoconvert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_videoconvert.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_videoscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_videoscale.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_videoscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_videoscale.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_videotestsrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_videotestsrc.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_videotestsrc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_videotestsrc.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_voaacenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_voaacenc.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_voaacenc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_voaacenc.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_wasapisrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_wasapisrc.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_wasapisrc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_wasapisrc.hpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_x264enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_x264enc.cpp -------------------------------------------------------------------------------- /wolf/media/gst/elements/w_element_x264enc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/elements/w_element_x264enc.hpp -------------------------------------------------------------------------------- /wolf/media/gst/internal/w_common.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/internal/w_common.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/internal/w_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/internal/w_common.hpp -------------------------------------------------------------------------------- /wolf/media/gst/internal/w_utils.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/internal/w_utils.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/internal/w_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/internal/w_utils.hpp -------------------------------------------------------------------------------- /wolf/media/gst/internal/w_wrapper.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/internal/w_wrapper.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/internal/w_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/internal/w_wrapper.hpp -------------------------------------------------------------------------------- /wolf/media/gst/video/w_video_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/video/w_video_format.cpp -------------------------------------------------------------------------------- /wolf/media/gst/video/w_video_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/video/w_video_format.hpp -------------------------------------------------------------------------------- /wolf/media/gst/video/w_video_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/video/w_video_info.cpp -------------------------------------------------------------------------------- /wolf/media/gst/video/w_video_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/video/w_video_info.hpp -------------------------------------------------------------------------------- /wolf/media/gst/w_application.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/w_application.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/w_application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/w_application.hpp -------------------------------------------------------------------------------- /wolf/media/gst/w_flow.cpp: -------------------------------------------------------------------------------- 1 | #include "media/gst/w_flow.hpp" 2 | -------------------------------------------------------------------------------- /wolf/media/gst/w_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/gst/w_flow.hpp -------------------------------------------------------------------------------- /wolf/media/test/avframe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/test/avframe.hpp -------------------------------------------------------------------------------- /wolf/media/test/ffmpeg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/test/ffmpeg.hpp -------------------------------------------------------------------------------- /wolf/media/test/gstreamer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/test/gstreamer.hpp -------------------------------------------------------------------------------- /wolf/media/test/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/test/image.hpp -------------------------------------------------------------------------------- /wolf/media/test/openal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/test/openal.hpp -------------------------------------------------------------------------------- /wolf/media/w_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/w_image.cpp -------------------------------------------------------------------------------- /wolf/media/w_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/w_image.hpp -------------------------------------------------------------------------------- /wolf/media/w_image_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/w_image_data.cpp -------------------------------------------------------------------------------- /wolf/media/w_image_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/w_image_data.hpp -------------------------------------------------------------------------------- /wolf/media/w_openal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/w_openal.cpp -------------------------------------------------------------------------------- /wolf/media/w_openal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/media/w_openal.hpp -------------------------------------------------------------------------------- /wolf/ml/nudity_detection/w_nudity_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/nudity_detection/w_nudity_detection.cpp -------------------------------------------------------------------------------- /wolf/ml/nudity_detection/w_nudity_detection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/nudity_detection/w_nudity_detection.hpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/salieri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/salieri.h -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_image_processor.cpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_image_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_image_processor.hpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_ocr_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_ocr_engine.cpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_ocr_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_ocr_engine.hpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_read_video_frames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_read_video_frames.cpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_read_video_frames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_read_video_frames.hpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_referee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_referee.cpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_referee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_referee.hpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_soccer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_soccer.cpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_soccer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_soccer.hpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_utilities.cpp -------------------------------------------------------------------------------- /wolf/ml/referee_ocr/w_utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/referee_ocr/w_utilities.hpp -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/find_all_contours_solid_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/find_all_contours_solid_black.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/gaussian_filter_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/gaussian_filter_7.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/gaussian_filter_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/gaussian_filter_default.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/make_white_background_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/make_white_background_50.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/make_white_background_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/make_white_background_default.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/negative_image_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/negative_image_default.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/prepare_image_for_contour_detection_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/prepare_image_for_contour_detection_default.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/test_image.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/threshold_filter_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/threshold_filter_180.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/image_processor/threshold_filter_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/image_processor/threshold_filter_default.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/contours_to_char_structs_Solid_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/contours_to_char_structs_Solid_black.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/contours_to_char_structs_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/contours_to_char_structs_default.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/enhance_contour_image_for_model_make_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/enhance_contour_image_for_model_make_white.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/enhance_contour_image_for_model_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/enhance_contour_image_for_model_resize.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/filter_chars_by_contour_size copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/filter_chars_by_contour_size copy 2.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/filter_chars_by_contour_size copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/filter_chars_by_contour_size copy.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/filter_chars_by_contour_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/filter_chars_by_contour_size.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/mask_contour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/mask_contour.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/ocr_engine/test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/ocr_engine/test_image.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/.fill_stat_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/.fill_stat_map -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/.initial_match_result_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/.initial_match_result_struct -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/.replace_team_names_with_most_similar_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/.replace_team_names_with_most_similar_string -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/.replace_team_names_with_most_similar_string_0_9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/.replace_team_names_with_most_similar_string_0_9 -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/.set_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/.set_config -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/.single_image_result_extraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/.single_image_result_extraction -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/.update_match_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/.update_match_data -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/replace_team_names_with_most_similar_string.txt: -------------------------------------------------------------------------------- 1 | REAL MADRID 2 | -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/single_image_result_extraction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/single_image_result_extraction.mp4 -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/soccer/single_image_result_extraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/soccer/single_image_result_extraction.png -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.get_env_boolean: -------------------------------------------------------------------------------- 1 | 2 | # Variables for testing get_env_boolean functions 3 | BOOLEAN_VALUE=True 4 | -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.get_env_cv_rect: -------------------------------------------------------------------------------- 1 | 2 | # Variables for testing get_env_boolean functions 3 | CV_RECT_VALUE=313,110,72,14 4 | -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.get_env_float: -------------------------------------------------------------------------------- 1 | 2 | # Variables for testing get_env_float functions 3 | FLOAT_VALUE=4.5 4 | -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.get_env_int: -------------------------------------------------------------------------------- 1 | 2 | # Variables for testing get_env_int functions 3 | INT_VALUE=7 4 | -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.get_env_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/utilities/.get_env_string -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.get_nearest_string_0_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/utilities/.get_nearest_string_0_5 -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.get_nearest_string_0_9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/utilities/.get_nearest_string_0_9 -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/.set_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/utilities/.set_env -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/get_nearest_string.txt: -------------------------------------------------------------------------------- 1 | test1 2 | hello 3 | -------------------------------------------------------------------------------- /wolf/ml/test/common_test_asset/utilities/get_value_from_json_file_by_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/common_test_asset/utilities/get_value_from_json_file_by_key.json -------------------------------------------------------------------------------- /wolf/ml/test/w_image_processor_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/w_image_processor_test.hpp -------------------------------------------------------------------------------- /wolf/ml/test/w_ocr_engine_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/w_ocr_engine_test.hpp -------------------------------------------------------------------------------- /wolf/ml/test/w_referee_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/w_referee_test.hpp -------------------------------------------------------------------------------- /wolf/ml/test/w_soccer_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/w_soccer_test.hpp -------------------------------------------------------------------------------- /wolf/ml/test/w_utilities_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/test/w_utilities_test.hpp -------------------------------------------------------------------------------- /wolf/ml/w_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/w_common.cpp -------------------------------------------------------------------------------- /wolf/ml/w_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/ml/w_common.hpp -------------------------------------------------------------------------------- /wolf/protos/raft.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/protos/raft.proto -------------------------------------------------------------------------------- /wolf/stream/grpc/w_grpc_client.cpp: -------------------------------------------------------------------------------- 1 | //#include "w_grpc_client.hpp" -------------------------------------------------------------------------------- /wolf/stream/grpc/w_grpc_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/grpc/w_grpc_client.hpp -------------------------------------------------------------------------------- /wolf/stream/grpc/w_grpc_server.cpp: -------------------------------------------------------------------------------- 1 | //#include "w_grpc_server.hpp" 2 | 3 | -------------------------------------------------------------------------------- /wolf/stream/grpc/w_grpc_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/grpc/w_grpc_server.hpp -------------------------------------------------------------------------------- /wolf/stream/http/w_http_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/http/w_http_server.cpp -------------------------------------------------------------------------------- /wolf/stream/http/w_http_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/http/w_http_server.hpp -------------------------------------------------------------------------------- /wolf/stream/janus/w_janus_api_emc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/janus/w_janus_api_emc.cpp -------------------------------------------------------------------------------- /wolf/stream/janus/w_janus_api_emc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/janus/w_janus_api_emc.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/common_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/common_flags.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_address.cpp: -------------------------------------------------------------------------------- 1 | #include "stream/quic/datatypes/w_address.hpp" 2 | -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/w_address.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_alpn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/w_alpn.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_credential_config.cpp: -------------------------------------------------------------------------------- 1 | #include "stream/quic/datatypes/w_credential_config.hpp" 2 | -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_credential_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/w_credential_config.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_new_connection_info.cpp: -------------------------------------------------------------------------------- 1 | #include "stream/quic/datatypes/w_new_connection_info.hpp" 2 | -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_new_connection_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/w_new_connection_info.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_registration_config.cpp: -------------------------------------------------------------------------------- 1 | #include "stream/quic/datatypes/w_registration_config.hpp" 2 | -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_registration_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/w_registration_config.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_settings.cpp: -------------------------------------------------------------------------------- 1 | #include "stream/quic/datatypes/w_settings.hpp" 2 | -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/w_settings.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_status.cpp: -------------------------------------------------------------------------------- 1 | #include "stream/quic/datatypes/w_status.hpp" 2 | -------------------------------------------------------------------------------- /wolf/stream/quic/datatypes/w_status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/datatypes/w_status.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/events/w_connection_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/events/w_connection_event.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/events/w_connection_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/events/w_connection_event.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/events/w_listener_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/events/w_listener_event.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/events/w_listener_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/events/w_listener_event.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/events/w_stream_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/events/w_stream_event.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/events/w_stream_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/events/w_stream_event.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_configuration.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_configuration.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_connection.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_connection.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_listener.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_listener.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_registration.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_registration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_registration.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_stream.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/handles/w_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/handles/w_stream.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/internal/common.cpp: -------------------------------------------------------------------------------- 1 | #include "stream/quic/internal/common.hpp" 2 | -------------------------------------------------------------------------------- /wolf/stream/quic/internal/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/internal/common.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/internal/w_msquic_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/internal/w_msquic_api.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/internal/w_msquic_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/internal/w_msquic_api.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/w_quic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/w_quic.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/w_quic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/w_quic.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/w_quic_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/w_quic_client.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/w_quic_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/w_quic_client.hpp -------------------------------------------------------------------------------- /wolf/stream/quic/w_quic_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/w_quic_server.cpp -------------------------------------------------------------------------------- /wolf/stream/quic/w_quic_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/quic/w_quic_server.hpp -------------------------------------------------------------------------------- /wolf/stream/rist/w_rist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/rist/w_rist.cpp -------------------------------------------------------------------------------- /wolf/stream/rist/w_rist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/rist/w_rist.hpp -------------------------------------------------------------------------------- /wolf/stream/rist/w_rist_data_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/rist/w_rist_data_block.cpp -------------------------------------------------------------------------------- /wolf/stream/rist/w_rist_data_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/rist/w_rist_data_block.hpp -------------------------------------------------------------------------------- /wolf/stream/test/ffmpeg_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/test/ffmpeg_stream.hpp -------------------------------------------------------------------------------- /wolf/stream/test/grpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/test/grpc.hpp -------------------------------------------------------------------------------- /wolf/stream/test/quic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/test/quic.hpp -------------------------------------------------------------------------------- /wolf/stream/test/rist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/stream/test/rist.hpp -------------------------------------------------------------------------------- /wolf/system/compression/w_lz4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/compression/w_lz4.cpp -------------------------------------------------------------------------------- /wolf/system/compression/w_lz4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/compression/w_lz4.hpp -------------------------------------------------------------------------------- /wolf/system/compression/w_lzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/compression/w_lzma.cpp -------------------------------------------------------------------------------- /wolf/system/compression/w_lzma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/compression/w_lzma.hpp -------------------------------------------------------------------------------- /wolf/system/db/w_postgresql.cpp: -------------------------------------------------------------------------------- 1 | #include "system/db/w_postgresql.hpp" 2 | -------------------------------------------------------------------------------- /wolf/system/db/w_postgresql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/db/w_postgresql.hpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_client.hpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_client_emc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_client_emc.cpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_client_keymap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_client_keymap.hpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_client_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_client_sdl.cpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_client_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_client_types.hpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_virtual.cpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_virtual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_virtual.hpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_virtual_bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_virtual_bus.hpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_virtual_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_virtual_pool.cpp -------------------------------------------------------------------------------- /wolf/system/gamepad/w_gamepad_virtual_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/gamepad/w_gamepad_virtual_pool.hpp -------------------------------------------------------------------------------- /wolf/system/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/getopt.h -------------------------------------------------------------------------------- /wolf/system/invocable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/invocable.h -------------------------------------------------------------------------------- /wolf/system/log/w_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/log/w_log.cpp -------------------------------------------------------------------------------- /wolf/system/log/w_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/log/w_log.hpp -------------------------------------------------------------------------------- /wolf/system/log/w_log_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/log/w_log_config.hpp -------------------------------------------------------------------------------- /wolf/system/script/w_lua.cpp: -------------------------------------------------------------------------------- 1 | #include "w_lua.hpp" 2 | -------------------------------------------------------------------------------- /wolf/system/script/w_lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/script/w_lua.hpp -------------------------------------------------------------------------------- /wolf/system/script/w_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/script/w_python.cpp -------------------------------------------------------------------------------- /wolf/system/script/w_python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/script/w_python.hpp -------------------------------------------------------------------------------- /wolf/system/socket/w_socket_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_socket_options.hpp -------------------------------------------------------------------------------- /wolf/system/socket/w_tcp_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_tcp_client.cpp -------------------------------------------------------------------------------- /wolf/system/socket/w_tcp_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_tcp_client.hpp -------------------------------------------------------------------------------- /wolf/system/socket/w_tcp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_tcp_server.cpp -------------------------------------------------------------------------------- /wolf/system/socket/w_tcp_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_tcp_server.hpp -------------------------------------------------------------------------------- /wolf/system/socket/w_ws_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_ws_client.cpp -------------------------------------------------------------------------------- /wolf/system/socket/w_ws_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_ws_client.hpp -------------------------------------------------------------------------------- /wolf/system/socket/w_ws_client_emc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_ws_client_emc.cpp -------------------------------------------------------------------------------- /wolf/system/socket/w_ws_client_emc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_ws_client_emc.hpp -------------------------------------------------------------------------------- /wolf/system/socket/w_ws_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_ws_server.cpp -------------------------------------------------------------------------------- /wolf/system/socket/w_ws_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/socket/w_ws_server.hpp -------------------------------------------------------------------------------- /wolf/system/test/compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/compress.hpp -------------------------------------------------------------------------------- /wolf/system/test/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/coroutine.hpp -------------------------------------------------------------------------------- /wolf/system/test/gamepad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/gamepad.hpp -------------------------------------------------------------------------------- /wolf/system/test/gametime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/gametime.hpp -------------------------------------------------------------------------------- /wolf/system/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/index.html -------------------------------------------------------------------------------- /wolf/system/test/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/log.hpp -------------------------------------------------------------------------------- /wolf/system/test/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/lua.hpp -------------------------------------------------------------------------------- /wolf/system/test/postgresql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/postgresql.hpp -------------------------------------------------------------------------------- /wolf/system/test/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/process.hpp -------------------------------------------------------------------------------- /wolf/system/test/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/python.hpp -------------------------------------------------------------------------------- /wolf/system/test/signal_slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/signal_slot.hpp -------------------------------------------------------------------------------- /wolf/system/test/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/tcp.hpp -------------------------------------------------------------------------------- /wolf/system/test/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/trace.hpp -------------------------------------------------------------------------------- /wolf/system/test/ws.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/test/ws.hpp -------------------------------------------------------------------------------- /wolf/system/test/ws_server.sh: -------------------------------------------------------------------------------- 1 | python -m http.server 8888 -------------------------------------------------------------------------------- /wolf/system/w_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_flags.hpp -------------------------------------------------------------------------------- /wolf/system/w_gametime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_gametime.cpp -------------------------------------------------------------------------------- /wolf/system/w_gametime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_gametime.hpp -------------------------------------------------------------------------------- /wolf/system/w_leak_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_leak_detector.cpp -------------------------------------------------------------------------------- /wolf/system/w_leak_detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_leak_detector.hpp -------------------------------------------------------------------------------- /wolf/system/w_overloaded.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_overloaded.hpp -------------------------------------------------------------------------------- /wolf/system/w_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_process.cpp -------------------------------------------------------------------------------- /wolf/system/w_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_process.hpp -------------------------------------------------------------------------------- /wolf/system/w_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_time.cpp -------------------------------------------------------------------------------- /wolf/system/w_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_time.hpp -------------------------------------------------------------------------------- /wolf/system/w_trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/system/w_trace.hpp -------------------------------------------------------------------------------- /wolf/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/tests.cpp -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/LICENSE -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/README.txt -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/avcodec-59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/avcodec-59.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/avdevice-59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/avdevice-59.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/avfilter-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/avfilter-8.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/avformat-59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/avformat-59.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/avutil-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/avutil-57.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/postproc-56.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/postproc-56.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/swresample-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/swresample-4.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/bin/swscale-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/bin/swscale-6.dll -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/bsf.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/codec.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/codec_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/codec_desc.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/codec_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/codec_id.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/codec_par.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/codec_par.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/defs.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/jni.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/packet.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/version_major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/version_major.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavdevice/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavdevice/version_major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavdevice/version_major.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavfilter/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavfilter/version_major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavfilter/version_major.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavformat/avformat.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavformat/avio.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavformat/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavformat/version_major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavformat/version_major.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/adler32.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/aes.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/attributes.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/avassert.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/avstring.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/avutil.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/base64.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/bprint.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/bswap.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/buffer.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/camellia.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/cast5.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/common.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/cpu.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/crc.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/csp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/csp.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/des.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/detection_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/detection_bbox.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/dict.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/display.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/dovi_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/dovi_meta.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/encryption_info.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/error.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/eval.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/fifo.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/file.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/film_grain_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/film_grain_params.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/frame.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hash.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hdr_dynamic_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hdr_dynamic_metadata.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hdr_dynamic_vivid_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hdr_dynamic_vivid_metadata.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hmac.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_opencl.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/hwcontext_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/hwcontext_vulkan.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/lfg.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/log.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/lzo.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/macros.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/md5.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/mem.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/opt.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/rational.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/rc4.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/sha.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/sha512.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/spherical.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/tea.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/time.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/timecode.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/tree.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/twofish.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/tx.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/uuid.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/video_enc_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/video_enc_params.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libavutil/xtea.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libpostproc/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libpostproc/version_major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libpostproc/version_major.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libswresample/swresample.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libswresample/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libswresample/version_major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libswresample/version_major.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libswscale/swscale.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libswscale/version.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/include/libswscale/version_major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/include/libswscale/version_major.h -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avcodec-59.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avcodec-59.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avcodec.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avdevice-59.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avdevice-59.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avdevice.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avfilter-8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avfilter-8.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avfilter.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avformat-59.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avformat-59.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avformat.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avutil-57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avutil-57.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/avutil.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/postproc-56.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/postproc-56.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/postproc.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/swresample-4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/swresample-4.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/swresample.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/swscale-6.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/swscale-6.def -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/lib/win/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/lib/win/swscale.lib -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/presets/libvpx-1080p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/presets/libvpx-1080p.ffpreset -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/presets/libvpx-1080p50_60.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/presets/libvpx-1080p50_60.ffpreset -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/presets/libvpx-360p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/presets/libvpx-360p.ffpreset -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/presets/libvpx-720p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/presets/libvpx-720p.ffpreset -------------------------------------------------------------------------------- /wolf/third_party/ffmpeg/presets/libvpx-720p50_60.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/ffmpeg/presets/libvpx-720p50_60.ffpreset -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/CMakeLists.txt -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/FFMPEG/CMakeLists-FFMPEG.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/FFMPEG/CMakeLists-FFMPEG.txt.in -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/FFMPEG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/FFMPEG/CMakeLists.txt -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/third_party/dav1d/CMakeLists-dav1d.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/third_party/dav1d/CMakeLists-dav1d.txt.in -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/third_party/dav1d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/third_party/dav1d/CMakeLists.txt -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/third_party/svt-av1/CMakeLists-svtav1.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/third_party/svt-av1/CMakeLists-svtav1.txt.in -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/third_party/svt-av1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/third_party/svt-av1/CMakeLists.txt -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/third_party/vpx/CMakeLists-vpx.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/third_party/vpx/CMakeLists-vpx.txt.in -------------------------------------------------------------------------------- /wolf/third_party/shells/ffmpeg/third_party/vpx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/ffmpeg/third_party/vpx/CMakeLists.txt -------------------------------------------------------------------------------- /wolf/third_party/shells/janus/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/janus/setup.sh -------------------------------------------------------------------------------- /wolf/third_party/shells/librist/android-arm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/librist/android-arm.ini -------------------------------------------------------------------------------- /wolf/third_party/shells/librist/android-armv8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/librist/android-armv8.ini -------------------------------------------------------------------------------- /wolf/third_party/shells/librist/librist-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/librist/librist-android.sh -------------------------------------------------------------------------------- /wolf/third_party/shells/librist/librist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/librist/librist.bat -------------------------------------------------------------------------------- /wolf/third_party/shells/librist/librist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/librist/librist.sh -------------------------------------------------------------------------------- /wolf/third_party/shells/webRTC/webRTC.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/webRTC/webRTC.bat -------------------------------------------------------------------------------- /wolf/third_party/shells/webRTC/webRTC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/third_party/shells/webRTC/webRTC.sh -------------------------------------------------------------------------------- /wolf/wolf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/wolf.cpp -------------------------------------------------------------------------------- /wolf/wolf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/wolf.hpp -------------------------------------------------------------------------------- /wolf/wolf.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf/wolf.ruleset -------------------------------------------------------------------------------- /wolf_demo/wasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/build.sh -------------------------------------------------------------------------------- /wolf_demo/wasm/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/run.sh -------------------------------------------------------------------------------- /wolf_demo/wasm/ssl_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/ssl_server.py -------------------------------------------------------------------------------- /wolf_demo/wasm/wolf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/wolf.cpp -------------------------------------------------------------------------------- /wolf_demo/wasm/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/www/index.html -------------------------------------------------------------------------------- /wolf_demo/wasm/www/janus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/www/janus.js -------------------------------------------------------------------------------- /wolf_demo/wasm/www/janus_env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/www/janus_env.js -------------------------------------------------------------------------------- /wolf_demo/wasm/www/wolf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/www/wolf.js -------------------------------------------------------------------------------- /wolf_demo/wasm/www/wolf.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfSource/WolfEngine/HEAD/wolf_demo/wasm/www/wolf.wasm --------------------------------------------------------------------------------