SYMBOL INDEX (2011 symbols across 284 files) FILE: PinBox/PinBox/include/Anim.h function class (line 14) | class Anim { FILE: PinBox/PinBox/include/Color.h type Color (line 16) | struct Color function rgb2hsv (line 73) | inline void rgb2hsv() function hsv2rgb (line 97) | inline void hsv2rgb() function luminosity (line 120) | inline float luminosity() function contrast (line 127) | inline float contrast(Color c) function level (line 132) | inline int level(Color c) function isDark (line 138) | inline bool isDark() { return (float)(r * 299 + g * 587 + b * 114) / 100... function isLight (line 139) | inline bool isLight() { return !isDark(); } function Color (line 140) | inline Color negate() { return RGB(255-r, 255-g, 255-b); } function lighten (line 141) | inline void lighten(float ratio) { WARP_HSL(l += l * ratio) } function darken (line 142) | inline void darken(float ratio) { WARP_HSL(l -= l * ratio) } function saturate (line 143) | inline void saturate(float ratio) { WARP_HSL(s += s * ratio) } function desaturate (line 144) | inline void desaturate(float ratio) { WARP_HSL(s -= s * ratio) } function Color (line 145) | inline Color grayscale() { float v = r * 0.3f + g * 0.59f + b * 0.11f; r... function rorate (line 146) | inline void rorate(float degrees) { WARP_HSL( h = (int)(h + degrees) % 3... function Color (line 147) | inline Color mix(Color mixin, float weight) FILE: PinBox/PinBox/include/ConfigManager.h type ServerConfig (line 12) | struct ServerConfig { function class (line 18) | class ConfigManager FILE: PinBox/PinBox/include/HubItem.h type HubItemType (line 5) | enum HubItemType function class (line 12) | class HubItem FILE: PinBox/PinBox/include/Logger.h function class (line 6) | class Logger FILE: PinBox/PinBox/include/Mutex.h function class (line 5) | class Mutex FILE: PinBox/PinBox/include/PPAudio.h function class (line 12) | class PPAudio FILE: PinBox/PinBox/include/PPDecoder.h type MemoryBuffer (line 22) | struct MemoryBuffer { type DecodeState (line 52) | typedef struct DecodeState{ function class (line 57) | class PPDecoder FILE: PinBox/PinBox/include/PPGraphics.h type Vector2 (line 43) | typedef struct type Vector3 (line 49) | typedef struct type VertexPosCol (line 56) | typedef struct type VertexPosTex (line 62) | typedef struct type Sprite (line 68) | typedef struct function class (line 79) | class PPGraphics FILE: PinBox/PinBox/include/PPMessage.h function class (line 20) | class PPMessage FILE: PinBox/PinBox/include/PPSession.h type PPSession_Type (line 39) | enum PPSession_Type { PPSESSION_NONE, PPSESSION_MOVIE, PPSESSION_SCREEN_... type QueueMessage (line 73) | typedef struct type ppConectState (line 83) | enum ppConectState { IDLE, CONNECTING, CONNECTED, FAIL } type std (line 84) | typedef std::function PPNetworkRece... type std (line 85) | typedef std::function PPNetworkCallback; function class (line 87) | class PPSession FILE: PinBox/PinBox/include/PPSessionManager.h type SessionState (line 14) | enum SessionState type VideoFrame (line 25) | typedef struct type BusyState (line 31) | enum BusyState function class (line 38) | class PPSessionManager FILE: PinBox/PinBox/include/PPUI.h type Direction (line 20) | enum Direction type DialogBoxOverride (line 28) | struct DialogBoxOverride { type WH (line 36) | struct WH { type std (line 41) | typedef std::function TabConte... type std (line 42) | typedef std::function PopupCallback; type std (line 43) | typedef std::function WHCallback; type std (line 44) | typedef std::function ResultCallback; function class (line 46) | class PPUI FILE: PinBox/PinBox/include/easing.h type easing_functions (line 3) | enum easing_functions FILE: PinBox/PinBox/include/lodepng.h type LodePNGColorType (line 91) | typedef enum LodePNGColorType function namespace (line 199) | namespace lodepng type LodePNGDecompressSettings (line 255) | typedef struct LodePNGDecompressSettings LodePNGDecompressSettings; type LodePNGDecompressSettings (line 256) | struct LodePNGDecompressSettings type LodePNGCompressSettings (line 284) | typedef struct LodePNGCompressSettings LodePNGCompressSettings; type LodePNGCompressSettings (line 285) | struct LodePNGCompressSettings /*deflate = compress*/ type LodePNGColorMode (line 319) | typedef struct LodePNGColorMode type LodePNGTime (line 396) | typedef struct LodePNGTime type LodePNGInfo (line 408) | typedef struct LodePNGInfo type LodePNGDecoderSettings (line 615) | typedef struct LodePNGDecoderSettings type LodePNGFilterStrategy (line 642) | typedef enum LodePNGFilterStrategy type LodePNGColorProfile (line 665) | typedef struct LodePNGColorProfile type LodePNGEncoderSettings (line 694) | typedef struct LodePNGEncoderSettings type LodePNGState (line 731) | typedef struct LodePNGState function namespace (line 943) | namespace lodepng FILE: PinBox/PinBox/include/yuv_rgb.h type YCbCrType (line 21) | typedef enum FILE: PinBox/PinBox/source/ConfigManager.cpp function ConfigManager (line 6) | ConfigManager* ConfigManager::Get() FILE: PinBox/PinBox/source/PPAudio.cpp function PPAudio (line 13) | PPAudio* PPAudio::Get() FILE: PinBox/PinBox/source/PPDecoder.cpp function u8 (line 92) | u8* PPDecoder::appendVideoBuffer(u8* buffer, u32 size) function u8 (line 213) | u8* PPDecoder::decodeVideoStream() FILE: PinBox/PinBox/source/PPGraphics.cpp function next_pow2 (line 27) | unsigned int next_pow2(unsigned int v) function PPGraphics (line 39) | PPGraphics* PPGraphics::Get() function Sprite (line 151) | Sprite* PPGraphics::AddCacheImageAsset(const char* name, std::string key) function Sprite (line 164) | Sprite* PPGraphics::AddCacheImage(const char* path, std::string key) function Sprite (line 220) | Sprite* PPGraphics::AddCacheImage(u8* buf, u32 size, std::string key) function Sprite (line 276) | Sprite* PPGraphics::GetCacheImage(std::string key) function Vector2 (line 758) | Vector2 PPGraphics::GetTextSize(const char* text, float scaleX, float sc... function Vector3 (line 796) | Vector3 PPGraphics::GetTextSizeAutoWrap(const char* text, float scaleX, ... FILE: PinBox/PinBox/source/PPMessage.cpp function u8 (line 9) | u8* PPMessage::BuildMessage(u8* contentBuffer, u32 contentSize) function u8 (line 34) | u8* PPMessage::BuildMessageEmpty() FILE: PinBox/PinBox/source/PPSession.cpp function createNew (line 17) | void createNew(void* arg) { function createTest (line 20) | void createTest(void* arg) { type sockaddr_in (line 148) | struct sockaddr_in type sockaddr (line 164) | struct sockaddr FILE: PinBox/PinBox/source/PPSessionManager.cpp function SessionState (line 42) | SessionState PPSessionManager::ConnectToServer(ServerConfig* config) FILE: PinBox/PinBox/source/PPUI.cpp function u32 (line 77) | u32 PPUI::getKeyDown() function u32 (line 82) | u32 PPUI::getKeyHold() function u32 (line 87) | u32 PPUI::getKeyUp() function circlePosition (line 92) | circlePosition PPUI::getLeftCircle() function circlePosition (line 97) | circlePosition PPUI::getRightCircle() function u32 (line 102) | u32 PPUI::getSleepModeState() type stat (line 184) | struct stat function Vector2 (line 1084) | Vector2 PPUI::ScrollBox(float x, float y, float w, float h, Direction di... function PopupCallback (line 1438) | PopupCallback PPUI::GetPopup() FILE: PinBox/PinBox/source/easing.cpp function easeInSine (line 10) | double easeInSine( double t ) { function easeOutSine (line 14) | double easeOutSine( double t ) { function easeInOutSine (line 18) | double easeInOutSine( double t ) { function easeInQuad (line 22) | double easeInQuad( double t ) { function easeOutQuad (line 26) | double easeOutQuad( double t ) { function easeInOutQuad (line 30) | double easeInOutQuad( double t ) { function easeInCubic (line 34) | double easeInCubic( double t ) { function easeOutCubic (line 38) | double easeOutCubic( double t ) { function easeInOutCubic (line 42) | double easeInOutCubic( double t ) { function easeInQuart (line 46) | double easeInQuart( double t ) { function easeOutQuart (line 51) | double easeOutQuart( double t ) { function easeInOutQuart (line 56) | double easeInOutQuart( double t ) { function easeInQuint (line 66) | double easeInQuint( double t ) { function easeOutQuint (line 71) | double easeOutQuint( double t ) { function easeInOutQuint (line 76) | double easeInOutQuint( double t ) { function easeInExpo (line 87) | double easeInExpo( double t ) { function easeOutExpo (line 91) | double easeOutExpo( double t ) { function easeInOutExpo (line 95) | double easeInOutExpo( double t ) { function easeInCirc (line 103) | double easeInCirc( double t ) { function easeOutCirc (line 107) | double easeOutCirc( double t ) { function easeInOutCirc (line 111) | double easeInOutCirc( double t ) { function easeInBack (line 119) | double easeInBack( double t ) { function easeOutBack (line 123) | double easeOutBack( double t ) { function easeInOutBack (line 127) | double easeInOutBack( double t ) { function easeInElastic (line 135) | double easeInElastic( double t ) { function easeOutElastic (line 140) | double easeOutElastic( double t ) { function easeInOutElastic (line 145) | double easeInOutElastic( double t ) { function easeInBounce (line 158) | double easeInBounce( double t ) { function easeOutBounce (line 162) | double easeOutBounce( double t ) { function easeInOutBounce (line 166) | double easeInOutBounce( double t ) { function easingFunction (line 174) | easingFunction getEasingFunction( easing_functions function ) FILE: PinBox/PinBox/source/lodepng.cpp function lodepng_free (line 79) | static void lodepng_free(void* ptr) type uivector (line 146) | struct uivector function uivector_cleanup (line 153) | static void uivector_cleanup(void* p) function uivector_reserve (line 161) | static unsigned uivector_reserve(uivector* p, size_t allocsize) function uivector_resize (line 178) | static unsigned uivector_resize(uivector* p, size_t size) function uivector_resizev (line 186) | static unsigned uivector_resizev(uivector* p, size_t size, unsigned value) function uivector_init (line 194) | static void uivector_init(uivector* p) function uivector_push_back (line 202) | static unsigned uivector_push_back(uivector* p, unsigned c) type ucvector (line 214) | struct ucvector function ucvector_reserve (line 222) | static unsigned ucvector_reserve(ucvector* p, size_t allocsize) function ucvector_resize (line 239) | static unsigned ucvector_resize(ucvector* p, size_t size) function ucvector_cleanup (line 248) | static void ucvector_cleanup(void* p) function ucvector_init (line 255) | static void ucvector_init(ucvector* p) function ucvector_init_buffer (line 265) | static void ucvector_init_buffer(ucvector* p, unsigned char* buffer, siz... function ucvector_push_back (line 274) | static unsigned ucvector_push_back(ucvector* p, unsigned char c) function string_cleanup (line 289) | static void string_cleanup(char** out) function lodepng_read32bitInt (line 316) | unsigned lodepng_read32bitInt(const unsigned char* buffer) function lodepng_set32bitInt (line 323) | static void lodepng_set32bitInt(unsigned char* buffer, unsigned value) function lodepng_add32bitInt (line 333) | static void lodepng_add32bitInt(ucvector* buffer, unsigned value) function lodepng_filesize (line 347) | static long lodepng_filesize(const char* filename) function lodepng_buffer_file (line 369) | static unsigned lodepng_buffer_file(unsigned char* out, size_t size, con... function lodepng_load_file (line 383) | unsigned lodepng_load_file(unsigned char** out, size_t* outsize, const c... function lodepng_save_file (line 396) | unsigned lodepng_save_file(const unsigned char* buffer, size_t buffersiz... function addBitsToStream (line 426) | static void addBitsToStream(size_t* bitpointer, ucvector* bitstream, uns... function addBitsToStreamReversed (line 432) | static void addBitsToStreamReversed(size_t* bitpointer, ucvector* bitstr... function readBitFromStream (line 443) | static unsigned char readBitFromStream(size_t* bitpointer, const unsigne... function readBitsFromStream (line 450) | static unsigned readBitsFromStream(size_t* bitpointer, const unsigned ch... type HuffmanTree (line 505) | struct HuffmanTree function HuffmanTree_init (line 527) | static void HuffmanTree_init(HuffmanTree* tree) function HuffmanTree_cleanup (line 534) | static void HuffmanTree_cleanup(HuffmanTree* tree) function HuffmanTree_make2DTree (line 542) | static unsigned HuffmanTree_make2DTree(HuffmanTree* tree) function HuffmanTree_makeFromLengths2 (line 607) | static unsigned HuffmanTree_makeFromLengths2(HuffmanTree* tree) function HuffmanTree_makeFromLengths (line 652) | static unsigned HuffmanTree_makeFromLengths(HuffmanTree* tree, const uns... type BPMNode (line 670) | struct BPMNode type BPMNode (line 674) | struct BPMNode type BPMLists (line 679) | struct BPMLists function BPMNode (line 694) | static BPMNode* bpmnode_create(BPMLists* lists, int weight, unsigned ind... type BPMNode (line 674) | struct BPMNode function bpmnode_sort (line 727) | static void bpmnode_sort(BPMNode* leaves, size_t num) function boundaryPM (line 754) | static void boundaryPM(BPMLists* lists, BPMNode* leaves, size_t numprese... function lodepng_huffman_code_lengths (line 785) | unsigned lodepng_huffman_code_lengths(unsigned* lengths, const unsigned*... function HuffmanTree_makeFromFrequencies (line 875) | static unsigned HuffmanTree_makeFromFrequencies(HuffmanTree* tree, const... function HuffmanTree_getCode (line 892) | static unsigned HuffmanTree_getCode(const HuffmanTree* tree, unsigned in... function HuffmanTree_getLength (line 897) | static unsigned HuffmanTree_getLength(const HuffmanTree* tree, unsigned ... function generateFixedLitLenTree (line 904) | static unsigned generateFixedLitLenTree(HuffmanTree* tree) function generateFixedDistanceTree (line 923) | static unsigned generateFixedDistanceTree(HuffmanTree* tree) function huffmanDecodeSymbol (line 943) | static unsigned huffmanDecodeSymbol(const unsigned char* in, size_t* bp, function getTreeInflateFixed (line 971) | static void getTreeInflateFixed(HuffmanTree* tree_ll, HuffmanTree* tree_d) function getTreeInflateDynamic (line 979) | static unsigned getTreeInflateDynamic(HuffmanTree* tree_ll, HuffmanTree*... function inflateHuffmanBlock (line 1127) | static unsigned inflateHuffmanBlock(ucvector* out, const unsigned char* ... function inflateNoCompression (line 1222) | static unsigned inflateNoCompression(ucvector* out, const unsigned char*... function lodepng_inflatev (line 1250) | static unsigned lodepng_inflatev(ucvector* out, function lodepng_inflate (line 1280) | unsigned lodepng_inflate(unsigned char** out, size_t* outsize, function inflate (line 1293) | static unsigned inflate(unsigned char** out, size_t* outsize, function addHuffmanSymbol (line 1318) | static void addHuffmanSymbol(size_t* bp, ucvector* compressed, unsigned ... function searchCodeIndex (line 1325) | static size_t searchCodeIndex(const unsigned* array, size_t array_size, ... function addLengthDistance (line 1340) | static void addLengthDistance(uivector* values, size_t length, size_t di... type Hash (line 1364) | struct Hash function hash_init (line 1378) | static unsigned hash_init(Hash* hash, unsigned windowsize) function hash_cleanup (line 1405) | static void hash_cleanup(Hash* hash) function getHash (line 1418) | static unsigned getHash(const unsigned char* data, size_t size, size_t pos) function countZeros (line 1440) | static unsigned countZeros(const unsigned char* data, size_t size, size_... function updateHashChain (line 1452) | static void updateHashChain(Hash* hash, size_t wpos, unsigned hashval, u... function encodeLZ77 (line 1472) | static unsigned encodeLZ77(uivector* out, Hash* hash, function deflateNoCompression (line 1651) | static unsigned deflateNoCompression(ucvector* out, const unsigned char*... function writeLZ77data (line 1693) | static void writeLZ77data(size_t* bp, ucvector* out, const uivector* lz7... function deflateDynamic (line 1722) | static unsigned deflateDynamic(ucvector* out, size_t* bp, Hash* hash, function deflateFixed (line 1967) | static unsigned deflateFixed(ucvector* out, size_t* bp, Hash* hash, function lodepng_deflatev (line 2015) | static unsigned lodepng_deflatev(ucvector* out, const unsigned char* in,... function lodepng_deflate (line 2056) | unsigned lodepng_deflate(unsigned char** out, size_t* outsize, function deflate (line 2069) | static unsigned deflate(unsigned char** out, size_t* outsize, function update_adler32 (line 2089) | static unsigned update_adler32(unsigned adler, const unsigned char* data... function adler32 (line 2113) | static unsigned adler32(const unsigned char* data, unsigned len) function lodepng_zlib_decompress (line 2124) | unsigned lodepng_zlib_decompress(unsigned char** out, size_t* outsize, c... function zlib_decompress (line 2169) | static unsigned zlib_decompress(unsigned char** out, size_t* outsize, co... function lodepng_zlib_compress (line 2186) | unsigned lodepng_zlib_compress(unsigned char** out, size_t* outsize, con... function zlib_compress (line 2228) | static unsigned zlib_compress(unsigned char** out, size_t* outsize, cons... function zlib_decompress (line 2246) | static unsigned zlib_decompress(unsigned char** out, size_t* outsize, co... function zlib_compress (line 2254) | static unsigned zlib_compress(unsigned char** out, size_t* outsize, cons... function lodepng_compress_settings_init (line 2271) | void lodepng_compress_settings_init(LodePNGCompressSettings* settings) function lodepng_decompress_settings_init (line 2293) | void lodepng_decompress_settings_init(LodePNGDecompressSettings* settings) function lodepng_crc32 (line 2357) | unsigned lodepng_crc32(const unsigned char* data, size_t length) function readBitFromReversedStream (line 2375) | static unsigned char readBitFromReversedStream(size_t* bitpointer, const... function readBitsFromReversedStream (line 2382) | static unsigned readBitsFromReversedStream(size_t* bitpointer, const uns... function setBitOfReversedStream0 (line 2395) | static void setBitOfReversedStream0(size_t* bitpointer, unsigned char* b... function setBitOfReversedStream (line 2407) | static void setBitOfReversedStream(size_t* bitpointer, unsigned char* bi... function lodepng_chunk_length (line 2419) | unsigned lodepng_chunk_length(const unsigned char* chunk) function lodepng_chunk_type (line 2424) | void lodepng_chunk_type(char type[5], const unsigned char* chunk) function lodepng_chunk_type_equals (line 2431) | unsigned char lodepng_chunk_type_equals(const unsigned char* chunk, cons... function lodepng_chunk_ancillary (line 2437) | unsigned char lodepng_chunk_ancillary(const unsigned char* chunk) function lodepng_chunk_private (line 2442) | unsigned char lodepng_chunk_private(const unsigned char* chunk) function lodepng_chunk_safetocopy (line 2447) | unsigned char lodepng_chunk_safetocopy(const unsigned char* chunk) function lodepng_chunk_check_crc (line 2462) | unsigned lodepng_chunk_check_crc(const unsigned char* chunk) function lodepng_chunk_generate_crc (line 2472) | void lodepng_chunk_generate_crc(unsigned char* chunk) function lodepng_chunk_append (line 2491) | unsigned lodepng_chunk_append(unsigned char** out, size_t* outlength, co... function lodepng_chunk_create (line 2510) | unsigned lodepng_chunk_create(unsigned char** out, size_t* outlength, un... function checkColorValidity (line 2546) | static unsigned checkColorValidity(LodePNGColorType colortype, unsigned ... function getNumColorChannels (line 2560) | static unsigned getNumColorChannels(LodePNGColorType colortype) function lodepng_get_bpp_lct (line 2573) | static unsigned lodepng_get_bpp_lct(LodePNGColorType colortype, unsigned... function lodepng_color_mode_init (line 2581) | void lodepng_color_mode_init(LodePNGColorMode* info) function lodepng_color_mode_cleanup (line 2591) | void lodepng_color_mode_cleanup(LodePNGColorMode* info) function lodepng_color_mode_copy (line 2596) | unsigned lodepng_color_mode_copy(LodePNGColorMode* dest, const LodePNGCo... function lodepng_color_mode_equal (line 2610) | static int lodepng_color_mode_equal(const LodePNGColorMode* a, const Lod... function LodePNGColorMode (line 2633) | static LodePNGColorMode lodepng_color_mode_make(LodePNGColorType colorty... function lodepng_palette_clear (line 2644) | void lodepng_palette_clear(LodePNGColorMode* info) function lodepng_palette_add (line 2651) | unsigned lodepng_palette_add(LodePNGColorMode* info, function lodepng_get_bpp (line 2673) | unsigned lodepng_get_bpp(const LodePNGColorMode* info) function lodepng_get_channels (line 2678) | unsigned lodepng_get_channels(const LodePNGColorMode* info) function lodepng_is_greyscale_type (line 2683) | unsigned lodepng_is_greyscale_type(const LodePNGColorMode* info) function lodepng_is_alpha_type (line 2688) | unsigned lodepng_is_alpha_type(const LodePNGColorMode* info) function lodepng_is_palette_type (line 2693) | unsigned lodepng_is_palette_type(const LodePNGColorMode* info) function lodepng_has_palette_alpha (line 2698) | unsigned lodepng_has_palette_alpha(const LodePNGColorMode* info) function lodepng_can_have_alpha (line 2708) | unsigned lodepng_can_have_alpha(const LodePNGColorMode* info) function lodepng_get_raw_size_lct (line 2715) | size_t lodepng_get_raw_size_lct(unsigned w, unsigned h, LodePNGColorType... function lodepng_get_raw_size (line 2722) | size_t lodepng_get_raw_size(unsigned w, unsigned h, const LodePNGColorMo... function lodepng_get_raw_size_idat (line 2734) | static size_t lodepng_get_raw_size_idat(unsigned w, unsigned h, const Lo... function lodepng_mulofl (line 2744) | static int lodepng_mulofl(size_t a, size_t b, size_t* result) function lodepng_addofl (line 2752) | static int lodepng_addofl(size_t a, size_t b, size_t* result) function lodepng_pixel_overflow (line 2766) | static int lodepng_pixel_overflow(unsigned w, unsigned h, function LodePNGUnknownChunks_init (line 2790) | static void LodePNGUnknownChunks_init(LodePNGInfo* info) function LodePNGUnknownChunks_cleanup (line 2797) | static void LodePNGUnknownChunks_cleanup(LodePNGInfo* info) function LodePNGUnknownChunks_copy (line 2803) | static unsigned LodePNGUnknownChunks_copy(LodePNGInfo* dest, const LodeP... function LodePNGText_init (line 2826) | static void LodePNGText_init(LodePNGInfo* info) function LodePNGText_cleanup (line 2833) | static void LodePNGText_cleanup(LodePNGInfo* info) function LodePNGText_copy (line 2845) | static unsigned LodePNGText_copy(LodePNGInfo* dest, const LodePNGInfo* s... function lodepng_clear_text (line 2858) | void lodepng_clear_text(LodePNGInfo* info) function lodepng_add_text (line 2863) | unsigned lodepng_add_text(LodePNGInfo* info, const char* key, const char... function LodePNGIText_init (line 2886) | static void LodePNGIText_init(LodePNGInfo* info) function LodePNGIText_cleanup (line 2895) | static void LodePNGIText_cleanup(LodePNGInfo* info) function LodePNGIText_copy (line 2911) | static unsigned LodePNGIText_copy(LodePNGInfo* dest, const LodePNGInfo* ... function lodepng_clear_itext (line 2927) | void lodepng_clear_itext(LodePNGInfo* info) function lodepng_add_itext (line 2932) | unsigned lodepng_add_itext(LodePNGInfo* info, const char* key, const cha... function lodepng_assign_icc (line 2963) | static unsigned lodepng_assign_icc(LodePNGInfo* info, const char* name, ... function lodepng_set_icc (line 2976) | unsigned lodepng_set_icc(LodePNGInfo* info, const char* name, const unsi... function lodepng_clear_icc (line 2983) | void lodepng_clear_icc(LodePNGInfo* info) function lodepng_info_init (line 2992) | void lodepng_info_init(LodePNGInfo* info) function lodepng_info_cleanup (line 3019) | void lodepng_info_cleanup(LodePNGInfo* info) function lodepng_info_copy (line 3032) | unsigned lodepng_info_copy(LodePNGInfo* dest, const LodePNGInfo* source) function addColorBits (line 3056) | static void addColorBits(unsigned char* out, size_t index, unsigned bits... type ColorTree (line 3067) | struct ColorTree type ColorTree (line 3075) | struct ColorTree function color_tree_init (line 3081) | static void color_tree_init(ColorTree* tree) function color_tree_cleanup (line 3088) | static void color_tree_cleanup(ColorTree* tree) function color_tree_get (line 3102) | static int color_tree_get(ColorTree* tree, unsigned char r, unsigned cha... function color_tree_has (line 3115) | static int color_tree_has(ColorTree* tree, unsigned char r, unsigned cha... function color_tree_add (line 3123) | static void color_tree_add(ColorTree* tree, function rgba8ToPixel (line 3141) | static unsigned rgba8ToPixel(unsigned char* out, size_t i, function rgba16ToPixel (line 3215) | static void rgba16ToPixel(unsigned char* out, size_t i, function getPixelColorRGBA8 (line 3256) | static void getPixelColorRGBA8(unsigned char* r, unsigned char* g, function getPixelColorsRGBA8 (line 3366) | static void getPixelColorsRGBA8(unsigned char* buffer, size_t numpixels, function getPixelColorRGBA16 (line 3500) | static void getPixelColorRGBA16(unsigned short* r, unsigned short* g, un... function lodepng_convert (line 3534) | unsigned lodepng_convert(unsigned char* out, const unsigned char* in, function lodepng_convert_rgb (line 3624) | unsigned lodepng_convert_rgb( function lodepng_color_profile_init (line 3692) | void lodepng_color_profile_init(LodePNGColorProfile* profile) function getValueRequiredBits (line 3717) | static unsigned getValueRequiredBits(unsigned char value) function lodepng_get_color_profile (line 3727) | unsigned lodepng_get_color_profile(LodePNGColorProfile* profile, function lodepng_color_profile_add (line 3943) | static unsigned lodepng_color_profile_add(LodePNGColorProfile* profile, function auto_choose_color_from_profile (line 3962) | static unsigned auto_choose_color_from_profile(LodePNGColorMode* mode_out, function lodepng_auto_choose_color (line 4034) | unsigned lodepng_auto_choose_color(LodePNGColorMode* mode_out, function paethPredictor (line 4053) | static unsigned char paethPredictor(short a, short b, short c) function Adam7_getpassvalues (line 4086) | static void Adam7_getpassvalues(unsigned passw[7], unsigned passh[7], si... function lodepng_inspect (line 4121) | unsigned lodepng_inspect(unsigned* w, unsigned* h, LodePNGState* state, function unfilterScanline (line 4187) | static unsigned unfilterScanline(unsigned char* recon, const unsigned ch... function unfilter (line 4261) | static unsigned unfilter(unsigned char* out, const unsigned char* in, un... function Adam7_deinterlace (line 4303) | static void Adam7_deinterlace(unsigned char* out, const unsigned char* i... function removePaddingBits (line 4353) | static void removePaddingBits(unsigned char* out, const unsigned char* in, function postProcessScanlines (line 4383) | static unsigned postProcessScanlines(unsigned char* out, unsigned char* in, function readChunk_PLTE (line 4433) | static unsigned readChunk_PLTE(LodePNGColorMode* color, const unsigned c... function readChunk_tRNS (line 4457) | static unsigned readChunk_tRNS(LodePNGColorMode* color, const unsigned c... function readChunk_bKGD (line 4493) | static unsigned readChunk_bKGD(LodePNGInfo* info, const unsigned char* d... function readChunk_tEXt (line 4531) | static unsigned readChunk_tEXt(LodePNGInfo* info, const unsigned char* d... function readChunk_zTXt (line 4574) | static unsigned readChunk_zTXt(LodePNGInfo* info, const LodePNGDecompres... function readChunk_iTXt (line 4623) | static unsigned readChunk_iTXt(LodePNGInfo* info, const LodePNGDecompres... function readChunk_tIME (line 4716) | static unsigned readChunk_tIME(LodePNGInfo* info, const unsigned char* d... function readChunk_pHYs (line 4731) | static unsigned readChunk_pHYs(LodePNGInfo* info, const unsigned char* d... function readChunk_gAMA (line 4743) | static unsigned readChunk_gAMA(LodePNGInfo* info, const unsigned char* d... function readChunk_cHRM (line 4753) | static unsigned readChunk_cHRM(LodePNGInfo* info, const unsigned char* d... function readChunk_sRGB (line 4770) | static unsigned readChunk_sRGB(LodePNGInfo* info, const unsigned char* d... function readChunk_iCCP (line 4780) | static unsigned readChunk_iCCP(LodePNGInfo* info, const LodePNGDecompres... function decodeGeneric (line 4828) | static void decodeGeneric(unsigned char** out, unsigned* w, unsigned* h, function lodepng_decode (line 5061) | unsigned lodepng_decode(unsigned char** out, unsigned* w, unsigned* h, function lodepng_decode_memory (line 5106) | unsigned lodepng_decode_memory(unsigned char** out, unsigned* w, unsigne... function lodepng_decode32 (line 5119) | unsigned lodepng_decode32(unsigned char** out, unsigned* w, unsigned* h,... function lodepng_decode24 (line 5124) | unsigned lodepng_decode24(unsigned char** out, unsigned* w, unsigned* h,... function lodepng_decode_file (line 5130) | unsigned lodepng_decode_file(unsigned char** out, unsigned* w, unsigned*... function lodepng_decode32_file (line 5142) | unsigned lodepng_decode32_file(unsigned char** out, unsigned* w, unsigne... function lodepng_decode24_file (line 5147) | unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigne... function lodepng_decoder_settings_init (line 5153) | void lodepng_decoder_settings_init(LodePNGDecoderSettings* settings) function lodepng_state_init (line 5170) | void lodepng_state_init(LodePNGState* state) function lodepng_state_cleanup (line 5183) | void lodepng_state_cleanup(LodePNGState* state) function lodepng_state_copy (line 5189) | void lodepng_state_copy(LodePNGState* dest, const LodePNGState* source) function addChunk (line 5208) | static unsigned addChunk(ucvector* out, const char* chunkName, const uns... function writeSignature (line 5215) | static void writeSignature(ucvector* out) function addChunk_IHDR (line 5228) | static unsigned addChunk_IHDR(ucvector* out, unsigned w, unsigned h, function addChunk_PLTE (line 5249) | static unsigned addChunk_PLTE(ucvector* out, const LodePNGColorMode* info) function addChunk_tRNS (line 5266) | static unsigned addChunk_tRNS(ucvector* out, const LodePNGColorMode* info) function addChunk_IDAT (line 5311) | static unsigned addChunk_IDAT(ucvector* out, const unsigned char* data, ... function addChunk_IEND (line 5326) | static unsigned addChunk_IEND(ucvector* out) function addChunk_tEXt (line 5335) | static unsigned addChunk_tEXt(ucvector* out, const char* keyword, const ... function addChunk_zTXt (line 5351) | static unsigned addChunk_zTXt(ucvector* out, const char* keyword, const ... function addChunk_iTXt (line 5378) | static unsigned addChunk_iTXt(ucvector* out, unsigned compressed, const ... function addChunk_bKGD (line 5419) | static unsigned addChunk_bKGD(ucvector* out, const LodePNGInfo* info) function addChunk_tIME (line 5449) | static unsigned addChunk_tIME(ucvector* out, const LodePNGTime* time) function addChunk_pHYs (line 5466) | static unsigned addChunk_pHYs(ucvector* out, const LodePNGInfo* info) function addChunk_gAMA (line 5482) | static unsigned addChunk_gAMA(ucvector* out, const LodePNGInfo* info) function addChunk_cHRM (line 5496) | static unsigned addChunk_cHRM(ucvector* out, const LodePNGInfo* info) function addChunk_sRGB (line 5517) | static unsigned addChunk_sRGB(ucvector* out, const LodePNGInfo* info) function addChunk_iCCP (line 5523) | static unsigned addChunk_iCCP(ucvector* out, const LodePNGInfo* info, Lo... function filterScanline (line 5551) | static void filterScanline(unsigned char* out, const unsigned char* scan... function flog2 (line 5608) | static float flog2(float f) function filter (line 5616) | static unsigned filter(unsigned char* out, const unsigned char* in, unsi... function addPaddingBits (line 5836) | static void addPaddingBits(unsigned char* out, const unsigned char* in, function Adam7_interlace (line 5869) | static void Adam7_interlace(unsigned char* out, const unsigned char* in,... function preProcessScanlines (line 5920) | static unsigned preProcessScanlines(unsigned char** out, size_t* outsize... function getPaletteTranslucency (line 6013) | static unsigned getPaletteTranslucency(const unsigned char* palette, siz... function addUnknownChunks (line 6034) | static unsigned addUnknownChunks(ucvector* out, unsigned char* data, siz... function isGreyICCProfile (line 6046) | static unsigned isGreyICCProfile(const unsigned char* profile, unsigned ... function isRGBICCProfile (line 6061) | static unsigned isRGBICCProfile(const unsigned char* profile, unsigned s... function lodepng_encode (line 6069) | unsigned lodepng_encode(unsigned char** out, size_t* outsize, function lodepng_encode_memory (line 6338) | unsigned lodepng_encode_memory(unsigned char** out, size_t* outsize, con... function lodepng_encode32 (line 6354) | unsigned lodepng_encode32(unsigned char** out, size_t* outsize, const un... function lodepng_encode24 (line 6359) | unsigned lodepng_encode24(unsigned char** out, size_t* outsize, const un... function lodepng_encode_file (line 6365) | unsigned lodepng_encode_file(const char* filename, const unsigned char* ... function lodepng_encode32_file (line 6376) | unsigned lodepng_encode32_file(const char* filename, const unsigned char... function lodepng_encode24_file (line 6381) | unsigned lodepng_encode24_file(const char* filename, const unsigned char... function lodepng_encoder_settings_init (line 6387) | void lodepng_encoder_settings_init(LodePNGEncoderSettings* settings) type lodepng (line 6528) | namespace lodepng function load_file (line 6532) | unsigned load_file(std::vector& buffer, const std::stri... function save_file (line 6541) | unsigned save_file(const std::vector& buffer, const std... function decompress (line 6549) | unsigned decompress(std::vector& out, const unsigned ch... function decompress (line 6563) | unsigned decompress(std::vector& out, const std::vector... function compress (line 6571) | unsigned compress(std::vector& out, const unsigned char... function compress (line 6585) | unsigned compress(std::vector& out, const std::vector& out, unsigned& w, unsigned... function decode (line 6637) | unsigned decode(std::vector& out, unsigned& w, unsigned... function decode (line 6643) | unsigned decode(std::vector& out, unsigned& w, unsigned... function decode (line 6658) | unsigned decode(std::vector& out, unsigned& w, unsigned... function decode (line 6666) | unsigned decode(std::vector& out, unsigned& w, unsigned... function encode (line 6678) | unsigned encode(std::vector& out, const unsigned char* ... function encode (line 6692) | unsigned encode(std::vector& out, function encode (line 6700) | unsigned encode(std::vector& out, function encode (line 6715) | unsigned encode(std::vector& out, function encode (line 6724) | unsigned encode(const std::string& filename, function encode (line 6734) | unsigned encode(const std::string& filename, FILE: PinBox/PinBox/source/main.cpp function initDbgConsole (line 21) | void initDbgConsole() function main (line 32) | int main() FILE: PinBox/PinBox/source/yuv_rgb.c function clamp (line 11) | uint8_t clamp(int16_t value) type RGB2YUVParam (line 78) | typedef struct type YUV2RGBParam (line 89) | typedef struct function rgb24_yuv420_std (line 135) | void rgb24_yuv420_std( function yuv420_rgb24_std (line 194) | void yuv420_rgb24_std( function rgb24_yuv420_sse (line 428) | void rgb24_yuv420_sse(uint32_t width, uint32_t height, function rgb24_yuv420_sseu (line 464) | void rgb24_yuv420_sseu(uint32_t width, uint32_t height, function yuv420_rgb24_sse (line 641) | void yuv420_rgb24_sse( function yuv420_rgb24_sseu (line 678) | void yuv420_rgb24_sseu( FILE: PinBoxServer/PinBoxServer/AudioStreamSession.cpp function createNew (line 11) | void createNew(void* arg) { FILE: PinBoxServer/PinBoxServer/AudioStreamSession.h function class (line 12) | class AudioStreamSession FILE: PinBoxServer/PinBoxServer/HubItem.h type HubItemType (line 5) | enum HubItemType function class (line 12) | class HubItem FILE: PinBoxServer/PinBoxServer/InputStreamSession.h type KeyMappingProfile (line 43) | struct KeyMappingProfile function class (line 53) | class InputStreamSession FILE: PinBoxServer/PinBoxServer/PPClientSession.h type PPSession_Type (line 15) | enum PPSession_Type { PPSESSION_NONE, PPSESSION_MOVIE, PPSESSION_SCREEN_... function class (line 48) | class PPClientSession FILE: PinBoxServer/PinBoxServer/PPMessage.cpp function u8 (line 11) | u8* PPMessage::BuildMessage(u8* contentBuffer, u32 contentSize) function u8 (line 38) | u8* PPMessage::BuildMessageEmpty() FILE: PinBoxServer/PinBoxServer/PPMessage.h type u8 (line 10) | typedef unsigned char u8; type u16 (line 11) | typedef unsigned short u16; type u32 (line 12) | typedef unsigned int u32; function class (line 25) | class PPMessage FILE: PinBoxServer/PinBoxServer/PPServer.cpp type sockaddr_in (line 16) | struct sockaddr_in type hostent (line 17) | struct hostent FILE: PinBoxServer/PinBoxServer/PPServer.h function class (line 22) | class PPServer FILE: PinBoxServer/PinBoxServer/PinBoxServer.cpp function main (line 7) | int main(int argc, char *argv[]) FILE: PinBoxServer/PinBoxServer/ScreenCaptureSession.cpp function printError (line 10) | static void printError(int errorCode) type AVSampleFormat (line 33) | enum AVSampleFormat type SwrContext (line 34) | struct SwrContext FILE: PinBoxServer/PinBoxServer/ScreenCaptureSession.h type FramePiece (line 38) | typedef struct type std (line 46) | typedef std::function OnClientReallyClose; type MemoryBuffer (line 57) | struct MemoryBuffer { type FPSCounter (line 87) | struct FPSCounter { type FrameData (line 94) | typedef struct FrameData { function class (line 103) | class ScreenCaptureSession FILE: PinBoxServer/PinBoxServer/ServerConfig.cpp function genRandom (line 8) | void genRandom(char *s, const int len) { function ServerConfig (line 33) | ServerConfig* ServerConfig::Get() FILE: PinBoxServer/PinBoxServer/ServerConfig.h function class (line 9) | class ServerConfig FILE: PinBoxServer/PinBoxServer/UIMainWindow.h function class (line 4) | class UIMainWindow : public QMainWindow FILE: PinBoxServer/PinBoxServer/winmain-inl.h function OnApp (line 4) | struct OnApp { FILE: PinBoxTestProject/PinBoxTestProject/PPDecoder.cpp function videoDecodeThreadFunc (line 28) | static void videoDecodeThreadFunc(void* arg) FILE: PinBoxTestProject/PinBoxTestProject/PPDecoder.h type MemoryBuffer (line 24) | struct MemoryBuffer { function class (line 57) | class ITimer { function virtual (line 71) | virtual ~Timer() {} function virtual (line 72) | virtual void start() { StartTime = std::chrono::high_resolution_clock::n... function virtual (line 73) | virtual void wait() function class (line 83) | class PPDecoder FILE: PinBoxTestProject/PinBoxTestProject/PPMessage.cpp function u8 (line 10) | u8* PPMessage::BuildMessage(u8* contentBuffer, u32 contentSize) function u8 (line 36) | u8* PPMessage::BuildMessageEmpty() FILE: PinBoxTestProject/PinBoxTestProject/PPMessage.h type u8 (line 10) | typedef unsigned char u8; type u16 (line 11) | typedef unsigned short u16; type u32 (line 12) | typedef unsigned int u32; function class (line 23) | class PPMessage FILE: PinBoxTestProject/PinBoxTestProject/PPNetwork.cpp type addrinfo (line 101) | struct addrinfo FILE: PinBoxTestProject/PinBoxTestProject/PPNetwork.h type ppConectState (line 20) | enum ppConectState { IDLE, CONNECTING, CONNECTED, FAIL } type std (line 21) | typedef std::function PPNetworkRece... type std (line 22) | typedef std::function PPNetworkCallback; type QueueMessage (line 24) | typedef struct function class (line 32) | class PPNetwork FILE: PinBoxTestProject/PinBoxTestProject/PPSession.cpp function FramePiece (line 323) | FramePiece* PPSession::SafeGetFramePiece(u32 index) FILE: PinBoxTestProject/PinBoxTestProject/PPSession.h type PPSession_Type (line 24) | enum PPSession_Type { PPSESSION_NONE, PPSESSION_MOVIE, PPSESSION_SCREEN_... type FramePiece (line 50) | typedef struct function class (line 62) | class PPSession FILE: PinBoxTestProject/PinBoxTestProject/PPSessionManager.h function class (line 21) | class PPSessionManager FILE: PinBoxTestProject/PinBoxTestProject/main.cpp function updateSessionManager (line 6) | void updateSessionManager(void* arg) function main (line 19) | int main() FILE: PinBoxTestProject/PinBoxTestProject/yuv_rgb.c function clamp (line 11) | uint8_t clamp(int16_t value) type RGB2YUVParam (line 78) | typedef struct type YUV2RGBParam (line 89) | typedef struct function rgb24_yuv420_std (line 135) | void rgb24_yuv420_std( function yuv420_rgb24_std (line 194) | void yuv420_rgb24_std( function rgb24_yuv420_sse (line 428) | void rgb24_yuv420_sse(uint32_t width, uint32_t height, function rgb24_yuv420_sseu (line 464) | void rgb24_yuv420_sseu(uint32_t width, uint32_t height, function yuv420_rgb24_sse (line 641) | void yuv420_rgb24_sse( function yuv420_rgb24_sseu (line 678) | void yuv420_rgb24_sseu( FILE: PinBoxTestProject/PinBoxTestProject/yuv_rgb.h type YCbCrType (line 21) | typedef enum FILE: ThirdParty/FakeInput/src/actions/action.hpp type FakeInput (line 28) | namespace FakeInput class Action (line 31) | class Action FILE: ThirdParty/FakeInput/src/actions/actionsequence.cpp type FakeInput (line 29) | namespace FakeInput function Action (line 53) | Action* ActionSequence::clone() const function ActionSequence (line 58) | ActionSequence& ActionSequence::join(ActionSequence& anotherSequence) function ActionSequence (line 64) | ActionSequence& ActionSequence::press(Key key) function ActionSequence (line 70) | ActionSequence& ActionSequence::press(KeyType type) function ActionSequence (line 76) | ActionSequence& ActionSequence::press(MouseButton button) function ActionSequence (line 82) | ActionSequence& ActionSequence::release(Key key) function ActionSequence (line 88) | ActionSequence& ActionSequence::release(KeyType type) function ActionSequence (line 94) | ActionSequence& ActionSequence::release(MouseButton button) function ActionSequence (line 100) | ActionSequence& ActionSequence::moveMouse(int dx, int dy) function ActionSequence (line 106) | ActionSequence& ActionSequence::moveMouseTo(int x, int y) function ActionSequence (line 112) | ActionSequence& ActionSequence::wheelUp() function ActionSequence (line 118) | ActionSequence& ActionSequence::wheelDown() function ActionSequence (line 124) | ActionSequence& ActionSequence::runCommand(const std::string& cmd) function ActionSequence (line 130) | ActionSequence& ActionSequence::wait(unsigned int milisec) FILE: ThirdParty/FakeInput/src/actions/actionsequence.hpp type FakeInput (line 37) | namespace FakeInput class ActionSequence (line 40) | class ActionSequence : public Action FILE: ThirdParty/FakeInput/src/actions/commandaction.cpp type FakeInput (line 29) | namespace FakeInput function Action (line 36) | Action* CommandRun::clone() const FILE: ThirdParty/FakeInput/src/actions/commandaction.hpp type FakeInput (line 32) | namespace FakeInput class CommandRun (line 38) | class CommandRun : public Action FILE: ThirdParty/FakeInput/src/actions/keyaction.cpp type FakeInput (line 29) | namespace FakeInput function Action (line 37) | Action* KeyAction::clone() const FILE: ThirdParty/FakeInput/src/actions/keyaction.hpp type FakeInput (line 31) | namespace FakeInput class KeyAction (line 36) | class KeyAction : public Action class KeyboardPress (line 64) | class KeyboardPress : public KeyAction class KeyboardRelease (line 83) | class KeyboardRelease : public KeyAction FILE: ThirdParty/FakeInput/src/actions/mouseaction.cpp type FakeInput (line 27) | namespace FakeInput function Action (line 36) | Action* MouseButtonAction::clone() const function Action (line 64) | Action* MouseMotionAction::clone() const function Action (line 90) | Action* MouseWheelAction::clone() const FILE: ThirdParty/FakeInput/src/actions/mouseaction.hpp type FakeInput (line 31) | namespace FakeInput class MouseButtonAction (line 37) | class MouseButtonAction : public Action class MousePress (line 65) | class MousePress : public MouseButtonAction class MouseRelease (line 77) | class MouseRelease : public MouseButtonAction class MouseMotionAction (line 92) | class MouseMotionAction : public Action class MouseRelativeMotion (line 126) | class MouseRelativeMotion : public MouseMotionAction class MouseAbsoluteMotion (line 143) | class MouseAbsoluteMotion : public MouseMotionAction class MouseWheelAction (line 159) | class MouseWheelAction : public Action class MouseWheelUp (line 184) | class MouseWheelUp : public MouseWheelAction class MouseWheelDown (line 192) | class MouseWheelDown : public MouseWheelAction FILE: ThirdParty/FakeInput/src/actions/waitaction.cpp type FakeInput (line 29) | namespace FakeInput function Action (line 36) | Action* Wait::clone() const FILE: ThirdParty/FakeInput/src/actions/waitaction.hpp type FakeInput (line 30) | namespace FakeInput class Wait (line 36) | class Wait : public Action FILE: ThirdParty/FakeInput/src/display_unix.cpp type FakeInput (line 27) | namespace FakeInput function Display (line 29) | Display* display() FILE: ThirdParty/FakeInput/src/display_unix.hpp type FakeInput (line 32) | namespace FakeInput FILE: ThirdParty/FakeInput/src/key.hpp type FakeInput (line 36) | namespace FakeInput FILE: ThirdParty/FakeInput/src/key_base.cpp type FakeInput (line 30) | namespace FakeInput FILE: ThirdParty/FakeInput/src/key_base.hpp type FakeInput (line 32) | namespace FakeInput class Key_base (line 36) | class Key_base FILE: ThirdParty/FakeInput/src/key_unix.cpp type FakeInput (line 33) | namespace FakeInput function KeySym (line 75) | KeySym Key_unix::keysym() const FILE: ThirdParty/FakeInput/src/key_unix.hpp type FakeInput (line 37) | namespace FakeInput class Key_unix (line 44) | class Key_unix : public Key_base FILE: ThirdParty/FakeInput/src/key_win.cpp type FakeInput (line 32) | namespace FakeInput function WORD (line 108) | WORD Key_win::virtualKey() const FILE: ThirdParty/FakeInput/src/key_win.hpp type FakeInput (line 37) | namespace FakeInput class Key_win (line 44) | class Key_win : public Key_base FILE: ThirdParty/FakeInput/src/keyboard.cpp type FakeInput (line 27) | namespace FakeInput FILE: ThirdParty/FakeInput/src/keyboard.hpp type FakeInput (line 32) | namespace FakeInput class Keyboard (line 38) | class Keyboard FILE: ThirdParty/FakeInput/src/keyboard_unix.cpp type FakeInput (line 34) | namespace FakeInput FILE: ThirdParty/FakeInput/src/keyboard_win.cpp type FakeInput (line 31) | namespace FakeInput FILE: ThirdParty/FakeInput/src/mapper.hpp type FakeInput (line 31) | namespace FakeInput FILE: ThirdParty/FakeInput/src/mapper_unix.cpp type FakeInput (line 30) | namespace FakeInput function translateMouseButton (line 102) | long translateMouseButton(MouseButton button) function translateKey (line 107) | unsigned long translateKey(KeyType key) FILE: ThirdParty/FakeInput/src/mapper_win.cpp type FakeInput (line 29) | namespace FakeInput function translateMouseButton (line 101) | long translateMouseButton(MouseButton button) function translateKey (line 106) | unsigned long translateKey(KeyType key) FILE: ThirdParty/FakeInput/src/mouse.hpp type FakeInput (line 31) | namespace FakeInput class Mouse (line 38) | class Mouse FILE: ThirdParty/FakeInput/src/mouse_unix.cpp type FakeInput (line 34) | namespace FakeInput FILE: ThirdParty/FakeInput/src/mouse_win.cpp type FakeInput (line 37) | namespace FakeInput FILE: ThirdParty/FakeInput/src/system.hpp type FakeInput (line 32) | namespace FakeInput class System (line 39) | class System FILE: ThirdParty/FakeInput/src/system_unix.cpp type FakeInput (line 30) | namespace FakeInput FILE: ThirdParty/FakeInput/src/system_win.cpp type FakeInput (line 30) | namespace FakeInput FILE: ThirdParty/FakeInput/src/types.hpp type FakeInput (line 28) | namespace FakeInput type MouseButton (line 31) | enum MouseButton { type KeyType (line 38) | enum KeyType { FILE: ThirdParty/ViGEm/Include/ViGEmBusDriver.h type VIGEM_PDO_STAGE (line 41) | typedef enum _VIGEM_PDO_STAGE type VOID (line 52) | typedef type VIGEM_BUS_INTERFACE (line 61) | typedef struct _VIGEM_BUS_INTERFACE { function VOID (line 76) | VOID FORCEINLINE BUS_PDO_REPORT_STAGE_RESULT( FILE: ThirdParty/ViGEm/Include/ViGEmBusShared.h type VIGEM_PLUGIN_TARGET (line 78) | typedef struct _VIGEM_PLUGIN_TARGET function VOID (line 110) | VOID FORCEINLINE VIGEM_PLUGIN_TARGET_INIT( type VIGEM_UNPLUG_TARGET (line 130) | typedef struct _VIGEM_UNPLUG_TARGET function VOID (line 147) | VOID FORCEINLINE VIGEM_UNPLUG_TARGET_INIT( type VIGEM_CHECK_VERSION (line 162) | typedef struct _VIGEM_CHECK_VERSION function VOID (line 170) | VOID FORCEINLINE VIGEM_CHECK_VERSION_INIT( type XUSB_REQUEST_NOTIFICATION (line 188) | typedef struct _XUSB_REQUEST_NOTIFICATION function VOID (line 220) | VOID FORCEINLINE XUSB_REQUEST_NOTIFICATION_INIT( type XUSB_SUBMIT_REPORT (line 234) | typedef struct _XUSB_SUBMIT_REPORT function VOID (line 256) | VOID FORCEINLINE XUSB_SUBMIT_REPORT_INIT( type DS4_OUTPUT_REPORT (line 271) | typedef struct _DS4_OUTPUT_REPORT type DS4_REQUEST_NOTIFICATION (line 293) | typedef struct _DS4_REQUEST_NOTIFICATION function VOID (line 315) | VOID FORCEINLINE DS4_REQUEST_NOTIFICATION_INIT( type DS4_SUBMIT_REPORT (line 329) | typedef struct _DS4_SUBMIT_REPORT function VOID (line 351) | VOID FORCEINLINE DS4_SUBMIT_REPORT_INIT( type XGIP_REPORT (line 368) | typedef struct _XGIP_REPORT type XGIP_SUBMIT_REPORT (line 384) | typedef struct _XGIP_SUBMIT_REPORT function VOID (line 406) | VOID FORCEINLINE XGIP_SUBMIT_REPORT_INIT( type XGIP_SUBMIT_INTERRUPT (line 420) | typedef struct _XGIP_SUBMIT_INTERRUPT function VOID (line 447) | VOID FORCEINLINE XGIP_SUBMIT_INTERRUPT_INIT( FILE: ThirdParty/ViGEm/Include/ViGEmClient.h type VIGEM_ERROR (line 50) | typedef enum _VIGEM_ERRORS type _VIGEM_CLIENT_T (line 84) | struct _VIGEM_CLIENT_T type _VIGEM_TARGET_T (line 91) | struct _VIGEM_TARGET_T FILE: ThirdParty/ViGEm/Include/ViGEmCommon.h type VIGEM_TARGET_TYPE (line 31) | typedef enum _VIGEM_TARGET_TYPE type XUSB_BUTTON (line 51) | typedef enum _XUSB_BUTTON type XUSB_REPORT (line 74) | typedef struct _XUSB_REPORT function VOID (line 89) | VOID FORCEINLINE XUSB_REPORT_INIT( type DS4_LIGHTBAR_COLOR (line 99) | typedef struct _DS4_LIGHTBAR_COLOR type DS4_BUTTONS (line 121) | typedef enum _DS4_BUTTONS type DS4_SPECIAL_BUTTONS (line 141) | typedef enum _DS4_SPECIAL_BUTTONS type DS4_DPAD_DIRECTIONS (line 151) | typedef enum _DS4_DPAD_DIRECTIONS type DS4_REPORT (line 168) | typedef struct _DS4_REPORT function VOID (line 184) | VOID FORCEINLINE DS4_SET_DPAD( function VOID (line 193) | VOID FORCEINLINE DS4_REPORT_INIT( FILE: ThirdParty/ViGEm/Include/ViGEmUtil.h function VOID (line 6) | VOID FORCEINLINE XUSB_TO_DS4_REPORT( FILE: ThirdParty/ViGEm/Include/XInputOverrides.h type XINPUT_GAMEPAD_OVERRIDES (line 28) | typedef enum _XINPUT_GAMEPAD_OVERRIDES FILE: ThirdParty/ViGEm/Include/XnaGuardianShared.h type XINPUT_GAMEPAD_STATE (line 47) | typedef struct _XINPUT_GAMEPAD_STATE { type XINPUT_EXT_OVERRIDE_GAMEPAD (line 60) | typedef struct _XINPUT_EXT_OVERRIDE_GAMEPAD function VOID (line 72) | VOID FORCEINLINE XINPUT_EXT_OVERRIDE_GAMEPAD_INIT( type XINPUT_EXT_PEEK_GAMEPAD (line 86) | typedef struct _XINPUT_EXT_PEEK_GAMEPAD function VOID (line 94) | VOID FORCEINLINE XINPUT_EXT_PEEK_GAMEPAD_INIT( FILE: ThirdParty/ffmpeg/examples/avio_dir_cmd.c function list_op (line 57) | static int list_op(const char *input_dir) function del_op (line 105) | static int del_op(const char *url) function move_op (line 113) | static int move_op(const char *src, const char *dst) function usage (line 122) | static void usage(const char *program_name) function main (line 134) | int main(int argc, char *argv[]) FILE: ThirdParty/ffmpeg/examples/avio_reading.c type buffer_data (line 37) | struct buffer_data { function read_packet (line 42) | static int read_packet(void *opaque, uint8_t *buf, int buf_size) function main (line 59) | int main(int argc, char *argv[]) FILE: ThirdParty/ffmpeg/examples/decode_audio.c function decode (line 42) | static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, function main (line 76) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/decode_video.c function pgm_save (line 38) | static void pgm_save(unsigned char *buf, int wrap, int xsize, int ysize, function decode (line 51) | static void decode(AVCodecContext *dec_ctx, AVFrame *frame, AVPacket *pkt, function main (line 83) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/demuxing_decoding.c type AVPixelFormat (line 40) | enum AVPixelFormat function decode_packet (line 64) | static int decode_packet(int *got_frame, int cached) function open_codec_context (line 149) | static int open_codec_context(int *stream_idx, function get_format_from_sample_fmt (line 202) | static int get_format_from_sample_fmt(const char **fmt, function main (line 231) | int main (int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/encode_audio.c function check_sample_fmt (line 42) | static int check_sample_fmt(const AVCodec *codec, enum AVSampleFormat sa... function select_sample_rate (line 55) | static int select_sample_rate(const AVCodec *codec) function select_channel_layout (line 73) | static int select_channel_layout(const AVCodec *codec) function encode (line 95) | static void encode(AVCodecContext *ctx, AVFrame *frame, AVPacket *pkt, function main (line 123) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/encode_video.c function encode (line 39) | static void encode(AVCodecContext *enc_ctx, AVFrame *frame, AVPacket *pkt, function main (line 69) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/extract_mvs.c function decode_packet (line 36) | static int decode_packet(const AVPacket *pkt) function open_codec_context (line 76) | static int open_codec_context(AVFormatContext *fmt_ctx, enum AVMediaType... function main (line 121) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/filter_audio.c function init_filter_graph (line 62) | static int init_filter_graph(AVFilterGraph **graph, AVFilterContext **src, function process_output (line 215) | static int process_output(struct AVMD5 *md5, AVFrame *frame) function get_input (line 242) | static int get_input(AVFrame *frame, int frame_num) function main (line 270) | int main(int argc, char *argv[]) FILE: ThirdParty/ffmpeg/examples/filtering_audio.c function open_input_file (line 49) | static int open_input_file(const char *filename) function init_filters (line 88) | static int init_filters(const char *filters_descr) function print_frame (line 201) | static void print_frame(const AVFrame *frame) function main (line 215) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/filtering_video.c function open_input_file (line 52) | static int open_input_file(const char *filename) function init_filters (line 91) | static int init_filters(const char *filters_descr) function display_frame (line 178) | static void display_frame(const AVFrame *frame, AVRational time_base) function main (line 209) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/http_multiclient.c function process_client (line 36) | static void process_client(AVIOContext *client, const char *in_uri) function main (line 100) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/hw_decode.c type AVPixelFormat (line 44) | enum AVPixelFormat function hw_decoder_init (line 47) | static int hw_decoder_init(AVCodecContext *ctx, const enum AVHWDeviceTyp... function get_hw_format (line 61) | static enum AVPixelFormat get_hw_format(AVCodecContext *ctx, function decode_write (line 75) | static int decode_write(AVCodecContext *avctx, AVPacket *packet) function main (line 147) | int main(int argc, char *argv[]) FILE: ThirdParty/ffmpeg/examples/metadata.c function main (line 34) | int main (int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/muxing.c type OutputStream (line 53) | typedef struct OutputStream { function log_packet (line 70) | static void log_packet(const AVFormatContext *fmt_ctx, const AVPacket *pkt) function write_frame (line 81) | static int write_frame(AVFormatContext *fmt_ctx, const AVRational *time_... function add_stream (line 93) | static void add_stream(OutputStream *ost, AVFormatContext *oc, function AVFrame (line 187) | static AVFrame *alloc_audio_frame(enum AVSampleFormat sample_fmt, function open_audio (line 215) | static void open_audio(AVFormatContext *oc, AVCodec *codec, OutputStream... function AVFrame (line 280) | static AVFrame *get_audio_frame(OutputStream *ost) function write_audio_frame (line 309) | static int write_audio_frame(AVFormatContext *oc, OutputStream *ost) function AVFrame (line 373) | static AVFrame *alloc_picture(enum AVPixelFormat pix_fmt, int width, int... function open_video (line 396) | static void open_video(AVFormatContext *oc, AVCodec *codec, OutputStream... function fill_yuv_image (line 440) | static void fill_yuv_image(AVFrame *pict, int frame_index, function AVFrame (line 461) | static AVFrame *get_video_frame(OutputStream *ost) function write_video_frame (line 507) | static int write_video_frame(AVFormatContext *oc, OutputStream *ost) function close_stream (line 542) | static void close_stream(AVFormatContext *oc, OutputStream *ost) function main (line 554) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/qsvdec.c type DecodeContext (line 47) | typedef struct DecodeContext { function get_format (line 51) | static int get_format(AVCodecContext *avctx, const enum AVPixelFormat *p... function decode_packet (line 90) | static int decode_packet(DecodeContext *decode, AVCodecContext *decoder_... function main (line 137) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/remuxing.c function log_packet (line 34) | static void log_packet(const AVFormatContext *fmt_ctx, const AVPacket *p... function main (line 46) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/resampling_audio.c function get_format_from_sample_fmt (line 33) | static int get_format_from_sample_fmt(const char **fmt, function fill_samples (line 65) | static void fill_samples(double *dst, int nb_samples, int nb_channels, i... function main (line 81) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/scaling_video.c function fill_yuv_image (line 33) | static void fill_yuv_image(uint8_t *data[4], int linesize[4], function main (line 52) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/transcode_aac.c function open_input_file (line 58) | static int open_input_file(const char *filename, function open_output_file (line 139) | static int open_output_file(const char *filename, function init_packet (line 250) | static void init_packet(AVPacket *packet) function init_input_frame (line 263) | static int init_input_frame(AVFrame **frame) function init_resampler (line 281) | static int init_resampler(AVCodecContext *input_codec_context, function init_fifo (line 328) | static int init_fifo(AVAudioFifo **fifo, AVCodecContext *output_codec_co... function write_output_file_header (line 344) | static int write_output_file_header(AVFormatContext *output_format_context) function decode_audio_frame (line 368) | static int decode_audio_frame(AVFrame *frame, function init_converted_samples (line 437) | static int init_converted_samples(uint8_t ***converted_input_samples, function convert_samples (line 481) | static int convert_samples(const uint8_t **input_data, function add_samples_to_fifo (line 507) | static int add_samples_to_fifo(AVAudioFifo *fifo, function read_decode_convert_and_store (line 545) | static int read_decode_convert_and_store(AVAudioFifo *fifo, function init_output_frame (line 612) | static int init_output_frame(AVFrame **frame, function encode_audio_frame (line 658) | static int encode_audio_frame(AVFrame *frame, function load_encode_and_write (line 728) | static int load_encode_and_write(AVAudioFifo *fifo, function write_output_file_trailer (line 768) | static int write_output_file_trailer(AVFormatContext *output_format_cont... function main (line 779) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/transcoding.c type FilteringContext (line 40) | typedef struct FilteringContext { type StreamContext (line 47) | typedef struct StreamContext { function open_input_file (line 53) | static int open_input_file(const char *filename) function open_output_file (line 111) | static int open_output_file(const char *filename) function init_filter (line 225) | static int init_filter(FilteringContext* fctx, AVCodecContext *dec_ctx, function init_filters (line 374) | static int init_filters(void) function encode_write_frame (line 404) | static int encode_write_frame(AVFrame *filt_frame, unsigned int stream_i... function filter_encode_write_frame (line 440) | static int filter_encode_write_frame(AVFrame *frame, unsigned int stream... function flush_encoder (line 484) | static int flush_encoder(unsigned int stream_index) function main (line 504) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/examples/vaapi_encode.c function set_hwframe_ctx (line 42) | static int set_hwframe_ctx(AVCodecContext *ctx, AVBufferRef *hw_device_ctx) function encode_write (line 72) | static int encode_write(AVCodecContext *avctx, AVFrame *frame, FILE *fout) function main (line 100) | int main(int argc, char *argv[]) FILE: ThirdParty/ffmpeg/examples/vaapi_transcode.c function get_vaapi_format (line 46) | static enum AVPixelFormat get_vaapi_format(AVCodecContext *ctx, function open_input_file (line 60) | static int open_input_file(const char *filename) function encode_write (line 110) | static int encode_write(AVFrame *frame) function dec_enc (line 146) | static int dec_enc(AVPacket *pkt, AVCodec *enc_codec) function main (line 228) | int main(int argc, char **argv) FILE: ThirdParty/ffmpeg/include/libavcodec/avcodec.h type AVCodecID (line 215) | enum AVCodecID { type AVCodecDescriptor (line 699) | typedef struct AVCodecDescriptor { type AVDiscard (line 785) | enum AVDiscard{ type AVAudioServiceType (line 797) | enum AVAudioServiceType { type RcOverride (line 813) | typedef struct RcOverride{ type AVPanScan (line 1070) | typedef struct AVPanScan { type AVCPBProperties (line 1099) | typedef struct AVCPBProperties { type AVPacketSideDataType (line 1143) | enum AVPacketSideDataType { type AVPacketSideData (line 1373) | typedef struct AVPacketSideData { type AVPacket (line 1407) | typedef struct AVPacket { type AVSideDataParamChangeFlags (line 1484) | enum AVSideDataParamChangeFlags { type AVCodecInternal (line 1494) | struct AVCodecInternal type AVFieldOrder (line 1496) | enum AVFieldOrder { type AVCodecContext (line 1518) | typedef struct AVCodecContext { type AVProfile (line 3341) | typedef struct AVProfile { type AVCodecHWConfig (line 3382) | typedef struct AVCodecHWConfig { type AVCodecDefault (line 3401) | typedef struct AVCodecDefault AVCodecDefault; type AVSubtitle (line 3403) | struct AVSubtitle type AVCodec (line 3408) | typedef struct AVCodec { type MpegEncContext (line 3557) | struct MpegEncContext type AVHWAccel (line 3576) | typedef struct AVHWAccel { type AVPicture (line 3793) | typedef struct AVPicture { type AVSubtitleType (line 3805) | enum AVSubtitleType { type AVSubtitleRect (line 3825) | typedef struct AVSubtitleRect { type AVSubtitle (line 3860) | typedef struct AVSubtitle { type AVCodecParameters (line 3876) | typedef struct AVCodecParameters { type AVPacketSideDataType (line 4410) | enum AVPacketSideDataType type AVPacketSideDataType (line 4426) | enum AVPacketSideDataType type AVPacketSideDataType (line 4437) | enum AVPacketSideDataType type AVPacketSideDataType (line 4448) | enum AVPacketSideDataType type AVPacketSideDataType (line 4459) | enum AVPacketSideDataType type AVCodecID (line 4594) | enum AVCodecID type AVChromaLocation (line 4639) | enum AVChromaLocation type AVChromaLocation (line 4650) | enum AVChromaLocation type AVPixelFormat (line 5015) | enum AVPixelFormat type AVPictureStructure (line 5025) | enum AVPictureStructure { type AVCodecParserContext (line 5032) | typedef struct AVCodecParserContext { type AVCodecParser (line 5199) | typedef struct AVCodecParser { type AVCodecID (line 5296) | enum AVCodecID type AVPixelFormat (line 5407) | enum AVPixelFormat type AVPixelFormat (line 5420) | enum AVPixelFormat type AVPixelFormat (line 5426) | enum AVPixelFormat type AVPixelFormat (line 5434) | enum AVPixelFormat type AVPixelFormat (line 5441) | enum AVPixelFormat type AVPixelFormat (line 5448) | enum AVPixelFormat type AVPixelFormat (line 5454) | enum AVPixelFormat type AVPixelFormat (line 5484) | enum AVPixelFormat type AVPixelFormat (line 5492) | enum AVPixelFormat type AVPixelFormat (line 5497) | enum AVPixelFormat type AVPixelFormat (line 5497) | enum AVPixelFormat type AVPixelFormat (line 5517) | enum AVPixelFormat type AVPixelFormat (line 5517) | enum AVPixelFormat type AVPixelFormat (line 5518) | enum AVPixelFormat type AVPixelFormat (line 5524) | enum AVPixelFormat type AVPixelFormat (line 5524) | enum AVPixelFormat type AVPixelFormat (line 5524) | enum AVPixelFormat type AVPixelFormat (line 5525) | enum AVPixelFormat type AVPixelFormat (line 5528) | enum AVPixelFormat type AVPixelFormat (line 5528) | enum AVPixelFormat type AVPixelFormat (line 5529) | enum AVPixelFormat type AVPixelFormat (line 5531) | enum AVPixelFormat type AVCodecContext (line 5531) | struct AVCodecContext type AVPixelFormat (line 5531) | enum AVPixelFormat type AVCodecID (line 5575) | enum AVCodecID type AVSampleFormat (line 5605) | enum AVSampleFormat type AVCodecID (line 5625) | enum AVCodecID type AVCodecID (line 5633) | enum AVCodecID type AVSampleFormat (line 5633) | enum AVSampleFormat type AVCodecID (line 5643) | enum AVCodecID type AVBitStreamFilterContext (line 5662) | typedef struct AVBitStreamFilterContext { type AVBSFInternal (line 5675) | typedef struct AVBSFInternal AVBSFInternal; type AVBSFContext (line 5687) | typedef struct AVBSFContext { type AVBitStreamFilter (line 5736) | typedef struct AVBitStreamFilter { type AVBSFList (line 5913) | typedef struct AVBSFList AVBSFList; type AVLockOp (line 6047) | enum AVLockOp { type AVLockOp (line 6081) | enum AVLockOp type AVMediaType (line 6087) | enum AVMediaType type AVCodecID (line 6087) | enum AVCodecID type AVCodecID (line 6093) | enum AVCodecID type AVCodecID (line 6114) | enum AVCodecID FILE: ThirdParty/ffmpeg/include/libavcodec/avdct.h type AVDCT (line 29) | typedef struct AVDCT { FILE: ThirdParty/ffmpeg/include/libavcodec/avfft.h type FFTSample (line 35) | typedef float FFTSample; type FFTComplex (line 37) | typedef struct FFTComplex { type FFTContext (line 41) | typedef struct FFTContext FFTContext; type RDFTransformType (line 71) | enum RDFTransformType { type RDFTContext (line 78) | typedef struct RDFTContext RDFTContext; type RDFTransformType (line 85) | enum RDFTransformType type DCTContext (line 91) | typedef struct DCTContext DCTContext; type DCTTransformType (line 93) | enum DCTTransformType { type DCTTransformType (line 110) | enum DCTTransformType FILE: ThirdParty/ffmpeg/include/libavcodec/d3d11va.h type AVD3D11VAContext (line 59) | typedef struct AVD3D11VAContext { FILE: ThirdParty/ffmpeg/include/libavcodec/dirac.h type DiracParseCodes (line 57) | enum DiracParseCodes { type DiracVersionInfo (line 76) | typedef struct DiracVersionInfo { type AVDiracSeqHeader (line 81) | typedef struct AVDiracSeqHeader { FILE: ThirdParty/ffmpeg/include/libavcodec/dv_profile.h type AVDVProfile (line 39) | typedef struct AVDVProfile { type AVPixelFormat (line 75) | enum AVPixelFormat type AVPixelFormat (line 81) | enum AVPixelFormat FILE: ThirdParty/ffmpeg/include/libavcodec/dxva2.h type dxva_context (line 57) | struct dxva_context { FILE: ThirdParty/ffmpeg/include/libavcodec/mediacodec.h type AVMediaCodecContext (line 33) | typedef struct AVMediaCodecContext { type AVMediaCodecBuffer (line 73) | typedef struct MediaCodecBuffer AVMediaCodecBuffer; FILE: ThirdParty/ffmpeg/include/libavcodec/qsv.h type AVQSVContext (line 36) | typedef struct AVQSVContext { FILE: ThirdParty/ffmpeg/include/libavcodec/vaapi.h function vaapi_context (line 56) | struct attribute_deprecated vaapi_context { FILE: ThirdParty/ffmpeg/include/libavcodec/vdpau.h type AVCodecContext (line 60) | struct AVCodecContext type AVFrame (line 61) | struct AVFrame type AVCodecContext (line 63) | struct AVCodecContext type AVFrame (line 63) | struct AVFrame type AVVDPAUContext (line 81) | typedef struct AVVDPAUContext { FILE: ThirdParty/ffmpeg/include/libavcodec/videotoolbox.h type AVVideotoolboxContext (line 46) | typedef struct AVVideotoolboxContext { FILE: ThirdParty/ffmpeg/include/libavcodec/vorbis_parser.h type AVVorbisParseContext (line 31) | typedef struct AVVorbisParseContext AVVorbisParseContext; FILE: ThirdParty/ffmpeg/include/libavcodec/xvmc.h function xvmc_pix_fmt (line 46) | struct attribute_deprecated xvmc_pix_fmt { FILE: ThirdParty/ffmpeg/include/libavdevice/avdevice.h type AVDeviceRect (line 109) | typedef struct AVDeviceRect { type AVAppToDevMessageType (line 119) | enum AVAppToDevMessageType { type AVDevToAppMessageType (line 198) | enum AVDevToAppMessageType { type AVFormatContext (line 306) | struct AVFormatContext type AVAppToDevMessageType (line 307) | enum AVAppToDevMessageType type AVFormatContext (line 320) | struct AVFormatContext type AVDevToAppMessageType (line 321) | enum AVDevToAppMessageType type AVDeviceCapabilitiesQuery (line 400) | typedef struct AVDeviceCapabilitiesQuery { type AVDeviceInfo (line 452) | typedef struct AVDeviceInfo { type AVDeviceInfoList (line 460) | typedef struct AVDeviceInfoList { type AVFormatContext (line 479) | struct AVFormatContext type AVInputFormat (line 505) | struct AVInputFormat type AVOutputFormat (line 507) | struct AVOutputFormat FILE: ThirdParty/ffmpeg/include/libavfilter/avfilter.h type AVFilterContext (line 67) | typedef struct AVFilterContext AVFilterContext; type AVFilterLink (line 68) | typedef struct AVFilterLink AVFilterLink; type AVFilterPad (line 69) | typedef struct AVFilterPad AVFilterPad; type AVFilterFormats (line 70) | typedef struct AVFilterFormats AVFilterFormats; type AVMediaType (line 98) | enum AVMediaType type AVFilter (line 144) | typedef struct AVFilter { type AVFilterInternal (line 335) | typedef struct AVFilterInternal AVFilterInternal; type AVFilterContext (line 338) | struct AVFilterContext { type AVFilterLink (line 439) | struct AVFilterLink { type AVFilterGraphInternal (line 809) | typedef struct AVFilterGraphInternal AVFilterGraphInternal; type AVFilterGraph (line 840) | typedef struct AVFilterGraph { type AVFilterInOut (line 1003) | typedef struct AVFilterInOut { FILE: ThirdParty/ffmpeg/include/libavfilter/buffersink.h type AVBufferSinkParams (line 65) | typedef struct AVBufferSinkParams { type AVABufferSinkParams (line 79) | typedef struct AVABufferSinkParams { type AVMediaType (line 109) | enum AVMediaType FILE: ThirdParty/ffmpeg/include/libavfilter/buffersrc.h type AVBufferSrcParameters (line 73) | typedef struct AVBufferSrcParameters { FILE: ThirdParty/ffmpeg/include/libavformat/avformat.h type AVFormatContext (line 326) | struct AVFormatContext type AVDeviceInfoList (line 328) | struct AVDeviceInfoList type AVDeviceCapabilitiesQuery (line 329) | struct AVDeviceCapabilitiesQuery type AVCodecTag (line 443) | struct AVCodecTag type AVProbeData (line 448) | typedef struct AVProbeData { type AVOutputFormat (line 497) | typedef struct AVOutputFormat { type AVInputFormat (line 633) | typedef struct AVInputFormat { type AVStreamParseType (line 782) | enum AVStreamParseType { type AVIndexEntry (line 793) | typedef struct AVIndexEntry { type AVStreamInternal (line 840) | typedef struct AVStreamInternal AVStreamInternal; type AVStream (line 864) | typedef struct AVStream { type AVCodecParserContext (line 1234) | struct AVCodecParserContext type AVProgram (line 1251) | typedef struct AVProgram { type AVChapter (line 1285) | typedef struct AVChapter { type AVFormatContext (line 1296) | struct AVFormatContext type AVFormatContext (line 1299) | struct AVFormatContext type AVDurationEstimationMethod (line 1306) | enum AVDurationEstimationMethod { type AVFormatInternal (line 1312) | typedef struct AVFormatInternal AVFormatInternal; type AVFormatContext (line 1328) | typedef struct AVFormatContext { type AVDurationEstimationMethod (line 1983) | enum AVDurationEstimationMethod type AVPacketList (line 1985) | typedef struct AVPacketList { type AVPacketSideDataType (line 2149) | enum AVPacketSideDataType type AVPacketSideDataType (line 2161) | enum AVPacketSideDataType type AVPacketSideDataType (line 2171) | enum AVPacketSideDataType type AVMediaType (line 2354) | enum AVMediaType type AVCodecID (line 2679) | enum AVCodecID type AVMediaType (line 2681) | enum AVMediaType type AVFormatContext (line 2698) | struct AVFormatContext type AVCodecID (line 2774) | enum AVCodecID type AVCodecTag (line 2774) | struct AVCodecTag type AVCodecTag (line 2784) | struct AVCodecTag type AVCodecID (line 2784) | enum AVCodecID type AVCodecTag (line 2795) | struct AVCodecTag type AVCodecID (line 2795) | enum AVCodecID type AVCodecID (line 2933) | enum AVCodecID type AVCodecTag (line 2951) | struct AVCodecTag type AVCodecTag (line 2955) | struct AVCodecTag type AVCodecTag (line 2959) | struct AVCodecTag type AVCodecTag (line 2963) | struct AVCodecTag type AVTimebaseSource (line 3033) | enum AVTimebaseSource { type AVTimebaseSource (line 3054) | enum AVTimebaseSource FILE: ThirdParty/ffmpeg/include/libavformat/avio.h type AVIOInterruptCB (line 58) | typedef struct AVIOInterruptCB { type AVIODirEntryType (line 66) | enum AVIODirEntryType { type AVIODirEntry (line 86) | typedef struct AVIODirEntry { type AVIODirContext (line 103) | typedef struct AVIODirContext { type AVIODataMarkerType (line 111) | enum AVIODataMarkerType { type AVIOContext (line 161) | typedef struct AVIOContext { type AVIODataMarkerType (line 524) | enum AVIODataMarkerType function av_always_inline (line 557) | static av_always_inline int64_t avio_tell(AVIOContext *s) type AVBPrint (line 822) | struct AVBPrint type AVBPrint (line 830) | struct AVBPrint FILE: ThirdParty/ffmpeg/include/libavutil/aes.h type AVAES (line 37) | struct AVAES type AVAES (line 42) | struct AVAES type AVAES (line 49) | struct AVAES type AVAES (line 59) | struct AVAES FILE: ThirdParty/ffmpeg/include/libavutil/aes_ctr.h type AVAESCTR (line 33) | struct AVAESCTR type AVAESCTR (line 38) | struct AVAESCTR type AVAESCTR (line 44) | struct AVAESCTR type AVAESCTR (line 49) | struct AVAESCTR type AVAESCTR (line 57) | struct AVAESCTR type AVAESCTR (line 62) | struct AVAESCTR type AVAESCTR (line 67) | struct AVAESCTR type AVAESCTR (line 72) | struct AVAESCTR type AVAESCTR (line 77) | struct AVAESCTR type AVAESCTR (line 82) | struct AVAESCTR FILE: ThirdParty/ffmpeg/include/libavutil/audio_fifo.h type AVAudioFifo (line 49) | typedef struct AVAudioFifo AVAudioFifo; type AVSampleFormat (line 66) | enum AVSampleFormat FILE: ThirdParty/ffmpeg/include/libavutil/avstring.h function av_strnlen (line 140) | static inline size_t av_strnlen(const char *s, size_t len) function av_const (line 206) | static inline av_const int av_isdigit(int c) function av_const (line 214) | static inline av_const int av_isgraph(int c) function av_const (line 222) | static inline av_const int av_isspace(int c) function av_const (line 231) | static inline av_const int av_toupper(int c) function av_const (line 241) | static inline av_const int av_tolower(int c) function av_const (line 251) | static inline av_const int av_isxdigit(int c) type AVEscapeMode (line 313) | enum AVEscapeMode { type AVEscapeMode (line 354) | enum AVEscapeMode FILE: ThirdParty/ffmpeg/include/libavutil/avutil.h type AVMediaType (line 199) | enum AVMediaType { type AVMediaType (line 213) | enum AVMediaType type AVPictureType (line 272) | enum AVPictureType { type AVPictureType (line 290) | enum AVPictureType FILE: ThirdParty/ffmpeg/include/libavutil/blowfish.h type AVBlowfish (line 35) | typedef struct AVBlowfish { type AVBlowfish (line 52) | struct AVBlowfish type AVBlowfish (line 62) | struct AVBlowfish type AVBlowfish (line 75) | struct AVBlowfish FILE: ThirdParty/ffmpeg/include/libavutil/bprint.h type tm (line 148) | struct tm type tm (line 160) | struct tm function av_bprint_is_complete (line 185) | static inline int av_bprint_is_complete(const AVBPrint *buf) type AVEscapeMode (line 217) | enum AVEscapeMode FILE: ThirdParty/ffmpeg/include/libavutil/bswap.h function av_bswap16 (line 58) | uint16_t av_bswap16(uint16_t x) function av_bswap32 (line 66) | uint32_t av_bswap32(uint32_t x) function av_bswap64 (line 73) | static inline uint64_t av_const av_bswap64(uint64_t x) FILE: ThirdParty/ffmpeg/include/libavutil/buffer.h type AVBuffer (line 73) | typedef struct AVBuffer AVBuffer; type AVBufferRef (line 81) | typedef struct AVBufferRef { type AVBufferPool (line 238) | typedef struct AVBufferPool AVBufferPool; FILE: ThirdParty/ffmpeg/include/libavutil/camellia.h type AVCAMELLIA (line 38) | struct AVCAMELLIA type AVCAMELLIA (line 44) | struct AVCAMELLIA type AVCAMELLIA (line 53) | struct AVCAMELLIA type AVCAMELLIA (line 65) | struct AVCAMELLIA FILE: ThirdParty/ffmpeg/include/libavutil/cast5.h type AVCAST5 (line 38) | struct AVCAST5 type AVCAST5 (line 44) | struct AVCAST5 type AVCAST5 (line 53) | struct AVCAST5 type AVCAST5 (line 64) | struct AVCAST5 type AVCAST5 (line 76) | struct AVCAST5 FILE: ThirdParty/ffmpeg/include/libavutil/channel_layout.h type AVMatrixEncoding (line 114) | enum AVMatrixEncoding { type AVBPrint (line 167) | struct AVBPrint type AVBPrint (line 171) | struct AVBPrint FILE: ThirdParty/ffmpeg/include/libavutil/common.h function av_clip_c (line 127) | int av_clip_c(int a, int amin, int amax) function av_clip64_c (line 144) | int64_t av_clip64_c(int64_t a, int64_t amin, int64_t amax) function av_clip_uint8_c (line 159) | uint8_t av_clip_uint8_c(int a) function av_clip_int8_c (line 170) | int8_t av_clip_int8_c(int a) function av_clip_uint16_c (line 181) | uint16_t av_clip_uint16_c(int a) function av_clip_int16_c (line 192) | int16_t av_clip_int16_c(int a) function av_clipl_int32_c (line 203) | int32_t av_clipl_int32_c(int64_t a) function av_clip_intp2_c (line 215) | int av_clip_intp2_c(int a, int p) function av_clip_uintp2_c (line 229) | unsigned av_clip_uintp2_c(int a, int p) function av_mod_uintp2_c (line 241) | unsigned av_mod_uintp2_c(unsigned a, unsigned p) function av_always_inline (line 253) | static av_always_inline int av_sat_add32_c(int a, int b) function av_always_inline (line 265) | static av_always_inline int av_sat_dadd32_c(int a, int b) function av_always_inline (line 277) | static av_always_inline int av_sat_sub32_c(int a, int b) function av_always_inline (line 289) | static av_always_inline int av_sat_dsub32_c(int a, int b) function av_clipf_c (line 301) | float av_clipf_c(float a, float amin, float amax) function av_clipd_c (line 318) | double av_clipd_c(double a, double amin, double amax) function av_ceil_log2_c (line 332) | int av_ceil_log2_c(int x) function av_popcount_c (line 342) | int av_popcount_c(uint32_t x) function av_popcount64_c (line 356) | int av_popcount64_c(uint64_t x) function av_parity_c (line 361) | int av_parity_c(uint32_t v) FILE: ThirdParty/ffmpeg/include/libavutil/crc.h type AVCRC (line 47) | typedef uint32_t AVCRC; type AVCRCId (line 49) | typedef enum { FILE: ThirdParty/ffmpeg/include/libavutil/des.h type AVDES (line 33) | typedef struct AVDES { type AVDES (line 50) | struct AVDES type AVDES (line 62) | struct AVDES type AVDES (line 71) | struct AVDES FILE: ThirdParty/ffmpeg/include/libavutil/dict.h type AVDictionaryEntry (line 81) | typedef struct AVDictionaryEntry { type AVDictionary (line 86) | typedef struct AVDictionary AVDictionary; FILE: ThirdParty/ffmpeg/include/libavutil/downmix_info.h type AVDownmixType (line 44) | enum AVDownmixType { type AVDownmixInfo (line 58) | typedef struct AVDownmixInfo { FILE: ThirdParty/ffmpeg/include/libavutil/encryption_info.h type AVSubsampleEncryptionInfo (line 25) | typedef struct AVSubsampleEncryptionInfo { type AVEncryptionInfo (line 43) | typedef struct AVEncryptionInfo { type AVEncryptionInitInfo (line 88) | typedef struct AVEncryptionInitInfo { FILE: ThirdParty/ffmpeg/include/libavutil/eval.h type AVExpr (line 31) | typedef struct AVExpr AVExpr; FILE: ThirdParty/ffmpeg/include/libavutil/fifo.h type AVFifoBuffer (line 31) | typedef struct AVFifoBuffer { FILE: ThirdParty/ffmpeg/include/libavutil/frame.h type AVFrameSideDataType (line 48) | enum AVFrameSideDataType { type AVActiveFormatDescription (line 163) | enum AVActiveFormatDescription { type AVFrameSideData (line 180) | typedef struct AVFrameSideData { type AVFrame (line 218) | typedef struct AVFrame { type AVColorSpace (line 649) | enum AVColorSpace type AVColorRange (line 653) | enum AVColorRange type AVColorSpace (line 660) | enum AVColorSpace type AVFrameSideDataType (line 818) | enum AVFrameSideDataType type AVFrameSideDataType (line 834) | enum AVFrameSideDataType type AVFrameSideDataType (line 842) | enum AVFrameSideDataType type AVFrameSideDataType (line 848) | enum AVFrameSideDataType type AVFrameSideDataType (line 887) | enum AVFrameSideDataType FILE: ThirdParty/ffmpeg/include/libavutil/hash.h type AVHashContext (line 116) | struct AVHashContext type AVHashContext (line 126) | struct AVHashContext type AVHashContext (line 141) | struct AVHashContext type AVHashContext (line 168) | struct AVHashContext type AVHashContext (line 175) | struct AVHashContext type AVHashContext (line 185) | struct AVHashContext type AVHashContext (line 187) | struct AVHashContext type AVHashContext (line 204) | struct AVHashContext type AVHashContext (line 219) | struct AVHashContext type AVHashContext (line 237) | struct AVHashContext type AVHashContext (line 255) | struct AVHashContext type AVHashContext (line 262) | struct AVHashContext FILE: ThirdParty/ffmpeg/include/libavutil/hmac.h type AVHMACType (line 33) | enum AVHMACType { type AVHMAC (line 42) | typedef struct AVHMAC AVHMAC; type AVHMACType (line 48) | enum AVHMACType FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext.h type AVHWDeviceType (line 27) | enum AVHWDeviceType { type AVHWDeviceInternal (line 41) | typedef struct AVHWDeviceInternal AVHWDeviceInternal; type AVHWDeviceContext (line 60) | typedef struct AVHWDeviceContext { type AVHWFramesInternal (line 111) | typedef struct AVHWFramesInternal AVHWFramesInternal; type AVHWFramesContext (line 123) | typedef struct AVHWFramesContext { type AVHWDeviceType (line 238) | enum AVHWDeviceType type AVHWDeviceType (line 246) | enum AVHWDeviceType type AVHWDeviceType (line 256) | enum AVHWDeviceType type AVHWDeviceType (line 256) | enum AVHWDeviceType type AVHWDeviceType (line 265) | enum AVHWDeviceType type AVHWDeviceType (line 302) | enum AVHWDeviceType type AVHWDeviceType (line 327) | enum AVHWDeviceType type AVHWFrameTransferDirection (line 394) | enum AVHWFrameTransferDirection { type AVHWFrameTransferDirection (line 422) | enum AVHWFrameTransferDirection type AVPixelFormat (line 423) | enum AVPixelFormat type AVHWFramesConstraints (line 432) | typedef struct AVHWFramesConstraints { type AVPixelFormat (line 579) | enum AVPixelFormat FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_cuda.h type AVCUDADeviceContextInternal (line 37) | typedef struct AVCUDADeviceContextInternal AVCUDADeviceContextInternal; type AVCUDADeviceContext (line 42) | typedef struct AVCUDADeviceContext { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_d3d11va.h type AVD3D11VADeviceContext (line 45) | typedef struct AVD3D11VADeviceContext { type AVD3D11FrameDescriptor (line 109) | typedef struct AVD3D11FrameDescriptor { type AVD3D11VAFramesContext (line 131) | typedef struct AVD3D11VAFramesContext { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_drm.h type AVDRMObjectDescriptor (line 48) | typedef struct AVDRMObjectDescriptor { type AVDRMPlaneDescriptor (line 74) | typedef struct AVDRMPlaneDescriptor { type AVDRMLayerDescriptor (line 96) | typedef struct AVDRMLayerDescriptor { type AVDRMFrameDescriptor (line 133) | typedef struct AVDRMFrameDescriptor { type AVDRMDeviceContext (line 157) | typedef struct AVDRMDeviceContext { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_dxva2.h type AVDXVA2DeviceContext (line 39) | typedef struct AVDXVA2DeviceContext { type AVDXVA2FramesContext (line 46) | typedef struct AVDXVA2FramesContext { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_mediacodec.h type AVMediaCodecDeviceContext (line 27) | typedef struct AVMediaCodecDeviceContext { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_qsv.h type AVQSVDeviceContext (line 35) | typedef struct AVQSVDeviceContext { type AVQSVFramesContext (line 42) | typedef struct AVQSVFramesContext { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_vaapi.h type AVVAAPIDeviceContext (line 68) | typedef struct AVVAAPIDeviceContext { type AVVAAPIFramesContext (line 88) | typedef struct AVVAAPIFramesContext { type AVVAAPIHWConfig (line 110) | typedef struct AVVAAPIHWConfig { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_vdpau.h type AVVDPAUDeviceContext (line 35) | typedef struct AVVDPAUDeviceContext { FILE: ThirdParty/ffmpeg/include/libavutil/hwcontext_videotoolbox.h type AVPixelFormat (line 46) | enum AVPixelFormat type AVPixelFormat (line 52) | enum AVPixelFormat FILE: ThirdParty/ffmpeg/include/libavutil/imgutils.h type AVPixelFormat (line 59) | enum AVPixelFormat type AVPixelFormat (line 68) | enum AVPixelFormat type AVPixelFormat (line 81) | enum AVPixelFormat type AVPixelFormat (line 95) | enum AVPixelFormat type AVPixelFormat (line 121) | enum AVPixelFormat type AVPixelFormat (line 139) | enum AVPixelFormat type AVPixelFormat (line 169) | enum AVPixelFormat type AVPixelFormat (line 181) | enum AVPixelFormat type AVPixelFormat (line 202) | enum AVPixelFormat type AVPixelFormat (line 229) | enum AVPixelFormat type AVPixelFormat (line 269) | enum AVPixelFormat type AVColorRange (line 269) | enum AVColorRange FILE: ThirdParty/ffmpeg/include/libavutil/intfloat.h function av_always_inline (line 40) | static av_always_inline float av_int2float(uint32_t i) function av_always_inline (line 50) | static av_always_inline uint32_t av_float2int(float f) function av_always_inline (line 60) | static av_always_inline double av_int2double(uint64_t i) function av_always_inline (line 70) | static av_always_inline uint64_t av_double2int(double f) FILE: ThirdParty/ffmpeg/include/libavutil/intreadwrite.h type av_alias64 (line 27) | typedef union { type av_alias32 (line 36) | typedef union { type av_alias16 (line 43) | typedef union { FILE: ThirdParty/ffmpeg/include/libavutil/lfg.h type AVLFG (line 27) | typedef struct AVLFG { function av_lfg_get (line 47) | static inline unsigned int av_lfg_get(AVLFG *c){ function av_mlfg_get (line 57) | static inline unsigned int av_mlfg_get(AVLFG *c){ FILE: ThirdParty/ffmpeg/include/libavutil/log.h type AVClassCategory (line 29) | typedef enum { type AVOptionRanges (line 60) | struct AVOptionRanges type AVClass (line 67) | typedef struct AVClass { FILE: ThirdParty/ffmpeg/include/libavutil/mastering_display_metadata.h type AVMasteringDisplayMetadata (line 38) | typedef struct AVMasteringDisplayMetadata { type AVContentLightMetadata (line 98) | typedef struct AVContentLightMetadata { FILE: ThirdParty/ffmpeg/include/libavutil/mathematics.h type AVRounding (line 79) | enum AVRounding { type AVRounding (line 140) | enum AVRounding type AVRounding (line 161) | enum AVRounding FILE: ThirdParty/ffmpeg/include/libavutil/md5.h type AVMD5 (line 46) | struct AVMD5 type AVMD5 (line 51) | struct AVMD5 type AVMD5 (line 58) | struct AVMD5 type AVMD5 (line 68) | struct AVMD5 type AVMD5 (line 70) | struct AVMD5 type AVMD5 (line 79) | struct AVMD5 FILE: ThirdParty/ffmpeg/include/libavutil/mem.h function av_size_mult (line 669) | static inline int av_size_mult(size_t a, size_t b, size_t *r) FILE: ThirdParty/ffmpeg/include/libavutil/motion_vector.h type AVMotionVector (line 24) | typedef struct AVMotionVector { FILE: ThirdParty/ffmpeg/include/libavutil/murmur3.h type AVMurMur3 (line 68) | struct AVMurMur3 type AVMurMur3 (line 80) | struct AVMurMur3 type AVMurMur3 (line 93) | struct AVMurMur3 type AVMurMur3 (line 103) | struct AVMurMur3 type AVMurMur3 (line 105) | struct AVMurMur3 type AVMurMur3 (line 114) | struct AVMurMur3 FILE: ThirdParty/ffmpeg/include/libavutil/opt.h type AVOptionType (line 221) | enum AVOptionType{ type AVOption (line 246) | typedef struct AVOption { type AVOptionRange (line 305) | typedef struct AVOptionRange { type AVOptionRanges (line 328) | typedef struct AVOptionRanges { type AVDictionary (line 478) | struct AVDictionary type AVDictionary (line 496) | struct AVDictionary type AVPixelFormat (line 686) | enum AVPixelFormat type AVSampleFormat (line 687) | enum AVSampleFormat type AVPixelFormat (line 740) | enum AVPixelFormat type AVSampleFormat (line 741) | enum AVSampleFormat FILE: ThirdParty/ffmpeg/include/libavutil/parseutils.h type tm (line 186) | struct tm type tm (line 191) | struct tm FILE: ThirdParty/ffmpeg/include/libavutil/pixdesc.h type AVComponentDescriptor (line 31) | typedef struct AVComponentDescriptor { type AVPixFmtDescriptor (line 81) | typedef struct AVPixFmtDescriptor { type AVPixelFormat (line 215) | enum AVPixelFormat type AVPixelFormat (line 230) | enum AVPixelFormat type AVPixelFormat (line 242) | enum AVPixelFormat type AVPixelFormat (line 249) | enum AVPixelFormat type AVColorRange (line 254) | enum AVColorRange type AVColorPrimaries (line 264) | enum AVColorPrimaries type AVColorTransferCharacteristic (line 274) | enum AVColorTransferCharacteristic type AVColorSpace (line 284) | enum AVColorSpace type AVChromaLocation (line 294) | enum AVChromaLocation type AVPixelFormat (line 312) | enum AVPixelFormat type AVPixelFormat (line 320) | enum AVPixelFormat type AVPixelFormat (line 333) | enum AVPixelFormat type AVPixelFormat (line 381) | enum AVPixelFormat type AVPixelFormat (line 381) | enum AVPixelFormat type AVPixelFormat (line 408) | enum AVPixelFormat type AVPixelFormat (line 409) | enum AVPixelFormat type AVPixelFormat (line 430) | enum AVPixelFormat type AVPixelFormat (line 430) | enum AVPixelFormat type AVPixelFormat (line 430) | enum AVPixelFormat type AVPixelFormat (line 431) | enum AVPixelFormat FILE: ThirdParty/ffmpeg/include/libavutil/pixfmt.h type AVPixelFormat (line 60) | enum AVPixelFormat { type AVColorPrimaries (line 420) | enum AVColorPrimaries { type AVColorTransferCharacteristic (line 444) | enum AVColorTransferCharacteristic { type AVColorSpace (line 473) | enum AVColorSpace { type AVColorRange (line 496) | enum AVColorRange { type AVChromaLocation (line 518) | enum AVChromaLocation { FILE: ThirdParty/ffmpeg/include/libavutil/rational.h type AVRational (line 58) | typedef struct AVRational{ function AVRational (line 71) | static inline AVRational av_make_q(int num, int den) function av_cmp_q (line 89) | static inline int av_cmp_q(AVRational a, AVRational b){ function av_q2d (line 104) | static inline double av_q2d(AVRational a){ function av_always_inline (line 159) | static av_always_inline AVRational av_inv_q(AVRational q) FILE: ThirdParty/ffmpeg/include/libavutil/rc4.h type AVRC4 (line 32) | typedef struct AVRC4 { type AVRC4 (line 49) | struct AVRC4 type AVRC4 (line 60) | struct AVRC4 FILE: ThirdParty/ffmpeg/include/libavutil/replaygain.h type AVReplayGain (line 29) | typedef struct AVReplayGain { FILE: ThirdParty/ffmpeg/include/libavutil/ripemd.h type AVRIPEMD (line 46) | struct AVRIPEMD type AVRIPEMD (line 51) | struct AVRIPEMD type AVRIPEMD (line 60) | struct AVRIPEMD type AVRIPEMD (line 70) | struct AVRIPEMD type AVRIPEMD (line 72) | struct AVRIPEMD type AVRIPEMD (line 81) | struct AVRIPEMD FILE: ThirdParty/ffmpeg/include/libavutil/samplefmt.h type AVSampleFormat (line 58) | enum AVSampleFormat { type AVSampleFormat (line 81) | enum AVSampleFormat type AVSampleFormat (line 87) | enum AVSampleFormat type AVSampleFormat (line 95) | enum AVSampleFormat type AVSampleFormat (line 95) | enum AVSampleFormat type AVSampleFormat (line 106) | enum AVSampleFormat type AVSampleFormat (line 106) | enum AVSampleFormat type AVSampleFormat (line 117) | enum AVSampleFormat type AVSampleFormat (line 117) | enum AVSampleFormat type AVSampleFormat (line 131) | enum AVSampleFormat type AVSampleFormat (line 140) | enum AVSampleFormat type AVSampleFormat (line 148) | enum AVSampleFormat type AVSampleFormat (line 161) | enum AVSampleFormat type AVSampleFormat (line 205) | enum AVSampleFormat type AVSampleFormat (line 227) | enum AVSampleFormat type AVSampleFormat (line 239) | enum AVSampleFormat type AVSampleFormat (line 254) | enum AVSampleFormat type AVSampleFormat (line 266) | enum AVSampleFormat FILE: ThirdParty/ffmpeg/include/libavutil/sha.h type AVSHA (line 54) | struct AVSHA type AVSHA (line 59) | struct AVSHA type AVSHA (line 68) | struct AVSHA type AVSHA (line 78) | struct AVSHA type AVSHA (line 80) | struct AVSHA type AVSHA (line 89) | struct AVSHA FILE: ThirdParty/ffmpeg/include/libavutil/sha512.h type AVSHA512 (line 56) | struct AVSHA512 type AVSHA512 (line 61) | struct AVSHA512 type AVSHA512 (line 70) | struct AVSHA512 type AVSHA512 (line 80) | struct AVSHA512 type AVSHA512 (line 82) | struct AVSHA512 type AVSHA512 (line 91) | struct AVSHA512 FILE: ThirdParty/ffmpeg/include/libavutil/spherical.h type AVSphericalProjection (line 51) | enum AVSphericalProjection { type AVSphericalMapping (line 82) | typedef struct AVSphericalMapping { type AVSphericalProjection (line 217) | enum AVSphericalProjection FILE: ThirdParty/ffmpeg/include/libavutil/stereo3d.h type AVStereo3DType (line 51) | enum AVStereo3DType { type AVStereo3DView (line 147) | enum AVStereo3DView { type AVStereo3D (line 176) | typedef struct AVStereo3D { FILE: ThirdParty/ffmpeg/include/libavutil/tea.h type AVTEA (line 37) | struct AVTEA type AVTEA (line 43) | struct AVTEA type AVTEA (line 52) | struct AVTEA type AVTEA (line 64) | struct AVTEA FILE: ThirdParty/ffmpeg/include/libavutil/threadmessage.h type AVThreadMessageQueue (line 22) | typedef struct AVThreadMessageQueue AVThreadMessageQueue; type AVThreadMessageFlags (line 24) | typedef enum AVThreadMessageFlags { FILE: ThirdParty/ffmpeg/include/libavutil/timecode.h type AVTimecodeFlag (line 35) | enum AVTimecodeFlag { type AVTimecode (line 41) | typedef struct { FILE: ThirdParty/ffmpeg/include/libavutil/tree.h type AVTreeNode (line 45) | struct AVTreeNode type AVTreeNode (line 51) | struct AVTreeNode type AVTreeNode (line 67) | struct AVTreeNode type AVTreeNode (line 114) | struct AVTreeNode type AVTreeNode (line 116) | struct AVTreeNode type AVTreeNode (line 118) | struct AVTreeNode type AVTreeNode (line 130) | struct AVTreeNode FILE: ThirdParty/ffmpeg/include/libavutil/twofish.h type AVTWOFISH (line 38) | struct AVTWOFISH type AVTWOFISH (line 44) | struct AVTWOFISH type AVTWOFISH (line 53) | struct AVTWOFISH type AVTWOFISH (line 65) | struct AVTWOFISH FILE: ThirdParty/ffmpeg/include/libavutil/xtea.h type AVXTEA (line 35) | typedef struct AVXTEA { type AVXTEA (line 51) | struct AVXTEA type AVXTEA (line 60) | struct AVXTEA type AVXTEA (line 73) | struct AVXTEA type AVXTEA (line 87) | struct AVXTEA FILE: ThirdParty/ffmpeg/include/libpostproc/postprocess.h type pp_context (line 58) | typedef void pp_context; type pp_mode (line 59) | typedef void pp_mode; type pp_context (line 62) | typedef pp_context pp_context_t; type pp_mode (line 63) | typedef pp_mode pp_mode_t; FILE: ThirdParty/ffmpeg/include/libswresample/swresample.h type SwrDitherType (line 141) | enum SwrDitherType { type SwrEngine (line 159) | enum SwrEngine { type SwrFilterType (line 166) | enum SwrFilterType { type SwrContext (line 182) | typedef struct SwrContext SwrContext; type SwrContext (line 207) | struct SwrContext type SwrContext (line 219) | struct SwrContext type SwrContext (line 228) | struct SwrContext type SwrContext (line 250) | struct SwrContext type SwrContext (line 250) | struct SwrContext type AVSampleFormat (line 251) | enum AVSampleFormat type AVSampleFormat (line 252) | enum AVSampleFormat type SwrContext (line 267) | struct SwrContext type SwrContext (line 279) | struct SwrContext type SwrContext (line 306) | struct SwrContext type SwrContext (line 326) | struct SwrContext type SwrContext (line 353) | struct SwrContext type SwrContext (line 363) | struct SwrContext type AVMatrixEncoding (line 392) | enum AVMatrixEncoding type SwrContext (line 404) | struct SwrContext type SwrContext (line 424) | struct SwrContext type SwrContext (line 437) | struct SwrContext type SwrContext (line 463) | struct SwrContext type SwrContext (line 481) | struct SwrContext FILE: ThirdParty/ffmpeg/include/libswscale/swscale.h type SwsVector (line 109) | typedef struct SwsVector { type SwsFilter (line 115) | typedef struct SwsFilter { type SwsContext (line 122) | struct SwsContext type AVPixelFormat (line 128) | enum AVPixelFormat type AVPixelFormat (line 134) | enum AVPixelFormat type AVPixelFormat (line 141) | enum AVPixelFormat type SwsContext (line 148) | struct SwsContext type SwsContext (line 157) | struct SwsContext type SwsContext (line 163) | struct SwsContext type SwsContext (line 186) | struct SwsContext type AVPixelFormat (line 186) | enum AVPixelFormat type AVPixelFormat (line 187) | enum AVPixelFormat type SwsContext (line 217) | struct SwsContext type SwsContext (line 231) | struct SwsContext type SwsContext (line 238) | struct SwsContext type SwsContext (line 294) | struct SwsContext type SwsContext (line 294) | struct SwsContext type AVPixelFormat (line 295) | enum AVPixelFormat type AVPixelFormat (line 296) | enum AVPixelFormat FILE: ThirdParty/libopusenc/include/opusenc.h type OpusEncCallbacks (line 161) | typedef struct { type OggOpusComments (line 171) | typedef struct OggOpusComments OggOpusComments; type OggOpusEnc (line 174) | typedef struct OggOpusEnc OggOpusEnc; FILE: ThirdParty/libopusenc/src/arch.h type spx_int16_t (line 80) | typedef spx_int16_t spx_word16_t; type spx_int32_t (line 81) | typedef spx_int32_t spx_word32_t; type spx_word32_t (line 82) | typedef spx_word32_t spx_mem_t; type spx_word16_t (line 83) | typedef spx_word16_t spx_coef_t; type spx_word16_t (line 84) | typedef spx_word16_t spx_lsp_t; type spx_word32_t (line 85) | typedef spx_word32_t spx_sig_t; type spx_mem_t (line 128) | typedef float spx_mem_t; type spx_coef_t (line 129) | typedef float spx_coef_t; type spx_lsp_t (line 130) | typedef float spx_lsp_t; type spx_sig_t (line 131) | typedef float spx_sig_t; type spx_word16_t (line 132) | typedef float spx_word16_t; type spx_word32_t (line 133) | typedef float spx_word32_t; FILE: ThirdParty/libopusenc/src/ogg_packer.c function ogg_page_checksum_set (line 105) | static void ogg_page_checksum_set(unsigned char *page, oggp_int32 len){ type oggp_page (line 123) | typedef struct { type oggpacker (line 133) | struct oggpacker { function oggpacker (line 156) | oggpacker *oggp_create(oggp_int32 serialno) { function oggp_destroy (line 199) | void oggp_destroy(oggpacker *oggp) { function oggp_set_muxing_delay (line 208) | void oggp_set_muxing_delay(oggpacker *oggp, oggp_uint64 delay) { function shift_buffer (line 212) | static void shift_buffer(oggpacker *oggp) { function oggp_commit_packet (line 264) | int oggp_commit_packet(oggpacker *oggp, oggp_int32 bytes, oggp_uint64 gr... function oggp_flush_page (line 313) | int oggp_flush_page(oggpacker *oggp) { function oggp_get_next_page (line 368) | int oggp_get_next_page(oggpacker *oggp, unsigned char **page, oggp_int32... function oggp_chain (line 430) | int oggp_chain(oggpacker *oggp, oggp_int32 serialno) { FILE: ThirdParty/libopusenc/src/ogg_packer.h type oggp_uint64 (line 35) | typedef unsigned long long oggp_uint64; type oggp_uint32 (line 36) | typedef unsigned oggp_uint32; type oggp_int32 (line 37) | typedef int oggp_int32; type oggpacker (line 39) | typedef struct oggpacker oggpacker; FILE: ThirdParty/libopusenc/src/opus_header.c type Packet (line 60) | typedef struct { type ROPacket (line 66) | typedef struct { function write_uint32 (line 72) | static int write_uint32(Packet *p, opus_uint32 val) function write_uint16 (line 84) | static int write_uint16(Packet *p, opus_uint16 val) function write_chars (line 94) | static int write_chars(Packet *p, const unsigned char *str, int nb_chars) function opus_header_to_packet (line 104) | int opus_header_to_packet(const OpusHeader *h, unsigned char *packet, in... function comment_init (line 187) | void comment_init(char **comments, int* length, const char *vendor_string) function comment_add (line 203) | int comment_add(char **comments, int* length, const char *tag, const cha... function comment_pad (line 227) | void comment_pad(char **comments, int* length, int amount) function comment_replace_vendor_string (line 244) | int comment_replace_vendor_string(char **comments, int* length, const ch... FILE: ThirdParty/libopusenc/src/opus_header.h type OpusHeader (line 34) | typedef struct { FILE: ThirdParty/libopusenc/src/opusenc.c type StdioObject (line 71) | struct StdioObject { type OggOpusComments (line 75) | struct OggOpusComments { function OggOpusComments (line 82) | OggOpusComments *ope_comments_create() { function OggOpusComments (line 100) | OggOpusComments *ope_comments_copy(OggOpusComments *comments) { function ope_comments_destroy (line 116) | void ope_comments_destroy(OggOpusComments *comments){ function ope_comments_add (line 122) | int ope_comments_add(OggOpusComments *comments, const char *tag, const c... function ope_comments_add_string (line 130) | int ope_comments_add_string(OggOpusComments *comments, const char *tag_a... function ope_comments_add_picture (line 136) | int ope_comments_add_picture(OggOpusComments *comments, const char *file... type EncStream (line 149) | typedef struct EncStream EncStream; type EncStream (line 151) | struct EncStream { type OggOpusEnc (line 167) | struct OggOpusEnc { function output_pages (line 197) | static void output_pages(OggOpusEnc *enc) { function oe_flush_page (line 204) | static void oe_flush_page(OggOpusEnc *enc) { function stdio_write (line 209) | int stdio_write(void *user_data, const unsigned char *ptr, opus_int32 le... function stdio_close (line 214) | int stdio_close(void *user_data) { function OggOpusEnc (line 228) | OggOpusEnc *ope_encoder_create_file(const char *path, OggOpusComments *c... function EncStream (line 245) | EncStream *stream_create(OggOpusComments *comments) { function stream_destroy (line 267) | static void stream_destroy(EncStream *stream) { function OggOpusEnc (line 273) | OggOpusEnc *ope_encoder_create_callbacks(const OpusEncCallbacks *callbac... function OPE_EXPORT (line 369) | OPE_EXPORT OggOpusEnc *ope_encoder_create_pull(OggOpusComments *comments... function init_stream (line 375) | static void init_stream(OggOpusEnc *enc) { function shift_buffer (line 411) | static void shift_buffer(OggOpusEnc *enc) { function encode_buffer (line 421) | static void encode_buffer(OggOpusEnc *enc) { function ope_encoder_write_float (line 528) | int ope_encoder_write_float(OggOpusEnc *enc, const float *pcm, int sampl... function ope_encoder_write (line 572) | int ope_encoder_write(OggOpusEnc *enc, const opus_int16 *pcm, int sample... function OPE_EXPORT (line 618) | OPE_EXPORT int ope_encoder_get_page(OggOpusEnc *enc, unsigned char **pag... function ope_encoder_drain (line 629) | int ope_encoder_drain(OggOpusEnc *enc) { function ope_encoder_destroy (line 666) | void ope_encoder_destroy(OggOpusEnc *enc) { function ope_encoder_chain_current (line 685) | int ope_encoder_chain_current(OggOpusEnc *enc, OggOpusComments *comments) { function ope_encoder_continue_new_file (line 691) | int ope_encoder_continue_new_file(OggOpusEnc *enc, const char *path, Ogg... function ope_encoder_continue_new_callbacks (line 709) | int ope_encoder_continue_new_callbacks(OggOpusEnc *enc, void *user_data,... function ope_encoder_flush_header (line 723) | int ope_encoder_flush_header(OggOpusEnc *enc) { function ope_encoder_ctl (line 732) | int ope_encoder_ctl(OggOpusEnc *enc, int request, ...) { function ope_get_abi_version (line 952) | int ope_get_abi_version(void) { function extend_signal (line 958) | static void extend_signal(float *x, int before, int after, int channels) { function vorbis_lpc_from_data (line 1023) | static void vorbis_lpc_from_data(float *data, float *lpci, int n, int st... FILE: ThirdParty/libopusenc/src/picture.c function base64_encode (line 46) | void base64_encode(char *dst, const char *src, int len){ function oi_strncasecmp (line 85) | int oi_strncasecmp(const char *a, const char *b, int n){ function is_jpeg (line 107) | int is_jpeg(const unsigned char *buf, size_t length){ function is_png (line 112) | int is_png(const unsigned char *buf, size_t length){ function is_gif (line 116) | int is_gif(const unsigned char *buf, size_t length){ function extract_png_params (line 127) | void extract_png_params(const unsigned char *data, size_t data_length, function extract_gif_params (line 171) | void extract_gif_params(const unsigned char *data, size_t data_length, function extract_jpeg_params (line 189) | void extract_jpeg_params(const unsigned char *data, size_t data_length, FILE: ThirdParty/libopusenc/src/picture.h type picture_format (line 34) | typedef enum{ FILE: ThirdParty/libopusenc/src/resample.c function speex_free (line 67) | static void speex_free(void *ptr) { free(ptr); } type SpeexResamplerState_ (line 109) | struct SpeexResamplerState_ { type FuncDef (line 187) | struct FuncDef { type FuncDef (line 192) | struct FuncDef type FuncDef (line 196) | struct FuncDef type FuncDef (line 198) | struct FuncDef type FuncDef (line 200) | struct FuncDef type QualityMapping (line 203) | struct QualityMapping { type QualityMapping (line 221) | struct QualityMapping function compute_func (line 235) | static double compute_func(float x, const struct FuncDef *func) function main (line 257) | int main(int argc, char **argv) function spx_word16_t (line 270) | static spx_word16_t sinc(float cutoff, float x, int N, const struct Func... function spx_word16_t (line 283) | static spx_word16_t sinc(float cutoff, float x, int N, const struct Func... function cubic_coef (line 297) | static void cubic_coef(spx_word16_t x, spx_word16_t interp[4]) function cubic_coef (line 313) | static void cubic_coef(spx_word16_t frac, spx_word16_t interp[4]) function resampler_basic_direct_single (line 326) | static int resampler_basic_direct_single(SpeexResamplerState *st, spx_ui... function resampler_basic_direct_double (line 384) | static int resampler_basic_direct_double(SpeexResamplerState *st, spx_ui... function resampler_basic_interpolate_single (line 433) | static int resampler_basic_interpolate_single(SpeexResamplerState *st, s... function resampler_basic_interpolate_double (line 496) | static int resampler_basic_interpolate_double(SpeexResamplerState *st, s... function resampler_basic_zero (line 560) | static int resampler_basic_zero(SpeexResamplerState *st, spx_uint32_t ch... function _muldiv (line 587) | static int _muldiv(spx_uint32_t *result, spx_uint32_t value, spx_uint32_... function update_filter (line 600) | static int update_filter(SpeexResamplerState *st) function EXPORT (line 789) | EXPORT SpeexResamplerState *speex_resampler_init(spx_uint32_t nb_channel... function EXPORT (line 794) | EXPORT SpeexResamplerState *speex_resampler_init_frac(spx_uint32_t nb_ch... function EXPORT (line 864) | EXPORT void speex_resampler_destroy(SpeexResamplerState *st) function speex_resampler_process_native (line 874) | static int speex_resampler_process_native(SpeexResamplerState *st, spx_u... function speex_resampler_magic (line 900) | static int speex_resampler_magic(SpeexResamplerState *st, spx_uint32_t c... function EXPORT (line 921) | EXPORT int speex_resampler_process_int(SpeexResamplerState *st, spx_uint... function EXPORT (line 962) | EXPORT int speex_resampler_process_float(SpeexResamplerState *st, spx_ui... function EXPORT (line 1035) | EXPORT int speex_resampler_process_interleaved_float(SpeexResamplerState... function EXPORT (line 1058) | EXPORT int speex_resampler_process_interleaved_int(SpeexResamplerState *... function EXPORT (line 1081) | EXPORT int speex_resampler_set_rate(SpeexResamplerState *st, spx_uint32_... function EXPORT (line 1086) | EXPORT void speex_resampler_get_rate(SpeexResamplerState *st, spx_uint32... function spx_uint32_t (line 1092) | static inline spx_uint32_t _gcd(spx_uint32_t a, spx_uint32_t b) function EXPORT (line 1104) | EXPORT int speex_resampler_set_rate_frac(SpeexResamplerState *st, spx_ui... function EXPORT (line 1140) | EXPORT void speex_resampler_get_ratio(SpeexResamplerState *st, spx_uint3... function EXPORT (line 1146) | EXPORT int speex_resampler_set_quality(SpeexResamplerState *st, int qual... function EXPORT (line 1158) | EXPORT void speex_resampler_get_quality(SpeexResamplerState *st, int *qu... function EXPORT (line 1163) | EXPORT void speex_resampler_set_input_stride(SpeexResamplerState *st, sp... function EXPORT (line 1168) | EXPORT void speex_resampler_get_input_stride(SpeexResamplerState *st, sp... function EXPORT (line 1173) | EXPORT void speex_resampler_set_output_stride(SpeexResamplerState *st, s... function EXPORT (line 1178) | EXPORT void speex_resampler_get_output_stride(SpeexResamplerState *st, s... function EXPORT (line 1183) | EXPORT int speex_resampler_get_input_latency(SpeexResamplerState *st) function EXPORT (line 1188) | EXPORT int speex_resampler_get_output_latency(SpeexResamplerState *st) function EXPORT (line 1193) | EXPORT int speex_resampler_skip_zeros(SpeexResamplerState *st) function EXPORT (line 1201) | EXPORT int speex_resampler_reset_mem(SpeexResamplerState *st) function EXPORT (line 1215) | EXPORT const char *speex_resampler_strerror(int err) FILE: ThirdParty/libopusenc/src/resample_sse.h function inner_product_single (line 40) | static inline float inner_product_single(const float *a, const float *b,... function interpolate_product_single (line 57) | static inline float interpolate_product_single(const float *a, const flo... function inner_product_double (line 78) | static inline double inner_product_double(const float *a, const float *b... function interpolate_product_double (line 100) | static inline double interpolate_product_double(const float *a, const fl... FILE: ThirdParty/libopusenc/src/speex_resampler.h type SpeexResamplerState_ (line 95) | struct SpeexResamplerState_ type SpeexResamplerState (line 96) | typedef struct SpeexResamplerState_ SpeexResamplerState; FILE: ThirdParty/loopback/cleanup.h function class (line 3) | class AudioClientStopOnExit { function class (line 17) | class AvRevertMmThreadCharacteristicsOnExit { function class (line 29) | class CancelWaitableTimerOnExit { function class (line 41) | class CloseHandleOnExit { function class (line 54) | class CoTaskMemFreeOnExit { function class (line 65) | class CoUninitializeOnExit { function class (line 72) | class PropVariantClearOnExit { function class (line 86) | class ReleaseOnExit { function class (line 97) | class SetEventOnExit { function class (line 109) | class WaitForSingleObjectOnExit { FILE: ThirdParty/loopback/loopback-capture.cpp function DWORD (line 17) | DWORD WINAPI LoopbackCaptureThreadFunction(LPVOID pContext) { function HRESULT (line 39) | HRESULT LoopbackCapture( function HRESULT (line 290) | HRESULT WriteWaveHeader(HMMIO hFile, LPCWAVEFORMATEX pwfx, MMCKINFO *pck... function HRESULT (line 367) | HRESULT FinishWaveFile(HMMIO hFile, MMCKINFO *pckRIFF, MMCKINFO *pckData) { FILE: ThirdParty/loopback/loopback-capture.h type LoopbackCaptureThreadFunctionArguments (line 10) | struct LoopbackCaptureThreadFunctionArguments { FILE: ThirdParty/loopback/main.cpp function wmain (line 7) | int _cdecl wmain(int argc, LPCWSTR argv[]) { function do_everything (line 20) | int do_everything(int argc, LPCWSTR argv[]) { FILE: ThirdParty/loopback/prefs.cpp function usage (line 13) | void usage(LPCWSTR exe) { function HRESULT (line 150) | HRESULT get_default_device(IMMDevice **ppMMDevice) { function HRESULT (line 176) | HRESULT list_devices() { function HRESULT (line 253) | HRESULT get_specific_device(LPCWSTR szLongName, IMMDevice **ppMMDevice) { function HRESULT (line 346) | HRESULT open_file(LPCWSTR szFileName, HMMIO *phFile) { FILE: ThirdParty/loopback/prefs.h function class (line 3) | class CPrefs { FILE: ThirdParty/opus-1.2.1/include/opus.h type OpusEncoder (line 164) | typedef struct OpusEncoder OpusEncoder; type OpusDecoder (line 399) | typedef struct OpusDecoder OpusDecoder; type OpusRepacketizer (line 754) | typedef struct OpusRepacketizer OpusRepacketizer; FILE: ThirdParty/opus-1.2.1/include/opus_custom.h type OpusCustomEncoder (line 95) | typedef struct OpusCustomEncoder OpusCustomEncoder; type OpusCustomDecoder (line 102) | typedef struct OpusCustomDecoder OpusCustomDecoder; type OpusCustomMode (line 110) | typedef struct OpusCustomMode OpusCustomMode; FILE: ThirdParty/opus-1.2.1/include/opus_multistream.h type OpusMSEncoder (line 175) | typedef struct OpusMSEncoder OpusMSEncoder; type OpusMSDecoder (line 183) | typedef struct OpusMSDecoder OpusMSDecoder; FILE: ThirdParty/opus-1.2.1/include/opus_types.h type opus_int16 (line 40) | typedef int16_t opus_int16; type opus_uint16 (line 41) | typedef uint16_t opus_uint16; type opus_int32 (line 42) | typedef int32_t opus_int32; type opus_uint32 (line 43) | typedef uint32_t opus_uint32; type _G_int32_t (line 48) | typedef _G_int32_t opus_int32; type _G_uint32_t (line 49) | typedef _G_uint32_t opus_uint32; type _G_int16 (line 50) | typedef _G_int16 opus_int16; type _G_uint16 (line 51) | typedef _G_uint16 opus_uint16; type opus_int16 (line 53) | typedef short opus_int16; type opus_uint16 (line 54) | typedef unsigned short opus_uint16; type opus_int32 (line 55) | typedef int opus_int32; type opus_uint32 (line 56) | typedef unsigned int opus_uint32; type opus_int32 (line 58) | typedef int opus_int32; type opus_uint32 (line 59) | typedef unsigned int opus_uint32; type opus_int16 (line 60) | typedef short opus_int16; type opus_uint16 (line 61) | typedef unsigned short opus_uint16; type __int32 (line 64) | typedef __int32 opus_int32; type opus_uint32 (line 65) | typedef unsigned __int32 opus_uint32; type __int16 (line 66) | typedef __int16 opus_int16; type opus_uint16 (line 67) | typedef unsigned __int16 opus_uint16; type SInt16 (line 73) | typedef SInt16 opus_int16; type UInt16 (line 74) | typedef UInt16 opus_uint16; type SInt32 (line 75) | typedef SInt32 opus_int32; type UInt32 (line 76) | typedef UInt32 opus_uint32; type opus_int16 (line 81) | typedef int16_t opus_int16; type u_int16_t (line 82) | typedef u_int16_t opus_uint16; type opus_int32 (line 83) | typedef int32_t opus_int32; type u_int32_t (line 84) | typedef u_int32_t opus_uint32; type int16 (line 90) | typedef int16 opus_int16; type u_int16 (line 91) | typedef u_int16 opus_uint16; type opus_int32 (line 92) | typedef int32_t opus_int32; type u_int32_t (line 93) | typedef u_int32_t opus_uint32; type opus_int16 (line 98) | typedef short opus_int16; type opus_uint16 (line 99) | typedef unsigned short opus_uint16; type opus_int32 (line 100) | typedef int opus_int32; type opus_uint32 (line 101) | typedef unsigned int opus_uint32; type opus_int16 (line 106) | typedef short opus_int16; type opus_uint16 (line 107) | typedef unsigned short opus_uint16; type opus_int32 (line 108) | typedef int opus_int32; type opus_uint32 (line 109) | typedef unsigned int opus_uint32; type opus_int32 (line 114) | typedef int opus_int32; type opus_uint32 (line 115) | typedef unsigned opus_uint32; type opus_int16 (line 116) | typedef short opus_int16; type opus_uint16 (line 117) | typedef unsigned short opus_uint16; type opus_int16 (line 122) | typedef signed short opus_int16; type opus_uint16 (line 123) | typedef unsigned short opus_uint16; type opus_int32 (line 124) | typedef signed int opus_int32; type opus_uint32 (line 125) | typedef unsigned int opus_uint32; type opus_int16 (line 129) | typedef short opus_int16; type opus_uint16 (line 130) | typedef unsigned short opus_uint16; type opus_int32 (line 131) | typedef long opus_int32; type opus_uint32 (line 132) | typedef unsigned long opus_uint32; type opus_int16 (line 136) | typedef short opus_int16; type opus_uint16 (line 137) | typedef unsigned short opus_uint16; type opus_int32 (line 138) | typedef int opus_int32; type opus_uint32 (line 139) | typedef unsigned int opus_uint32; type opus_int16 (line 144) | typedef short opus_int16; type opus_uint16 (line 145) | typedef unsigned short opus_uint16; type opus_int32 (line 146) | typedef int opus_int32; type opus_uint32 (line 147) | typedef unsigned int opus_uint32; FILE: ThirdParty/opus-1.2.1/src/analysis.c function opus_val32 (line 111) | static opus_val32 silk_resampler_down2_hp( function opus_val32 (line 159) | static opus_val32 downmix_and_resample(downmix_func downmix, const void ... function tonality_analysis_init (line 213) | void tonality_analysis_init(TonalityAnalysisState *tonal, opus_int32 Fs) function tonality_analysis_reset (line 222) | void tonality_analysis_reset(TonalityAnalysisState *tonal) function tonality_get_info (line 231) | void tonality_get_info(TonalityAnalysisState *tonal, AnalysisInfo *info_... function tonality_analysis (line 315) | static void tonality_analysis(TonalityAnalysisState *tonal, const CELTMo... function run_analysis (line 911) | void run_analysis(TonalityAnalysisState *analysis, const CELTMode *celt_... FILE: ThirdParty/opus-1.2.1/src/analysis.h type TonalityAnalysisState (line 46) | typedef struct { FILE: ThirdParty/opus-1.2.1/src/mlp.c function OPUS_INLINE (line 42) | static OPUS_INLINE opus_val16 tansig_approx(opus_val32 _x) /* Q19 */ function OPUS_INLINE (line 68) | static OPUS_INLINE float tansig_approx(float x) function mlp_process (line 98) | void mlp_process(const MLP *m, const opus_val16 *in, opus_val16 *out) function mlp_process (line 122) | void mlp_process(const MLP *m, const float *in, float *out) FILE: ThirdParty/opus-1.2.1/src/mlp.h type MLP (line 33) | typedef struct { FILE: ThirdParty/opus-1.2.1/src/opus.c function OPUS_EXPORT (line 36) | OPUS_EXPORT void opus_pcm_soft_clip(float *_x, int N, int C, float *decl... function encode_size (line 140) | int encode_size(int size, unsigned char *data) function parse_size (line 153) | static int parse_size(const unsigned char *data, opus_int32 len, opus_in... function opus_packet_get_samples_per_frame (line 173) | int opus_packet_get_samples_per_frame(const unsigned char *data, function opus_packet_parse_impl (line 194) | int opus_packet_parse_impl(const unsigned char *data, opus_int32 len, function opus_packet_parse (line 349) | int opus_packet_parse(const unsigned char *data, opus_int32 len, FILE: ThirdParty/opus-1.2.1/src/opus_compare.c function read_pcm16 (line 54) | static size_t read_pcm16(float **_samples,FILE *_fin,int _nchannels){ function band_energy (line 88) | static void band_energy(float *_out,float *_ps,const int *_bands,int _nb... function main (line 165) | int main(int _argc,const char **_argv){ FILE: ThirdParty/opus-1.2.1/src/opus_decoder.c type OpusDecoder (line 55) | struct OpusDecoder { function opus_decoder_get_size (line 82) | int opus_decoder_get_size(int channels) function opus_decoder_init (line 96) | int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) function OpusDecoder (line 139) | OpusDecoder *opus_decoder_create(opus_int32 Fs, int channels, int *error) function smooth_fade (line 168) | static void smooth_fade(const opus_val16 *in1, const opus_val16 *in2, function opus_packet_get_mode (line 185) | static int opus_packet_get_mode(const unsigned char *data) function opus_decode_frame (line 200) | static int opus_decode_frame(OpusDecoder *st, const unsigned char *data, function opus_decode_native (line 598) | int opus_decode_native(OpusDecoder *st, const unsigned char *data, function opus_decode (line 713) | int opus_decode(OpusDecoder *st, const unsigned char *data, function opus_decode_float (line 722) | int opus_decode_float(OpusDecoder *st, const unsigned char *data, function opus_decode (line 758) | int opus_decode(OpusDecoder *st, const unsigned char *data, function opus_decode_float (line 792) | int opus_decode_float(OpusDecoder *st, const unsigned char *data, function opus_decoder_ctl (line 802) | int opus_decoder_ctl(OpusDecoder *st, int request, ...) function opus_decoder_destroy (line 935) | void opus_decoder_destroy(OpusDecoder *st) function opus_packet_get_bandwidth (line 941) | int opus_packet_get_bandwidth(const unsigned char *data) function opus_packet_get_nb_channels (line 959) | int opus_packet_get_nb_channels(const unsigned char *data) function opus_packet_get_nb_frames (line 964) | int opus_packet_get_nb_frames(const unsigned char packet[], opus_int32 len) function opus_packet_get_nb_samples (line 980) | int opus_packet_get_nb_samples(const unsigned char packet[], opus_int32 ... function opus_decoder_get_nb_samples (line 997) | int opus_decoder_get_nb_samples(const OpusDecoder *dec, FILE: ThirdParty/opus-1.2.1/src/opus_demo.c function print_usage (line 45) | void print_usage( char* argv[] ) function int_to_char (line 68) | static void int_to_char(opus_uint32 i, unsigned char ch[4]) function opus_uint32 (line 76) | static opus_uint32 char_to_int(unsigned char ch[4]) function check_encoder_option (line 82) | static void check_encoder_option(int decode_only, const char *opt) function OpusEncoder (line 200) | static OpusEncoder *ms_opus_encoder_create(opus_int32 Fs, int channels, ... function OpusDecoder (line 206) | static OpusDecoder *ms_opus_decoder_create(opus_int32 Fs, int channels, ... function main (line 217) | int main(int argc, char *argv[]) FILE: ThirdParty/opus-1.2.1/src/opus_encoder.c type StereoWidthState (line 60) | typedef struct { type OpusEncoder (line 66) | struct OpusEncoder { function opus_encoder_get_size (line 168) | int opus_encoder_get_size(int channels) function opus_encoder_init (line 182) | int opus_encoder_init(OpusEncoder* st, opus_int32 Fs, int channels, int ... function gen_toc (line 273) | static unsigned char gen_toc(int mode, int framerate, int bandwidth, int... function silk_biquad_float (line 306) | static void silk_biquad_float( function hp_cutoff (line 345) | static void hp_cutoff(const opus_val16 *in, opus_int32 cutoff_Hz, opus_v... function dc_reject (line 383) | static void dc_reject(const opus_val16 *in, opus_int32 cutoff_Hz, opus_v... function dc_reject (line 408) | static void dc_reject(const opus_val16 *in, opus_int32 cutoff_Hz, opus_v... function stereo_fade (line 465) | static void stereo_fade(const opus_val16 *in, opus_val16 *out, opus_val1... function gain_fade (line 497) | static void gain_fade(const opus_val16 *in, opus_val16 *out, opus_val16 ... function OpusEncoder (line 536) | OpusEncoder *opus_encoder_create(opus_int32 Fs, int channels, int applic... function opus_int32 (line 566) | static opus_int32 user_bitrate_to_bitrate(OpusEncoder *st, int frame_siz... function downmix_float (line 584) | void downmix_float(const void *_x, opus_val32 *y, int subframe, int offs... function downmix_int (line 608) | void downmix_int(const void *_x, opus_val32 *y, int subframe, int offset... function opus_int32 (line 631) | opus_int32 frame_size_select(opus_int32 frame_size, int variable_duratio... function opus_val16 (line 656) | opus_val16 compute_stereo_width(const opus_val16 *pcm, int frame_size, o... function decide_fec (line 732) | static int decide_fec(int useInBandFEC, int PacketLoss_perc, int last_fe... function compute_silk_rate_for_hybrid (line 765) | static int compute_silk_rate_for_hybrid(int rate, int bandwidth, int fra... function opus_int32 (line 813) | static opus_int32 compute_equiv_rate(opus_int32 bitrate, int channels, function is_digital_silence (line 847) | static int is_digital_silence(const opus_val16* pcm, int frame_size, int... function opus_val32 (line 867) | static opus_val32 compute_frame_energy(const opus_val16 *pcm, int frame_... function opus_val32 (line 894) | static opus_val32 compute_frame_energy(const opus_val16 *pcm, int frame_... function decide_dtx_mode (line 902) | static int decide_dtx_mode(float activity_probability, /* probability... function opus_int32 (line 947) | static opus_int32 encode_multiframe_packet(OpusEncoder *st, function compute_redundancy_bytes (line 1046) | static int compute_redundancy_bytes(opus_int32 max_data_bytes, opus_int3... function opus_int32 (line 2174) | opus_int32 opus_encode_float(OpusEncoder *st, const float *pcm, int anal... function opus_int32 (line 2199) | opus_int32 opus_encode(OpusEncoder *st, const opus_int16 *pcm, int analy... function opus_int32 (line 2209) | opus_int32 opus_encode(OpusEncoder *st, const opus_int16 *pcm, int analy... function opus_int32 (line 2232) | opus_int32 opus_encode_float(OpusEncoder *st, const float *pcm, int anal... function opus_encoder_ctl (line 2243) | int opus_encoder_ctl(OpusEncoder *st, int request, ...) function opus_encoder_destroy (line 2728) | void opus_encoder_destroy(OpusEncoder *st) FILE: ThirdParty/opus-1.2.1/src/opus_multistream.c function validate_layout (line 41) | int validate_layout(const ChannelLayout *layout) function get_left_channel (line 57) | int get_left_channel(const ChannelLayout *layout, int stream_id, int prev) function get_right_channel (line 69) | int get_right_channel(const ChannelLayout *layout, int stream_id, int prev) function get_mono_channel (line 81) | int get_mono_channel(const ChannelLayout *layout, int stream_id, int prev) FILE: ThirdParty/opus-1.2.1/src/opus_multistream_decoder.c type OpusMSDecoder (line 40) | struct OpusMSDecoder { function opus_int32 (line 50) | opus_int32 opus_multistream_decoder_get_size(int nb_streams, int nb_coup... function opus_multistream_decoder_init (line 63) | int opus_multistream_decoder_init( function OpusMSDecoder (line 110) | OpusMSDecoder *opus_multistream_decoder_create( function opus_multistream_packet_validate (line 155) | static int opus_multistream_packet_validate(const unsigned char *data, function opus_multistream_decode_native (line 184) | static int opus_multistream_decode_native( function opus_copy_channel_out_float (line 306) | static void opus_copy_channel_out_float( function opus_copy_channel_out_short (line 335) | static void opus_copy_channel_out_short( function opus_multistream_decode (line 366) | int opus_multistream_decode( function opus_multistream_decode_float (line 380) | int opus_multistream_decode_float(OpusMSDecoder *st, const unsigned char... function opus_multistream_decode (line 390) | int opus_multistream_decode(OpusMSDecoder *st, const unsigned char *data, function opus_multistream_decode_float (line 397) | int opus_multistream_decode_float( function opus_multistream_decoder_ctl (line 411) | int opus_multistream_decoder_ctl(OpusMSDecoder *st, int request, ...) function opus_multistream_decoder_destroy (line 537) | void opus_multistream_decoder_destroy(OpusMSDecoder *st) FILE: ThirdParty/opus-1.2.1/src/opus_multistream_encoder.c type VorbisLayout (line 46) | typedef struct { type MappingType (line 73) | typedef enum { type OpusMSEncoder (line 82) | struct OpusMSEncoder { function opus_val32 (line 95) | static opus_val32 *ms_get_preemph_mem(OpusMSEncoder *st) function opus_val32 (line 115) | static opus_val32 *ms_get_window_mem(OpusMSEncoder *st) function validate_ambisonics (line 136) | static int validate_ambisonics(int nb_channels, int *nb_streams, int *nb... function validate_encoder_layout (line 158) | static int validate_encoder_layout(const ChannelLayout *layout) function channel_pos (line 177) | static void channel_pos(int channels, int pos[8]) function opus_val16 (line 218) | static opus_val16 logSum(opus_val16 a, opus_val16 b) function opus_val16 (line 249) | opus_val16 logSum(opus_val16 a, opus_val16 b) function surround_analysis (line 255) | void surround_analysis(const CELTMode *celt_mode, const void *pcm, opus_... function opus_int32 (line 407) | opus_int32 opus_multistream_encoder_get_size(int nb_streams, int nb_coup... function opus_int32 (line 420) | opus_int32 opus_multistream_surround_encoder_get_size(int channels, int ... function opus_multistream_encoder_init_impl (line 462) | static int opus_multistream_encoder_init_impl( function opus_multistream_encoder_init (line 532) | int opus_multistream_encoder_init( function opus_multistream_surround_encoder_init (line 547) | int opus_multistream_surround_encoder_init( function OpusMSEncoder (line 624) | OpusMSEncoder *opus_multistream_encoder_create( function OpusMSEncoder (line 661) | OpusMSEncoder *opus_multistream_surround_encoder_create( function surround_rate_allocation (line 706) | static void surround_rate_allocation( function ambisonics_rate_allocation (line 776) | static void ambisonics_rate_allocation( function opus_int32 (line 854) | static opus_int32 rate_allocation( function opus_multistream_encode_native (line 887) | static int opus_multistream_encode_native function opus_copy_channel_in_float (line 1102) | static void opus_copy_channel_in_float( function opus_copy_channel_in_short (line 1123) | static void opus_copy_channel_in_short( function opus_multistream_encode (line 1145) | int opus_multistream_encode( function opus_multistream_encode_float (line 1158) | int opus_multistream_encode_float( function opus_multistream_encode_float (line 1173) | int opus_multistream_encode_float function opus_multistream_encode (line 1186) | int opus_multistream_encode( function opus_multistream_encoder_ctl (line 1199) | int opus_multistream_encoder_ctl(OpusMSEncoder *st, int request, ...) function opus_multistream_encoder_destroy (line 1403) | void opus_multistream_encoder_destroy(OpusMSEncoder *st) FILE: ThirdParty/opus-1.2.1/src/opus_private.h type OpusRepacketizer (line 38) | struct OpusRepacketizer { type ChannelLayout (line 46) | typedef struct ChannelLayout { function OPUS_INLINE (line 105) | static OPUS_INLINE int align(int i) FILE: ThirdParty/opus-1.2.1/src/repacketizer.c function opus_repacketizer_get_size (line 37) | int opus_repacketizer_get_size(void) function OpusRepacketizer (line 42) | OpusRepacketizer *opus_repacketizer_init(OpusRepacketizer *rp) function OpusRepacketizer (line 48) | OpusRepacketizer *opus_repacketizer_create(void) function opus_repacketizer_destroy (line 56) | void opus_repacketizer_destroy(OpusRepacketizer *rp) function opus_repacketizer_cat_impl (line 61) | static int opus_repacketizer_cat_impl(OpusRepacketizer *rp, const unsign... function opus_repacketizer_cat (line 92) | int opus_repacketizer_cat(OpusRepacketizer *rp, const unsigned char *dat... function opus_repacketizer_get_nb_frames (line 97) | int opus_repacketizer_get_nb_frames(OpusRepacketizer *rp) function opus_int32 (line 102) | opus_int32 opus_repacketizer_out_range_impl(OpusRepacketizer *rp, int be... function opus_int32 (line 229) | opus_int32 opus_repacketizer_out_range(OpusRepacketizer *rp, int begin, ... function opus_int32 (line 234) | opus_int32 opus_repacketizer_out(OpusRepacketizer *rp, unsigned char *da... function opus_packet_pad (line 239) | int opus_packet_pad(unsigned char *data, opus_int32 len, opus_int32 new_... function opus_int32 (line 262) | opus_int32 opus_packet_unpad(unsigned char *data, opus_int32 len) function opus_multistream_packet_pad (line 277) | int opus_multistream_packet_pad(unsigned char *data, opus_int32 len, opu... function opus_int32 (line 308) | opus_int32 opus_multistream_packet_unpad(unsigned char *data, opus_int32... FILE: ThirdParty/opus-1.2.1/src/repacketizer_demo.c function usage (line 39) | void usage(char *argv0) function int_to_char (line 44) | static void int_to_char(opus_uint32 i, unsigned char ch[4]) function opus_uint32 (line 52) | static opus_uint32 char_to_int(unsigned char ch[4]) function main (line 58) | int main(int argc, char *argv[]) FILE: ThirdParty/opusfile-0.9/include/opusfile.h type OpusHead (line 128) | typedef struct OpusHead OpusHead; type OpusTags (line 129) | typedef struct OpusTags OpusTags; type OpusPictureTag (line 130) | typedef struct OpusPictureTag OpusPictureTag; type OpusServerInfo (line 131) | typedef struct OpusServerInfo OpusServerInfo; type OpusFileCallbacks (line 132) | typedef struct OpusFileCallbacks OpusFileCallbacks; type OggOpusFile (line 133) | typedef struct OggOpusFile OggOpusFile; type OpusHead (line 215) | struct OpusHead{ type OpusTags (line 301) | struct OpusTags{ type OpusPictureTag (line 331) | struct OpusPictureTag{ type OpusServerInfo (line 712) | struct OpusServerInfo{ type opus_int64 (line 884) | typedef opus_int64 (*op_tell_func)(void *_stream); type OpusFileCallbacks (line 901) | struct OpusFileCallbacks{ FILE: ThirdParty/opusfile-0.9/src/http.c type OpusParsedURL (line 50) | typedef struct OpusParsedURL OpusParsedURL; type OpusStringBuf (line 51) | typedef struct OpusStringBuf OpusStringBuf; type OpusHTTPConn (line 52) | typedef struct OpusHTTPConn OpusHTTPConn; type OpusHTTPStream (line 53) | typedef struct OpusHTTPStream OpusHTTPStream; function op_validate_url_escapes (line 114) | static int op_validate_url_escapes(const char *_s){ function op_hex_value (line 135) | static int op_hex_value(int _c){ type SOCKET (line 220) | typedef SOCKET op_sock; type pollfd (line 250) | struct pollfd{ type nfds_t (line 261) | typedef unsigned long nfds_t; function op_poll_win32 (line 266) | static int op_poll_win32(struct pollfd *_fds,nfds_t _nfds,int _timeout){ type op_sock (line 350) | typedef int op_sock; type OpusParsedURL (line 438) | struct OpusParsedURL{ function op_parse_url_impl (line 463) | static int op_parse_url_impl(OpusParsedURL *_dst,const char *_src){ function op_parsed_url_init (line 592) | static void op_parsed_url_init(OpusParsedURL *_url){ function op_parsed_url_clear (line 596) | static void op_parsed_url_clear(OpusParsedURL *_url){ function op_parse_url (line 604) | static int op_parse_url(OpusParsedURL *_dst,const char *_src){ type OpusStringBuf (line 617) | struct OpusStringBuf{ function op_sb_init (line 623) | static void op_sb_init(OpusStringBuf *_sb){ function op_sb_clear (line 629) | static void op_sb_clear(OpusStringBuf *_sb){ function op_sb_ensure_capacity (line 635) | static int op_sb_ensure_capacity(OpusStringBuf *_sb,int _capacity){ function op_sb_grow (line 654) | static int op_sb_grow(OpusStringBuf *_sb,int _max_size){ function op_sb_append (line 668) | static int op_sb_append(OpusStringBuf *_sb,const char *_s,int _len){ function op_sb_append_string (line 684) | static int op_sb_append_string(OpusStringBuf *_sb,const char *_s){ function op_sb_append_port (line 691) | static int op_sb_append_port(OpusStringBuf *_sb,unsigned _port){ function op_sb_append_nonnegative_int64 (line 698) | static int op_sb_append_nonnegative_int64(OpusStringBuf *_sb,opus_int64 ... type addrinfo (line 729) | struct addrinfo type addrinfo (line 730) | struct addrinfo type addrinfo (line 731) | struct addrinfo function op_sock_set_nonblocking (line 744) | static int op_sock_set_nonblocking(op_sock _fd,int _nonblocking){ function op_sock_set_tcp_nodelay (line 761) | static void op_sock_set_tcp_nodelay(op_sock _fd,int _nodelay){ function op_init_winsock (line 776) | static void op_init_winsock(){ type OpusHTTPConn (line 785) | struct OpusHTTPConn{ function op_http_conn_init (line 815) | static void op_http_conn_init(OpusHTTPConn *_conn){ function op_http_conn_clear (line 822) | static void op_http_conn_clear(OpusHTTPConn *_conn){ type OpusHTTPStream (line 829) | struct OpusHTTPStream{ function op_http_stream_init (line 885) | static void op_http_stream_init(OpusHTTPStream *_stream){ function op_http_conn_close (line 910) | static void op_http_conn_close(OpusHTTPStream *_stream,OpusHTTPConn *_conn, function op_http_stream_clear (line 932) | static void op_http_stream_clear(OpusHTTPStream *_stream){ function op_http_conn_write_fully (line 945) | static int op_http_conn_write_fully(OpusHTTPConn *_conn, function op_http_conn_estimate_available (line 989) | static int op_http_conn_estimate_available(OpusHTTPConn *_conn){ function opus_int32 (line 1007) | static opus_int32 op_time_diff_ms(const struct timeb *_end, function op_http_conn_read_rate_update (line 1019) | static void op_http_conn_read_rate_update(OpusHTTPConn *_conn){ function op_http_conn_read (line 1043) | static int op_http_conn_read(OpusHTTPConn *_conn, function op_http_conn_peek (line 1119) | static int op_http_conn_peek(OpusHTTPConn *_conn,char *_buf,int _buf_size){ function op_http_conn_read_response (line 1160) | static int op_http_conn_read_response(OpusHTTPConn *_conn, function op_http_lwsspn (line 1244) | static int op_http_lwsspn(const char *_s){ function op_http_get_next_header (line 1321) | static int op_http_get_next_header(char **_header,char **_cdr,char **_s){ function opus_int64 (line 1363) | static opus_int64 op_http_parse_nonnegative_int64(const char **_next, function opus_int64 (line 1384) | static opus_int64 op_http_parse_content_length(const char *_cdr){ function op_http_parse_content_range (line 1392) | static int op_http_parse_content_range(opus_int64 *_first,opus_int64 *_l... function op_http_parse_connection (line 1440) | static int op_http_parse_connection(char *_cdr){ function op_do_ssl_step (line 1467) | static int op_do_ssl_step(SSL *_ssl_conn,op_sock _fd,op_ssl_step_func _s... function op_bio_retry_write (line 1490) | static int op_bio_retry_write(BIO *_b,const char *_buf,int _num){ function op_bio_retry_read (line 1498) | static int op_bio_retry_read(BIO *_b,char *_buf,int _num){ function op_bio_retry_puts (line 1506) | static int op_bio_retry_puts(BIO *_b,const char *_str){ function op_bio_retry_ctrl (line 1510) | static long op_bio_retry_ctrl(BIO *_b,int _cmd,long _num,void *_ptr){ function op_bio_retry_new (line 1539) | static int op_bio_retry_new(BIO *_b){ function op_bio_retry_free (line 1548) | static int op_bio_retry_free(BIO *_b){ function op_http_conn_establish_tunnel (line 1571) | static int op_http_conn_establish_tunnel(OpusHTTPStream *_stream, type addrinfo (line 1628) | struct addrinfo type addrinfo (line 1629) | struct addrinfo type addrinfo (line 1630) | struct addrinfo function op_http_hostname_match (line 1642) | static int op_http_hostname_match(const char *_host,size_t _host_len, function op_http_verify_hostname (line 1716) | static int op_http_verify_hostname(OpusHTTPStream *_stream,SSL *_ssl_conn){ function op_http_conn_start_tls (line 1882) | static int op_http_conn_start_tls(OpusHTTPStream *_stream,OpusHTTPConn *... function op_sock_connect_next (line 1997) | static int op_sock_connect_next(op_sock _fd, function op_http_connect_impl (line 2017) | static int op_http_connect_impl(OpusHTTPStream *_stream,OpusHTTPConn *_c... function op_http_connect (line 2149) | static int op_http_connect(OpusHTTPStream *_stream,OpusHTTPConn *_conn, function op_sb_append_basic_auth_header (line 2221) | static int op_sb_append_basic_auth_header(OpusStringBuf *_sb, function op_http_allow_pipelining (line 2254) | static int op_http_allow_pipelining(const char *_server){ function op_http_stream_open (line 2285) | static int op_http_stream_open(OpusHTTPStream *_stream,const char *_url, function op_http_conn_send_request (line 2690) | static int op_http_conn_send_request(OpusHTTPStream *_stream, function op_http_conn_handle_response (line 2748) | static int op_http_conn_handle_response(OpusHTTPStream *_stream, function op_http_conn_open_pos (line 2853) | static int op_http_conn_open_pos(OpusHTTPStream *_stream, function op_http_conn_read_body (line 2888) | static int op_http_conn_read_body(OpusHTTPStream *_stream, function op_http_stream_read (line 3004) | static int op_http_stream_read(void *_stream, function op_http_conn_read_ahead (line 3045) | static int op_http_conn_read_ahead(OpusHTTPStream *_stream, function op_http_stream_seek (line 3117) | static int op_http_stream_seek(void *_stream,opus_int64 _offset,int _whe... function opus_int64 (line 3303) | static opus_int64 op_http_stream_tell(void *_stream){ function op_http_stream_close (line 3311) | static int op_http_stream_close(void *_stream){ function opus_server_info_init (line 3329) | void opus_server_info_init(OpusServerInfo *_info){ function opus_server_info_clear (line 3341) | void opus_server_info_clear(OpusServerInfo *_info){ function OggOpusFile (line 3492) | OggOpusFile *op_vopen_url(const char *_url,int *_error,va_list _ap){ function OggOpusFile (line 3513) | OggOpusFile *op_open_url(const char *_url,int *_error,...){ function OggOpusFile (line 3522) | OggOpusFile *op_vtest_url(const char *_url,int *_error,va_list _ap){ function OggOpusFile (line 3543) | OggOpusFile *op_test_url(const char *_url,int *_error,...){ FILE: ThirdParty/opusfile-0.9/src/info.c function op_parse_uint16le (line 20) | static unsigned op_parse_uint16le(const unsigned char *_data){ function op_parse_int16le (line 24) | static int op_parse_int16le(const unsigned char *_data){ function opus_uint32 (line 30) | static opus_uint32 op_parse_uint32le(const unsigned char *_data){ function opus_uint32 (line 35) | static opus_uint32 op_parse_uint32be(const unsigned char *_data){ function opus_head_parse (line 40) | int opus_head_parse(OpusHead *_head,const unsigned char *_data,size_t _l... function opus_tags_init (line 90) | void opus_tags_init(OpusTags *_tags){ function opus_tags_clear (line 94) | void opus_tags_clear(OpusTags *_tags){ function op_tags_ensure_capacity (line 106) | static int op_tags_ensure_capacity(OpusTags *_tags,size_t _ncomments){ function opus_tags_parse_impl (line 159) | static int opus_tags_parse_impl(OpusTags *_tags, function opus_tags_parse (line 228) | int opus_tags_parse(OpusTags *_tags,const unsigned char *_data,size_t _l... function opus_tags_copy_impl (line 245) | static int opus_tags_copy_impl(OpusTags *_dst,const OpusTags *_src){ function opus_tags_copy (line 278) | int opus_tags_copy(OpusTags *_dst,const OpusTags *_src){ function opus_tags_add (line 288) | int opus_tags_add(OpusTags *_tags,const char *_tag,const char *_value){ function opus_tags_add_comment (line 313) | int opus_tags_add_comment(OpusTags *_tags,const char *_comment){ function opus_tags_set_binary_suffix (line 330) | int opus_tags_set_binary_suffix(OpusTags *_tags, function opus_tagcompare (line 348) | int opus_tagcompare(const char *_tag_name,const char *_comment){ function opus_tagncompare (line 355) | int opus_tagncompare(const char *_tag_name,int _tag_len,const char *_com... function opus_tags_query_count (line 383) | int opus_tags_query_count(const OpusTags *_tags,const char *_tag){ function opus_tags_get_gain (line 411) | static int opus_tags_get_gain(const OpusTags *_tags,int *_gain_q8, function opus_tags_get_album_gain (line 448) | int opus_tags_get_album_gain(const OpusTags *_tags,int *_gain_q8){ function opus_tags_get_track_gain (line 452) | int opus_tags_get_track_gain(const OpusTags *_tags,int *_gain_q8){ function op_is_jpeg (line 456) | static int op_is_jpeg(const unsigned char *_buf,size_t _buf_sz){ function op_extract_jpeg_params (line 464) | static void op_extract_jpeg_params(const unsigned char *_buf,size_t _buf... function op_is_png (line 503) | static int op_is_png(const unsigned char *_buf,size_t _buf_sz){ function op_extract_png_params (line 510) | static void op_extract_png_params(const unsigned char *_buf,size_t _buf_sz, function op_is_gif (line 550) | static int op_is_gif(const unsigned char *_buf,size_t _buf_sz){ function op_extract_gif_params (line 557) | static void op_extract_gif_params(const unsigned char *_buf,size_t _buf_sz, function opus_picture_tag_parse_impl (line 574) | static int opus_picture_tag_parse_impl(OpusPictureTag *_pic,const char *... function opus_picture_tag_parse (line 735) | int opus_picture_tag_parse(OpusPictureTag *_pic,const char *_tag){ function opus_picture_tag_init (line 765) | void opus_picture_tag_init(OpusPictureTag *_pic){ function opus_picture_tag_clear (line 769) | void opus_picture_tag_clear(OpusPictureTag *_pic){ FILE: ThirdParty/opusfile-0.9/src/internal.c function op_fatal_impl (line 19) | void op_fatal_impl(const char *_str,const char *_file,int _line){ function op_strncasecmp (line 28) | int op_strncasecmp(const char *_a,const char *_b,int _n){ FILE: ThirdParty/opusfile-0.9/src/internal.h type OggOpusLink (line 34) | typedef struct OggOpusLink OggOpusLink; type opus_int16 (line 38) | typedef opus_int16 op_sample; type op_sample (line 42) | typedef float op_sample; type OggOpusLink (line 128) | struct OggOpusLink{ type OggOpusFile (line 155) | struct OggOpusFile{ FILE: ThirdParty/opusfile-0.9/src/opusfile.c function op_test (line 73) | int op_test(OpusHead *_head, function op_get_data (line 146) | static int op_get_data(OggOpusFile *_of,int _nbytes){ function op_seek_helper (line 158) | static int op_seek_helper(OggOpusFile *_of,opus_int64 _offset){ function opus_int64 (line 171) | static opus_int64 op_position(const OggOpusFile *_of){ function opus_int64 (line 188) | static opus_int64 op_get_next_page(OggOpusFile *_of,ogg_page *_og, function op_add_serialno (line 230) | static int op_add_serialno(const ogg_page *_og, function op_lookup_serialno (line 258) | static int op_lookup_serialno(ogg_uint32_t _s, function op_lookup_page_serialno (line 265) | static int op_lookup_page_serialno(const ogg_page *_og, type OpusSeekRecord (line 270) | typedef struct OpusSeekRecord OpusSeekRecord; type OpusSeekRecord (line 279) | struct OpusSeekRecord{ function op_get_prev_page_serial (line 320) | static int op_get_prev_page_serial(OggOpusFile *_of,OpusSeekRecord *_sr, function opus_int64 (line 408) | static opus_int64 op_get_last_page(OggOpusFile *_of,ogg_int64_t *_gp, function op_fetch_headers_impl (line 477) | static int op_fetch_headers_impl(OggOpusFile *_of,OpusHead *_head, function op_fetch_headers (line 569) | static int op_fetch_headers(OggOpusFile *_of,OpusHead *_head, function op_granpos_add (line 630) | static int op_granpos_add(ogg_int64_t *_dst_gp,ogg_int64_t _src_gp, function op_granpos_diff (line 677) | static int op_granpos_diff(ogg_int64_t *_delta, function op_granpos_cmp (line 719) | static int op_granpos_cmp(ogg_int64_t _gp_a,ogg_int64_t _gp_b){ function op_get_packet_duration (line 739) | static int op_get_packet_duration(const unsigned char *_data,int _len){ function ogg_int64_t (line 753) | ogg_int64_t opus_granule_sample(const OpusHead *_head,ogg_int64_t _gp){ function opus_int32 (line 765) | static opus_int32 op_collect_audio_packets(OggOpusFile *_of, function op_find_initial_pcm_offset (line 829) | static int op_find_initial_pcm_offset(OggOpusFile *_of, function op_find_final_pcm_offset (line 972) | static int op_find_final_pcm_offset(OggOpusFile *_of, function opus_int64 (line 1009) | static opus_int64 op_rescale64(opus_int64 _x,opus_int64 _from,opus_int64... function opus_int64 (line 1043) | static opus_int64 op_predict_link_start(const OpusSeekRecord *_sr,int _nsr, function op_bisect_forward_serialno (line 1106) | static int op_bisect_forward_serialno(OggOpusFile *_of, function op_update_gain (line 1302) | static void op_update_gain(OggOpusFile *_of){ function op_make_decode_ready (line 1346) | static int op_make_decode_ready(OggOpusFile *_of){ function op_open_seekable2_impl (line 1390) | static int op_open_seekable2_impl(OggOpusFile *_of){ function op_open_seekable2 (line 1417) | static int op_open_seekable2(OggOpusFile *_of){ function op_decode_clear (line 1467) | static void op_decode_clear(OggOpusFile *_of){ function op_clear (line 1481) | static void op_clear(OggOpusFile *_of){ function op_open1 (line 1504) | static int op_open1(OggOpusFile *_of, function op_open2 (line 1578) | static int op_open2(OggOpusFile *_of){ function OggOpusFile (line 1599) | OggOpusFile *op_test_callbacks(void *_stream,const OpusFileCallbacks *_cb, function OggOpusFile (line 1620) | OggOpusFile *op_open_callbacks(void *_stream,const OpusFileCallbacks *_cb, function OggOpusFile (line 1636) | static OggOpusFile *op_open_close_on_failure(void *_stream, function OggOpusFile (line 1648) | OggOpusFile *op_open_file(const char *_path,int *_error){ function OggOpusFile (line 1653) | OggOpusFile *op_open_memory(const unsigned char *_data,size_t _size, function OggOpusFile (line 1662) | static OggOpusFile *op_test_close_on_failure(void *_stream, function OggOpusFile (line 1674) | OggOpusFile *op_test_file(const char *_path,int *_error){ function OggOpusFile (line 1679) | OggOpusFile *op_test_memory(const unsigned char *_data,size_t _size, function op_test_open (line 1686) | int op_test_open(OggOpusFile *_of){ function op_free (line 1696) | void op_free(OggOpusFile *_of){ function op_seekable (line 1703) | int op_seekable(const OggOpusFile *_of){ function op_link_count (line 1707) | int op_link_count(const OggOpusFile *_of){ function opus_uint32 (line 1711) | opus_uint32 op_serialno(const OggOpusFile *_of,int _li){ function op_channel_count (line 1717) | int op_channel_count(const OggOpusFile *_of,int _li){ function opus_int64 (line 1721) | opus_int64 op_raw_total(const OggOpusFile *_of,int _li){ function ogg_int64_t (line 1732) | ogg_int64_t op_pcm_total(const OggOpusFile *_of,int _li){ function OpusHead (line 1757) | const OpusHead *op_head(const OggOpusFile *_of,int _li){ function OpusTags (line 1763) | const OpusTags *op_tags(const OggOpusFile *_of,int _li){ function op_current_link (line 1775) | int op_current_link(const OggOpusFile *_of){ function opus_int32 (line 1782) | static opus_int32 op_calc_bitrate(opus_int64 _bytes,ogg_int64_t _samples){ function opus_int32 (line 1804) | opus_int32 op_bitrate(const OggOpusFile *_of,int _li){ function opus_int32 (line 1812) | opus_int32 op_bitrate_instant(OggOpusFile *_of){ function op_get_link_from_serialno (line 1827) | static int op_get_link_from_serialno(const OggOpusFile *_of,int _cur_link, function op_fetch_and_process_page (line 1859) | static int op_fetch_and_process_page(OggOpusFile *_of, function op_raw_seek (line 2146) | int op_raw_seek(OggOpusFile *_of,opus_int64 _pos){ function ogg_int64_t (line 2175) | static ogg_int64_t op_get_granulepos(const OggOpusFile *_of, function op_page_continues (line 2218) | static int op_page_continues(const ogg_page *_og){ function op_buffer_continued_data (line 2229) | static void op_buffer_continued_data(OggOpusFile *_of,ogg_page *_og){ function op_pcm_seek_page (line 2253) | static int op_pcm_seek_page(OggOpusFile *_of, function op_pcm_seek (line 2573) | int op_pcm_seek(OggOpusFile *_of,ogg_int64_t _pcm_offset){ function opus_int64 (line 2662) | opus_int64 op_raw_tell(const OggOpusFile *_of){ function ogg_int64_t (line 2670) | static ogg_int64_t op_get_pcm_offset(const OggOpusFile *_of, function ogg_int64_t (line 2698) | ogg_int64_t op_pcm_tell(const OggOpusFile *_of){ function op_set_decode_callback (line 2714) | void op_set_decode_callback(OggOpusFile *_of, function op_set_gain_offset (line 2720) | int op_set_gain_offset(OggOpusFile *_of, function op_set_dither_enabled (line 2735) | void op_set_dither_enabled(OggOpusFile *_of,int _enabled){ function op_init_buffer (line 2745) | static int op_init_buffer(OggOpusFile *_of){ function op_decode (line 2766) | static int op_decode(OggOpusFile *_of,op_sample *_pcm, function op_read_native (line 2800) | static int op_read_native(OggOpusFile *_of, function op_filter_read_native (line 2920) | static int op_filter_read_native(OggOpusFile *_of,void *_dst,int _dst_sz, function op_read (line 3021) | int op_read(OggOpusFile *_of,opus_int16 *_pcm,int _buf_size,int *_li){ function op_stereo_filter (line 3025) | static int op_stereo_filter(OggOpusFile *_of,void *_dst,int _dst_sz, function op_read_stereo (line 3058) | int op_read_stereo(OggOpusFile *_of,opus_int16 *_pcm,int _buf_size){ function op_short2float_filter (line 3064) | static int op_short2float_filter(OggOpusFile *_of,void *_dst,int _dst_sz, function op_read_float (line 3076) | int op_read_float(OggOpusFile *_of,float *_pcm,int _buf_size,int *_li){ function op_short2float_stereo_filter (line 3080) | static int op_short2float_stereo_filter(OggOpusFile *_of, function op_read_float_stereo (line 3120) | int op_read_float_stereo(OggOpusFile *_of,float *_pcm,int _buf_size){ function opus_uint32 (line 3139) | static opus_uint32 op_rand(opus_uint32 _seed){ function op_float2short_filter (line 3177) | static int op_float2short_filter(OggOpusFile *_of,void *_dst,int _dst_sz, function op_read (line 3254) | int op_read(OggOpusFile *_of,opus_int16 *_pcm,int _buf_size,int *_li){ function op_read_float (line 3258) | int op_read_float(OggOpusFile *_of,float *_pcm,int _buf_size,int *_li){ function op_stereo_filter (line 3263) | static int op_stereo_filter(OggOpusFile *_of,void *_dst,int _dst_sz, function op_float2short_stereo_filter (line 3293) | static int op_float2short_stereo_filter(OggOpusFile *_of, function op_read_stereo (line 3313) | int op_read_stereo(OggOpusFile *_of,opus_int16 *_pcm,int _buf_size){ function op_read_float_stereo (line 3318) | int op_read_float_stereo(OggOpusFile *_of,float *_pcm,int _buf_size){ FILE: ThirdParty/opusfile-0.9/src/stream.c type OpusMemStream (line 31) | typedef struct OpusMemStream OpusMemStream; type OpusMemStream (line 38) | struct OpusMemStream{ function op_fread (line 52) | static int op_fread(void *_stream,unsigned char *_ptr,int _buf_size){ function op_fseek (line 64) | static int op_fseek(void *_stream,opus_int64 _offset,int _whence){ function opus_int64 (line 106) | static opus_int64 op_ftell(void *_stream){ function wchar_t (line 139) | static wchar_t *op_utf8_to_utf16(const char *_src){ function op_mem_read (line 284) | static int op_mem_read(void *_stream,unsigned char *_ptr,int _buf_size){ function op_mem_seek (line 303) | static int op_mem_seek(void *_stream,opus_int64 _offset,int _whence){ function opus_int64 (line 334) | static opus_int64 op_mem_tell(void *_stream){ function op_mem_close (line 340) | static int op_mem_close(void *_stream){ FILE: ThirdParty/opusfile-0.9/src/wincerts.c function op_capi_new (line 36) | static int op_capi_new(X509_LOOKUP *_lu){ function op_capi_free (line 48) | static void op_capi_free(X509_LOOKUP *_lu){ function op_capi_retrieve_by_subject (line 58) | static int op_capi_retrieve_by_subject(X509_LOOKUP *_lu,int _type, function op_capi_get_by_subject (line 72) | static int op_capi_get_by_subject(X509_LOOKUP *_lu,int _type,X509_NAME *... function SSL_CTX_set_default_verify_paths_win32 (line 160) | int SSL_CTX_set_default_verify_paths_win32(SSL_CTX *_ssl_ctx){ FILE: ThirdParty/screen_capture_lite - Copy/ScreenCapture.h function namespace (line 21) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/SCCommon.h function namespace (line 7) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/ScreenCapture.h function namespace (line 21) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/ThreadManager.h function namespace (line 14) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/ios/CGFrameProcessor.h function namespace (line 5) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/ios/NSMouseProcessor.h function namespace (line 7) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/linux/X11FrameProcessor.h function namespace (line 8) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/linux/X11MouseProcessor.h function namespace (line 7) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/windows/DXFrameProcessor.h function namespace (line 15) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/windows/GDIFrameProcessor.h function namespace (line 7) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/windows/GDIHelpers.h function namespace (line 7) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/windows/GDIMouseProcessor.h function namespace (line 7) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/include/windows/GDIWindowProcessor.h function namespace (line 7) | namespace SL { FILE: ThirdParty/screen_capture_lite - Copy/src/SCCommon.cpp type SL (line 8) | namespace SL { type Screen_Capture (line 9) | namespace Screen_Capture { function SanitizeRects (line 11) | void SanitizeRects(std::vector &rects, const Image &img) function GetDifs (line 24) | std::vector GetDifs(const Image &oldimg, const Image &new... function Monitor (line 126) | Monitor CreateMonitor(int index, int id, int h, int w, int ox, int o... function Image (line 141) | Image Create(const ImageRect &imgrect, int pixelstride, int rowpaddi... function Index (line 150) | int Index(const Monitor &mointor) { return mointor.Index; } function Id (line 151) | int Id(const Monitor &mointor) { return mointor.Id; } function OffsetX (line 152) | int OffsetX(const Monitor &mointor) { return mointor.OffsetX; } function OffsetY (line 153) | int OffsetY(const Monitor &mointor) { return mointor.OffsetY; } function Height (line 155) | int Height(const Monitor &mointor) { return mointor.Height; } function Width (line 156) | int Width(const Monitor &mointor) { return mointor.Width; } function Height (line 157) | int Height(const ImageRect &rect) { return rect.bottom - rect.top; } function Width (line 158) | int Width(const ImageRect &rect) { return rect.right - rect.left; } function Height (line 159) | int Height(const Image &img) { return Height(img.Bounds); } function Width (line 160) | int Width(const Image &img) { return Width(img.Bounds); } function ImageRect (line 161) | const ImageRect &Rect(const Image &img) { return img.Bounds; } function RowStride (line 164) | int RowStride(const Image &img) { return img.Pixelstride * Width(img... function RowPadding (line 166) | int RowPadding(const Image &img) { return img.RowPadding; } FILE: ThirdParty/screen_capture_lite - Copy/src/ScreenCapture.cpp type SL (line 12) | namespace SL { type Screen_Capture (line 13) | namespace Screen_Capture { function Extract (line 15) | void Extract(const Image &img, unsigned char *dst, size_t dst_size) function ExtractAndConvertToRGBA (line 32) | void ExtractAndConvertToRGBA(const Image &img, unsigned char *dst, s... function ExtractAndConvertToRGB (line 49) | void ExtractAndConvertToRGB(const Image &img, unsigned char *dst, si... function ExtractAndConvertToRGB565 (line 65) | void ExtractAndConvertToRGB565(const Image &img, unsigned char *dst,... function isMonitorInsideBounds (line 84) | bool isMonitorInsideBounds(const std::vector &monitors, con... class ScreenCaptureManager (line 111) | class ScreenCaptureManager : public IScreenCaptureManager { method ScreenCaptureManager (line 120) | ScreenCaptureManager() method start (line 144) | void start() method setFrameChangeInterval (line 169) | virtual void setFrameChangeInterval(const std::shared_ptr ... method setMouseChangeInterval (line 174) | virtual void setMouseChangeInterval(const std::shared_ptr ... method pause (line 179) | virtual void pause() override { Thread_Data_->CommonData_.Paused =... method isPaused (line 180) | virtual bool isPaused() const override { return Thread_Data_->Comm... method resume (line 181) | virtual void resume() override { Thread_Data_->CommonData_.Paused ... class ScreenCaptureConfiguration (line 184) | class ScreenCaptureConfiguration : public ICaptureConfiguration start_capturing() o... class WindowCaptureConfiguration (line 217) | class WindowCaptureConfiguration : public ICaptureConfiguration start_capturing() o... function CreateCaptureConfiguration (line 250) | std::shared_ptr> Create... function CreateCaptureConfiguration (line 257) | std::shared_ptr> Create... FILE: ThirdParty/screen_capture_lite - Copy/src/ios/CGFrameProcessor.cpp type SL (line 6) | namespace SL { type Screen_Capture (line 7) | namespace Screen_Capture { function DUPL_RETURN (line 9) | DUPL_RETURN CGFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 17) | DUPL_RETURN CGFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 23) | DUPL_RETURN CGFrameProcessor::ProcessFrame(const Monitor &curentmoni... function DUPL_RETURN (line 78) | DUPL_RETURN CGFrameProcessor::ProcessFrame(const Window &window) FILE: ThirdParty/screen_capture_lite - Copy/src/ios/GetMonitors.cpp type SL (line 6) | namespace SL{ type Screen_Capture (line 7) | namespace Screen_Capture{ function GetMonitors (line 9) | std::vector GetMonitors() { FILE: ThirdParty/screen_capture_lite - Copy/src/ios/GetWindows.cpp type SL (line 9) | namespace SL type Screen_Capture (line 11) | namespace Screen_Capture function GetWindows (line 14) | std::vector GetWindows() FILE: ThirdParty/screen_capture_lite - Copy/src/ios/NSMouseProcessor.cpp type SL (line 5) | namespace SL { type Screen_Capture (line 6) | namespace Screen_Capture { function DUPL_RETURN (line 9) | DUPL_RETURN NSMouseProcessor::Init(std::shared_ptr data) { function DUPL_RETURN (line 19) | DUPL_RETURN NSMouseProcessor::ProcessFrame() FILE: ThirdParty/screen_capture_lite - Copy/src/ios/ThreadRunner.cpp type SL (line 6) | namespace SL{ type Screen_Capture (line 7) | namespace Screen_Capture{ function RunCaptureMouse (line 8) | void RunCaptureMouse(std::shared_ptr data) { function RunCaptureMonitor (line 11) | void RunCaptureMonitor(std::shared_ptr data, Monitor mo... function RunCaptureWindow (line 14) | void RunCaptureWindow(std::shared_ptr data, Window wind... FILE: ThirdParty/screen_capture_lite - Copy/src/linux/GetMonitors.cpp type SL (line 6) | namespace SL type Screen_Capture (line 8) | namespace Screen_Capture function GetMonitors (line 11) | std::vector GetMonitors() FILE: ThirdParty/screen_capture_lite - Copy/src/linux/GetWindows.cpp type SL (line 7) | namespace SL type Screen_Capture (line 9) | namespace Screen_Capture function AddWindow (line 12) | void AddWindow(Display* display, XID& window, std::vector& wnd) function GetWindows (line 31) | std::vector GetWindows() FILE: ThirdParty/screen_capture_lite - Copy/src/linux/ThreadRunner.cpp type SL (line 6) | namespace SL{ type Screen_Capture (line 7) | namespace Screen_Capture{ function RunCaptureMouse (line 8) | void RunCaptureMouse(std::shared_ptr data) { function RunCaptureMonitor (line 11) | void RunCaptureMonitor(std::shared_ptr data, Monitor mo... function RunCaptureWindow (line 14) | void RunCaptureWindow(std::shared_ptr data, Window wind... FILE: ThirdParty/screen_capture_lite - Copy/src/linux/X11FrameProcessor.cpp type SL (line 7) | namespace SL type Screen_Capture (line 9) | namespace Screen_Capture function DUPL_RETURN (line 31) | DUPL_RETURN X11FrameProcessor::Init(std::shared_ptr dat... function DUPL_RETURN (line 61) | DUPL_RETURN X11FrameProcessor::Init(std::shared_ptr dat... function DUPL_RETURN (line 92) | DUPL_RETURN X11FrameProcessor::ProcessFrame(const Monitor& curentmon... function DUPL_RETURN (line 118) | DUPL_RETURN X11FrameProcessor::ProcessFrame(Window& selectedwindow){ FILE: ThirdParty/screen_capture_lite - Copy/src/linux/X11MouseProcessor.cpp type SL (line 6) | namespace SL { type Screen_Capture (line 7) | namespace Screen_Capture { function DUPL_RETURN (line 21) | DUPL_RETURN X11MouseProcessor::Init(std::shared_ptr dat... function DUPL_RETURN (line 37) | DUPL_RETURN X11MouseProcessor::ProcessFrame() FILE: ThirdParty/screen_capture_lite - Copy/src/windows/DXFrameProcessor.cpp type SL (line 9) | namespace SL { type Screen_Capture (line 10) | namespace Screen_Capture { function DUPL_RETURN (line 12) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 13) | DUPL_RETURN DXFrameProcessor::ProcessFrame() { return DUPL_RETURN::D... type DX_RESOURCES (line 21) | struct DX_RESOURCES { type DUPLE_RESOURCES (line 25) | struct DUPLE_RESOURCES { function DUPL_RETURN (line 55) | DUPL_RETURN ProcessFailure(ID3D11Device *Device, LPCWSTR Str, LPCWST... function DUPL_RETURN (line 105) | DUPL_RETURN Initialize(DX_RESOURCES &data) function DUPL_RETURN (line 140) | DUPL_RETURN Initialize(DUPLE_RESOURCES &r, ID3D11Device *device, con... function RECT (line 182) | RECT ConvertRect(RECT Dirty, const DXGI_OUTPUT_DESC &DeskDesc) class AquireFrameRAII (line 225) | class AquireFrameRAII { method TryRelease (line 229) | void TryRelease() method AquireFrameRAII (line 241) | AquireFrameRAII(IDXGIOutputDuplication *dupl) : _DuplLock(dupl), A... method HRESULT (line 244) | HRESULT AcquireNextFrame(UINT TimeoutInMilliseconds, DXGI_OUTDUPL_... class MAPPED_SUBRESOURCERAII (line 252) | class MAPPED_SUBRESOURCERAII { method MAPPED_SUBRESOURCERAII (line 258) | MAPPED_SUBRESOURCERAII(ID3D11DeviceContext *context) : _Context(co... method HRESULT (line 261) | HRESULT Map(ID3D11Resource *pResource, UINT Subresource, D3D11_MAP... function DUPL_RETURN (line 272) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 300) | DUPL_RETURN DXFrameProcessor::ProcessFrame(const Monitor ¤tmon... type Screen_Capture (line 20) | namespace Screen_Capture { function DUPL_RETURN (line 12) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 13) | DUPL_RETURN DXFrameProcessor::ProcessFrame() { return DUPL_RETURN::D... type DX_RESOURCES (line 21) | struct DX_RESOURCES { type DUPLE_RESOURCES (line 25) | struct DUPLE_RESOURCES { function DUPL_RETURN (line 55) | DUPL_RETURN ProcessFailure(ID3D11Device *Device, LPCWSTR Str, LPCWST... function DUPL_RETURN (line 105) | DUPL_RETURN Initialize(DX_RESOURCES &data) function DUPL_RETURN (line 140) | DUPL_RETURN Initialize(DUPLE_RESOURCES &r, ID3D11Device *device, con... function RECT (line 182) | RECT ConvertRect(RECT Dirty, const DXGI_OUTPUT_DESC &DeskDesc) class AquireFrameRAII (line 225) | class AquireFrameRAII { method TryRelease (line 229) | void TryRelease() method AquireFrameRAII (line 241) | AquireFrameRAII(IDXGIOutputDuplication *dupl) : _DuplLock(dupl), A... method HRESULT (line 244) | HRESULT AcquireNextFrame(UINT TimeoutInMilliseconds, DXGI_OUTDUPL_... class MAPPED_SUBRESOURCERAII (line 252) | class MAPPED_SUBRESOURCERAII { method MAPPED_SUBRESOURCERAII (line 258) | MAPPED_SUBRESOURCERAII(ID3D11DeviceContext *context) : _Context(co... method HRESULT (line 261) | HRESULT Map(ID3D11Resource *pResource, UINT Subresource, D3D11_MAP... function DUPL_RETURN (line 272) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 300) | DUPL_RETURN DXFrameProcessor::ProcessFrame(const Monitor ¤tmon... type SL (line 19) | namespace SL { type Screen_Capture (line 10) | namespace Screen_Capture { function DUPL_RETURN (line 12) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 13) | DUPL_RETURN DXFrameProcessor::ProcessFrame() { return DUPL_RETURN::D... type DX_RESOURCES (line 21) | struct DX_RESOURCES { type DUPLE_RESOURCES (line 25) | struct DUPLE_RESOURCES { function DUPL_RETURN (line 55) | DUPL_RETURN ProcessFailure(ID3D11Device *Device, LPCWSTR Str, LPCWST... function DUPL_RETURN (line 105) | DUPL_RETURN Initialize(DX_RESOURCES &data) function DUPL_RETURN (line 140) | DUPL_RETURN Initialize(DUPLE_RESOURCES &r, ID3D11Device *device, con... function RECT (line 182) | RECT ConvertRect(RECT Dirty, const DXGI_OUTPUT_DESC &DeskDesc) class AquireFrameRAII (line 225) | class AquireFrameRAII { method TryRelease (line 229) | void TryRelease() method AquireFrameRAII (line 241) | AquireFrameRAII(IDXGIOutputDuplication *dupl) : _DuplLock(dupl), A... method HRESULT (line 244) | HRESULT AcquireNextFrame(UINT TimeoutInMilliseconds, DXGI_OUTDUPL_... class MAPPED_SUBRESOURCERAII (line 252) | class MAPPED_SUBRESOURCERAII { method MAPPED_SUBRESOURCERAII (line 258) | MAPPED_SUBRESOURCERAII(ID3D11DeviceContext *context) : _Context(co... method HRESULT (line 261) | HRESULT Map(ID3D11Resource *pResource, UINT Subresource, D3D11_MAP... function DUPL_RETURN (line 272) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 300) | DUPL_RETURN DXFrameProcessor::ProcessFrame(const Monitor ¤tmon... type Screen_Capture (line 20) | namespace Screen_Capture { function DUPL_RETURN (line 12) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 13) | DUPL_RETURN DXFrameProcessor::ProcessFrame() { return DUPL_RETURN::D... type DX_RESOURCES (line 21) | struct DX_RESOURCES { type DUPLE_RESOURCES (line 25) | struct DUPLE_RESOURCES { function DUPL_RETURN (line 55) | DUPL_RETURN ProcessFailure(ID3D11Device *Device, LPCWSTR Str, LPCWST... function DUPL_RETURN (line 105) | DUPL_RETURN Initialize(DX_RESOURCES &data) function DUPL_RETURN (line 140) | DUPL_RETURN Initialize(DUPLE_RESOURCES &r, ID3D11Device *device, con... function RECT (line 182) | RECT ConvertRect(RECT Dirty, const DXGI_OUTPUT_DESC &DeskDesc) class AquireFrameRAII (line 225) | class AquireFrameRAII { method TryRelease (line 229) | void TryRelease() method AquireFrameRAII (line 241) | AquireFrameRAII(IDXGIOutputDuplication *dupl) : _DuplLock(dupl), A... method HRESULT (line 244) | HRESULT AcquireNextFrame(UINT TimeoutInMilliseconds, DXGI_OUTDUPL_... class MAPPED_SUBRESOURCERAII (line 252) | class MAPPED_SUBRESOURCERAII { method MAPPED_SUBRESOURCERAII (line 258) | MAPPED_SUBRESOURCERAII(ID3D11DeviceContext *context) : _Context(co... method HRESULT (line 261) | HRESULT Map(ID3D11Resource *pResource, UINT Subresource, D3D11_MAP... function DUPL_RETURN (line 272) | DUPL_RETURN DXFrameProcessor::Init(std::shared_ptr data... function DUPL_RETURN (line 300) | DUPL_RETURN DXFrameProcessor::ProcessFrame(const Monitor ¤tmon... FILE: ThirdParty/screen_capture_lite - Copy/src/windows/GDIFrameProcessor.cpp type SL (line 4) | namespace SL { type Screen_Capture (line 5) | namespace Screen_Capture { function DUPL_RETURN (line 7) | DUPL_RETURN GDIFrameProcessor::Init(std::shared_ptr dat... function DUPL_RETURN (line 23) | DUPL_RETURN GDIFrameProcessor::Init(std::shared_ptr dat... function DUPL_RETURN (line 46) | DUPL_RETURN GDIFrameProcessor::ProcessFrame(const Monitor ¤tmo... function DUPL_RETURN (line 85) | DUPL_RETURN GDIFrameProcessor::ProcessFrame(Window &selectedwindow) FILE: ThirdParty/screen_capture_lite - Copy/src/windows/GDIMouseProcessor.cpp type SL (line 4) | namespace SL { type Screen_Capture (line 5) | namespace Screen_Capture { function DUPL_RETURN (line 7) | DUPL_RETURN GDIMouseProcessor::Init(std::shared_ptr dat... function DUPL_RETURN (line 19) | DUPL_RETURN GDIMouseProcessor::ProcessFrame() FILE: ThirdParty/screen_capture_lite - Copy/src/windows/GDIWindowProcessor.cpp type SL (line 3) | namespace SL { type Screen_Capture (line 4) | namespace Screen_Capture { FILE: ThirdParty/screen_capture_lite - Copy/src/windows/GetMonitors.cpp type SL (line 7) | namespace SL { type Screen_Capture (line 8) | namespace Screen_Capture { function GetMonitors (line 10) | std::vector GetMonitors() FILE: ThirdParty/screen_capture_lite - Copy/src/windows/GetWindows.cpp type SL (line 9) | namespace SL { type Screen_Capture (line 10) | namespace Screen_Capture { type srch (line 12) | struct srch { function BOOL (line 15) | BOOL CALLBACK EnumWindowsProc(_In_ HWND hwnd, _In_ LPARAM lParam) function GetWindows (line 33) | std::vector GetWindows() FILE: ThirdParty/screen_capture_lite - Copy/src/windows/ThreadRunner.cpp type SL (line 16) | namespace SL { type Screen_Capture (line 17) | namespace Screen_Capture { function ProcessExit (line 20) | void ProcessExit(DUPL_RETURN Ret, T* TData) { function SwitchToInputDesktop (line 35) | bool SwitchToInputDesktop(const std::shared_ptr data) { function RunCaptureMouse (line 59) | void RunCaptureMouse(std::shared_ptr data) { function RunCaptureMonitor (line 63) | void RunCaptureMonitor(std::shared_ptr data, Monitor mo... function RunCaptureWindow (line 78) | void RunCaptureWindow(std::shared_ptr data, Window wnd) { FILE: ThirdParty/screen_capture_lite/include/ScreenCapture.h function namespace (line 21) | namespace SL {