text
stringlengths
24
1.04M
metadata
stringlengths
233
497
### File: cmake/FindPCAP.cmake # - Try to find libpcap # # Once done this will define # PCAP_FOUND - System has libpcap # PCAP_INCLUDE_DIRS - The libpcap include directories # PCAP_LIBRARIES - The libpcap library # Find libpcap FIND_PATH( PCAP_INCLUDE_DIRS NAMES pcap.h ) FIND_LIBRARY( PCAP_LI...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/FindPCAP.cmake", "license": "bsd", "size": 551}
### File: cmake/FindSCTP.cmake # - Try to find sctp # # Once done this will define # SCTP_FOUND - System has mbedtls # SCTP_INCLUDE_DIRS - The mbedtls include directories # SCTP_LIBRARIES - The mbedtls library #find Mbedtls FIND_PATH( SCTP_INCLUDE_DIRS NAMES usrsctp.h ) FIND_LIBRARY( SCTP_LI...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/FindSCTP.cmake", "license": "bsd", "size": 555}
### File: cmake/FindSDL2.cmake find_path(SDL2_INCLUDE_DIR NAMES SDL2/SDL.h HINTS SDL2 PATHS $ENV{HOME}/sdl2/include) find_library(SDL2_LIBRARY NAMES SDL2 PATHS $ENV{HOME}/sdl2/lib/x86) set(SDL2_LIBRARIES ${SDL2_LIBRARY}) set(SDL2_INCLUDE_DIRS ${SDL2_INCLUDE_DIR}) include(FindPackageHandleStandardArg...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/FindSDL2.cmake", "license": "bsd", "size": 376}
### File: cmake/FindSRTP.cmake ############################################################################ # FindSRTP.txt # Copyright (C) 2014 Belledonne Communications, Grenoble France # ############################################################################ # # This program is free software; you can redistribu...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/FindSRTP.cmake", "license": "bsd", "size": 1840}
### File: cmake/FindSWRESAMPLE.cmake find_path(SWRESAMPLE_INCLUDE_DIR NAMES libswresample/swresample.h HINTS ${FFMPEG_PATH_ROOT} PATH_SUFFIXES include) find_library(SWRESAMPLE_LIBRARY NAMES swresample HINTS ${FFMPEG_PATH_ROOT} PATH_SUFFIXES bin lib) set(SWRESAMPLE_LIBRA...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/FindSWRESAMPLE.cmake", "license": "bsd", "size": 507}
### File: cmake/FindSWSCALE.cmake find_path(SWSCALE_INCLUDE_DIR NAMES libswscale/swscale.h HINTS ${FFMPEG_PATH_ROOT} PATH_SUFFIXES include) find_library(SWSCALE_LIBRARY NAMES swscale HINTS ${FFMPEG_PATH_ROOT} PATH_SUFFIXES bin lib) set(SWSCALE_LIBRARIES ${SWSCALE_LIBRAR...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/FindSWSCALE.cmake", "license": "bsd", "size": 471}
### File: cmake/FindX264.cmake ############################################################################ # FindX264.txt # Copyright (C) 2015 Belledonne Communications, Grenoble France # ############################################################################ # # This program is free software; you can redistribu...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/FindX264.cmake", "license": "bsd", "size": 1745}
### File: cmake/Jemalloc.cmake # Download and build Jemalloc set(JEMALLOC_VERSION 5.3.0) set(JEMALLOC_NAME jemalloc-${JEMALLOC_VERSION}) set(JEMALLOC_TAR_PATH ${DEP_ROOT_DIR}/${JEMALLOC_NAME}.tar.bz2) list(APPEND jemalloc_CONFIG_ARGS --disable-initial-exec-tls) #list(APPEND jemalloc_CONFIG_ARGS --without-export) if (...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/Jemalloc.cmake", "license": "bsd", "size": 2797}
### File: cmake/android.toolchain.cmake # Copyright (c) 2010-2011, Ethan Rublee # Copyright (c) 2011-2014, Andrey Kamaev # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # 1. Redistributions of ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/android.toolchain.cmake", "license": "bsd", "size": 82348}
### File: cmake/checks/atomic_check.cpp #include <atomic> static int test() { std::atomic<long long> x; return x; } int main() { return test(); }
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/checks/atomic_check.cpp", "license": "bsd", "size": 122}
### File: cmake/ios.toolchain.cmake # This file is part of the ios-cmake project. It was retrieved from # https://github.com/cristeab/ios-cmake.git, which is a fork of # https://code.google.com/p/ios-cmake/. Which in turn is based off of # the Platform/Darwin.cmake and Platform/UnixPaths.cmake files which # are include...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "cmake/ios.toolchain.cmake", "license": "bsd", "size": 29613}
### File: docker/build_docker_images.sh #!/bin/bash set -e docker build -t gemfield/zlmediakit:20.04-runtime-ubuntu18.04 -f ubuntu18.04/Dockerfile.runtime . docker build -t gemfield/zlmediakit:20.04-devel-ubuntu18.04 -f ubuntu18.04/Dockerfile.devel . docker build -t gemfield/zlmediakit:20.04-runtime-ubuntu16.04 -f ubun...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Shell", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "docker/build_docker_images.sh", "license": "bsd", "size": 487}
### File: ext-codec/AAC.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the so...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AAC.cpp", "license": "bsd", "size": 16048}
### File: ext-codec/AAC.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sour...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AAC.h", "license": "bsd", "size": 1677}
### File: ext-codec/AACRtmp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AACRtmp.cpp", "license": "bsd", "size": 2182}
### File: ext-codec/AACRtmp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AACRtmp.h", "license": "bsd", "size": 2390}
### File: ext-codec/AACRtp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AACRtp.cpp", "license": "bsd", "size": 5550}
### File: ext-codec/AACRtp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AACRtp.h", "license": "bsd", "size": 1926}
### File: ext-codec/AV1.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the so...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AV1.cpp", "license": "bsd", "size": 2236}
### File: ext-codec/AV1.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sour...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AV1.h", "license": "bsd", "size": 926}
### File: ext-codec/AV1Rtp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AV1Rtp.cpp", "license": "bsd", "size": 17972}
### File: ext-codec/AV1Rtp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/AV1Rtp.h", "license": "bsd", "size": 2851}
### File: ext-codec/CMakeLists.txt # MIT License # # Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/CMakeLists.txt", "license": "bsd", "size": 2031}
### File: ext-codec/G711.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/G711.cpp", "license": "bsd", "size": 4885}
### File: ext-codec/G711.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sou...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/G711.h", "license": "bsd", "size": 998}
### File: ext-codec/G711Rtp.cpp #include "G711Rtp.h" namespace mediakit { G711RtpEncoder::G711RtpEncoder(int sample_rate, int channels, int sample_bit) { _sample_rate = sample_rate; _channels = channels; _sample_bit = sample_bit; } void G711RtpEncoder::setOpt(int opt, const toolkit::Any &param) { if...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/G711Rtp.cpp", "license": "bsd", "size": 1574}
### File: ext-codec/G711Rtp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/G711Rtp.h", "license": "bsd", "size": 1684}
### File: ext-codec/H264.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H264.cpp", "license": "bsd", "size": 15316}
### File: ext-codec/H264.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sou...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H264.h", "license": "bsd", "size": 5359}
### File: ext-codec/H264Rtmp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H264Rtmp.cpp", "license": "bsd", "size": 3970}
### File: ext-codec/H264Rtmp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H264Rtmp.h", "license": "bsd", "size": 2809}
### File: ext-codec/H264Rtp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H264Rtp.cpp", "license": "bsd", "size": 14343}
### File: ext-codec/H264Rtp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H264Rtp.h", "license": "bsd", "size": 3241}
### File: ext-codec/H265.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H265.cpp", "license": "bsd", "size": 14805}
### File: ext-codec/H265.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sou...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H265.h", "license": "bsd", "size": 6078}
### File: ext-codec/H265Rtmp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H265Rtmp.cpp", "license": "bsd", "size": 7064}
### File: ext-codec/H265Rtmp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H265Rtmp.h", "license": "bsd", "size": 2850}
### File: ext-codec/H265Rtp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H265Rtp.cpp", "license": "bsd", "size": 14951}
### File: ext-codec/H265Rtp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/H265Rtp.h", "license": "bsd", "size": 3102}
### File: ext-codec/JPEG.cpp #include "JPEG.h" #include "JPEGRtp.h" #include "Rtsp/Rtsp.h" #include "Util/util.h" #include "Extension/Factory.h" using namespace toolkit; namespace mediakit { bool JPEGTrack::inputFrame(const Frame::Ptr &frame) { if (!ready()) { if (_height > 0 && _width > 0) { ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/JPEG.cpp", "license": "bsd", "size": 2333}
### File: ext-codec/JPEG.h #ifndef ZLMEDIAKIT_JPEG_H #define ZLMEDIAKIT_JPEG_H #include "Extension/Frame.h" #include "Extension/Track.h" namespace mediakit { class JPEGTrack : public VideoTrack { public: using Ptr = std::shared_ptr<JPEGTrack>; CodecId getCodecId() const override { return CodecJPEG; } i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/JPEG.h", "license": "bsd", "size": 2281}
### File: ext-codec/JPEGRtp.cpp #include "JPEGRtp.h" #include "JPEG.h" using namespace std; using namespace mediakit; #define AV_WB24(p, d) \ do { ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/JPEGRtp.cpp", "license": "bsd", "size": 30211}
### File: ext-codec/JPEGRtp.h #ifndef ZLMEDIAKIT_JPEGRTP_H #define ZLMEDIAKIT_JPEGRTP_H #include "Rtsp/RtpCodec.h" #include "Extension/Frame.h" namespace mediakit { /** * RTP/JPEG specific private data. */ struct PayloadContext { std::string frame; ///< current frame buffer uint32_t timestamp; ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/JPEGRtp.h", "license": "bsd", "size": 1425}
### File: ext-codec/L16.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the so...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/L16.cpp", "license": "bsd", "size": 2196}
### File: ext-codec/L16.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sour...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/L16.h", "license": "bsd", "size": 969}
### File: ext-codec/MP3.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the so...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/MP3.cpp", "license": "bsd", "size": 2182}
### File: ext-codec/MP3.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sour...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/MP3.h", "license": "bsd", "size": 914}
### File: ext-codec/MP3Rtp.cpp #include "MP3Rtp.h" #define MPEG12_HEADER_LEN 4 namespace mediakit { //MPEG Audio-specific header /* 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/MP3Rtp.cpp", "license": "bsd", "size": 2458}
### File: ext-codec/MP3Rtp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/MP3Rtp.h", "license": "bsd", "size": 1359}
### File: ext-codec/Opus.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/Opus.cpp", "license": "bsd", "size": 2047}
### File: ext-codec/Opus.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sou...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/Opus.h", "license": "bsd", "size": 1142}
### File: ext-codec/SPSParser.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> /* for uint32_t, etc */ #include "SPSParser.h" /******************************************** *define here ********************************************/ #define SPS_PPS_DEBUG //#undef SPS_PPS_DEBUG #define...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/SPSParser.c", "license": "bsd", "size": 76776}
### File: ext-codec/SPSParser.h #ifndef _SPSPARSER_H_ #define _SPSPARSER_H_ #if defined (__cplusplus) extern "C" { #endif #define QP_MAX_NUM (51 + 6*6) // The maximum supported qp #define HEVC_MAX_SHORT_TERM_RPS_COUNT 64 #define T_PROFILE_HEVC_MAIN 1 #define T_PROFILE_HEVC_MAIN...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "ext-codec/SPSParser.h", "license": "bsd", "size": 18461}
### File: golang/zlmediakit/mk_common.go package zlmediakit //#include "mk_mediakit.h" //#include "mk_common.h" import "C" import ( "fmt" "zlmediakit/helper" ) type LogMask int type LogLevel int const ( LogConsole LogMask = 1 << 0 LogFile LogMask = 1 << 1 LogCallback LogMask = 2 << 1 ) const ( LTrace Log...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Go", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "golang/zlmediakit/mk_common.go", "license": "bsd", "size": 6178}
### File: player/AudioSRC.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "player/AudioSRC.cpp", "license": "bsd", "size": 4162}
### File: player/AudioSRC.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the so...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "player/AudioSRC.h", "license": "bsd", "size": 2073}
### File: player/CMakeLists.txt # MIT License # # Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without re...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "player/CMakeLists.txt", "license": "bsd", "size": 2593}
### File: player/SDLAudioDevice.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root o...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "player/SDLAudioDevice.cpp", "license": "bsd", "size": 3031}
### File: player/SDLAudioDevice.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "player/SDLAudioDevice.h", "license": "bsd", "size": 1344}
### File: player/YuvDisplayer.h  /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "player/YuvDisplayer.h", "license": "bsd", "size": 6498}
### File: player/test_player.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "player/test_player.cpp", "license": "bsd", "size": 5560}
### File: server/CMakeLists.txt # MIT License # # Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without re...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/CMakeLists.txt", "license": "bsd", "size": 3404}
### File: server/FFmpegSource.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/FFmpegSource.cpp", "license": "bsd", "size": 20970}
### File: server/FFmpegSource.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/FFmpegSource.h", "license": "bsd", "size": 5188}
### File: server/Process.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/Process.cpp", "license": "bsd", "size": 13359}
### File: server/Process.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sou...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/Process.h", "license": "bsd", "size": 1051}
### File: server/ShellParser.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/ShellParser.h", "license": "bsd", "size": 7854}
### File: server/System.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the so...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/System.cpp", "license": "bsd", "size": 8592}
### File: server/System.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sour...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/System.h", "license": "bsd", "size": 688}
### File: server/VideoStack.cpp #if defined(ENABLE_VIDEOSTACK) && defined(ENABLE_X264) && defined(ENABLE_FFMPEG) #include "VideoStack.h" #include "Codec/Transcode.h" #include "Common/Device.h" #include "Util/logger.h" #include "Util/util.h" #include "json/value.h" #include <Thread/WorkThreadPool.h> #include <fstream> ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/VideoStack.cpp", "license": "bsd", "size": 21574}
### File: server/VideoStack.h #pragma once #if defined(ENABLE_VIDEOSTACK) && defined(ENABLE_X264) && defined(ENABLE_FFMPEG) #include "Codec/Transcode.h" #include "Common/Device.h" #include "Player/MediaPlayer.h" #include "json/json.h" #include <mutex> template<typename T> class RefWrapper { public: using Ptr = std...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/VideoStack.h", "license": "bsd", "size": 5106}
### File: server/WebApi.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the so...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/WebApi.cpp", "license": "bsd", "size": 102590}
### File: server/WebApi.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/WebApi.h", "license": "bsd", "size": 13190}
### File: server/WebHook.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/WebHook.cpp", "license": "bsd", "size": 35120}
### File: server/WebHook.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sou...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/WebHook.h", "license": "bsd", "size": 1465}
### File: server/main.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the sour...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "server/main.cpp", "license": "bsd", "size": 23869}
### File: src/CMakeLists.txt # MIT License # # Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restri...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/CMakeLists.txt", "license": "bsd", "size": 2522}
### File: src/Codec/AACEncoder.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Codec/AACEncoder.cpp", "license": "bsd", "size": 2918}
### File: src/Codec/AACEncoder.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Codec/AACEncoder.h", "license": "bsd", "size": 1059}
### File: src/Codec/H264Encoder.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root o...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Codec/H264Encoder.cpp", "license": "bsd", "size": 23928}
### File: src/Codec/H264Encoder.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Codec/H264Encoder.h", "license": "bsd", "size": 1209}
### File: src/Codec/Transcode.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Codec/Transcode.cpp", "license": "bsd", "size": 27210}
### File: src/Codec/Transcode.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Codec/Transcode.h", "license": "bsd", "size": 4998}
### File: src/Common/Device.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/Device.cpp", "license": "bsd", "size": 5668}
### File: src/Common/Device.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/Device.h", "license": "bsd", "size": 6502}
### File: src/Common/JemallocUtil.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/JemallocUtil.cpp", "license": "bsd", "size": 2191}
### File: src/Common/JemallocUtil.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/JemallocUtil.h", "license": "bsd", "size": 903}
### File: src/Common/MediaSink.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/MediaSink.cpp", "license": "bsd", "size": 17004}
### File: src/Common/MediaSink.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/MediaSink.h", "license": "bsd", "size": 8495}
### File: src/Common/MediaSource.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/MediaSource.cpp", "license": "bsd", "size": 35712}
### File: src/Common/MediaSource.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/MediaSource.h", "license": "bsd", "size": 26224}
### File: src/Common/MultiMediaSourceMuxer.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the r...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/MultiMediaSourceMuxer.cpp", "license": "bsd", "size": 29756}
### File: src/Common/MultiMediaSourceMuxer.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/MultiMediaSourceMuxer.h", "license": "bsd", "size": 8705}
### File: src/Common/PacketCache.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/PacketCache.h", "license": "bsd", "size": 3976}
### File: src/Common/Parser.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/Parser.cpp", "license": "bsd", "size": 10414}
### File: src/Common/Parser.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/Parser.h", "license": "bsd", "size": 5467}
### File: src/Common/Stamp.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/Stamp.cpp", "license": "bsd", "size": 19535}
### File: src/Common/Stamp.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/Stamp.h", "license": "bsd", "size": 6297}
### File: src/Common/config.cpp /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of th...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/config.cpp", "license": "bsd", "size": 23630}
### File: src/Common/config.h /* * Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved. * * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit). * * Use of this source code is governed by MIT-like license that can be found in the * LICENSE file in the root of the ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "vincent-in-black-sesame/ZLMediaKit", "path": "src/Common/config.h", "license": "bsd", "size": 41060}