file_path
stringlengths
3
280
file_language
stringclasses
66 values
content
stringlengths
1
1.04M
repo_name
stringlengths
5
92
repo_stars
int64
0
154k
repo_description
stringlengths
0
402
repo_primary_language
stringclasses
108 values
developer_username
stringlengths
1
25
developer_name
stringlengths
0
30
developer_company
stringlengths
0
82
src/Proxy/ProxyProtocol.h
C/C++ Header
/* * ProxyProtocol.h * * Created on: 2017年6月14日 * Author: xzl */ #ifndef PROXYPROTOCOL_H_ #define PROXYPROTOCOL_H_ #include <unordered_map> #include "Util/TimeTicker.h" #include "json/json.h" #include "Config.h" #include "HttpRequestSplitter.h" #include "Status.h" using namespace Json; using namespace to...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
src/Proxy/ProxySession.cpp
C++
/* * TcpProxySession.cpp * * Created on: 2017年6月12日 * Author: xzl */ #include "ProxySession.h" #include "Config.h" #include "Util/onceToken.h" #include "Network/TcpServer.h" #include "Util/NoticeCenter.h" using namespace toolkit; namespace Proxy { static atomic<uint64_t> s_sessionCount(0); uint64_t Prox...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
src/Proxy/ProxySession.h
C/C++ Header
/* * TcpProxySession.h * * Created on: 2017年6月12日 * Author: xzl */ #ifndef SESSION_TCPPROXYSESSION_H_ #define SESSION_TCPPROXYSESSION_H_ #include <unordered_set> #include "Network/TcpSession.h" #include "Util/SSLBox.h" #include "Util/TimeTicker.h" #include "json/json.h" #include "ProxyProtocol.h" using n...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
src/Proxy/ProxyTerminal.h
C/C++ Header
/* * ProxySocket.h * * Created on: 2017年6月14日 * Author: xzl */ #ifndef PROXY_PROXYTERMINAL_H_ #define PROXY_PROXYTERMINAL_H_ #include "ProxyClient.h" #include "ProxyProtocol.h" #include "ProxyChannel.h" namespace Proxy { //实现TCP代理协议的相关接口 class ProxyTerminalInterface { public: typedef std::shared_ptr...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
src/Proxy/Status.cpp
C++
// // Created by xzl on 2020/8/21. // #include "Status.h" #include <assert.h> #include <iomanip> #include "Poller/EventPoller.h" #include "Util/onceToken.h" using namespace toolkit; namespace Proxy { void Status::addCountSignal(bool is_recv, uint64_t bytes) { assert(EventPoller::Instance().isCurrentThread()); ...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
src/Proxy/Status.h
C/C++ Header
// // Created by xzl on 2020/8/21. // #ifndef TCPPROXY_STATUS_H #define TCPPROXY_STATUS_H #include <stdint.h> #include <memory> #include "Util/TimeTicker.h" using namespace std; using namespace toolkit; namespace Proxy { typedef struct StatusDataTag{ uint64_t _bytes_signal[2] = {0, 0}; uint64_t _bytes_bind...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
src/Proxy/TcpServerImp.h
C/C++ Header
/* * TcpServerImp.h * * Created on: 2017年6月15日 * Author: xzl */ #ifndef PROXY_TCPSERVERIMP_H_ #define PROXY_TCPSERVERIMP_H_ #include <memory> #include <exception> #include <functional> #include "Network/Socket.h" #include "Network/TcpServer.h" #include "Util/util.h" #include "Util/uv_errno.h" #include "Ut...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
tests/TcpProxyBenchmark.cpp
C++
#include <signal.h> #include <iostream> #include <list> #include "Util/logger.h" #include "Util/onceToken.h" #include "Proxy/ProxyTerminal.h" #include "Util/CMD.h" using namespace std; using namespace toolkit; using namespace Proxy; class CMD_benchmark: public CMD { public: CMD_benchmark() { _parser.reset( new Op...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
tests/TcpProxyClient.cpp
C++
 #include <signal.h> #include <iostream> #include "Poller/Timer.h" #include "Proxy/Config.h" #include "Proxy/Proxy.h" #include "Util/CMD.h" #ifndef MAX #define MAX(a, b) ((a) > (b) ? (a) : (b) ) #endif //MAX #ifndef MIN #define MIN(a, b) ((a) < (b) ? (a) : (b) ) #endif //MIN using namespace std; using namespace too...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
tests/TcpProxyServer.cpp
C++
#include <signal.h> #include <sys/resource.h> #include <functional> #include "Util/SSLBox.h" #include "Util/onceToken.h" #include "Network/TcpServer.h" #include "Proxy/Config.h" #include "Proxy/ProxySession.h" using namespace std; using namespace toolkit; using namespace Proxy; namespace Config { namespace Proxy { #...
xia-chu/TcpProxy
55
一个tcp代理工具;借助公网服务器中转,可以把NAT内的远端设备的tcp端口映射至localhost,访问localhost映射端口相当于访问远端设备端口。
C
xia-chu
夏楚
cmake/AndroidNdkGdb.cmake
CMake
# Copyright (c) 2014, Pavel Rojtberg # 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 source code must retain the above copyright notice, # this list of conditions ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/AndroidNdkModules.cmake
CMake
# Copyright (c) 2014, Pavel Rojtberg # 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 source code must retain the above copyright notice, # this list of conditions ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/FindAVCODEC.cmake
CMake
find_path(AVCODEC_INCLUDE_DIR NAMES libavcodec/avcodec.h PATHS $ENV{HOME}/ffmpeg/include) find_library(AVCODEC_LIBRARY NAMES avcodec PATHS $ENV{HOME}/ffmpeg/lib) set(AVCODEC_LIBRARIES ${AVCODEC_LIBRARY}) set(AVCODEC_INCLUDE_DIRS ${AVCODEC_INCLUDE_DIR}) include(FindPackageHandleStandardArgs) fin...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/FindAVUTIL.cmake
CMake
find_path(AVUTIL_INCLUDE_DIR NAMES libavutil/avutil.h PATHS $ENV{HOME}/ffmpeg/include) find_library(AVUTIL_LIBRARY NAMES avutil PATHS $ENV{HOME}/ffmpeg/lib) set(AVUTIL_LIBRARIES ${AVUTIL_LIBRARY}) set(AVUTIL_INCLUDE_DIRS ${AVUTIL_INCLUDE_DIR}) include(FindPackageHandleStandardArgs) find_package...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/FindMYSQL.cmake
CMake
# - Try to find MySQL / MySQL Embedded library # Find the MySQL includes and client library # This module defines # MYSQL_INCLUDE_DIR, where to find mysql.h # MYSQL_LIBRARIES, the libraries needed to use MySQL. # MYSQL_LIB_DIR, path to the MYSQL_LIBRARIES # MYSQL_EMBEDDED_LIBRARIES, the libraries needed to us...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/FindSDL2.cmake
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(FindPackageHandleStandardArgs) find_package_handle_stand...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/FindZLMEDIAKIT.cmake
CMake
find_path(ZLMEDIAKIT_INCLUDE_DIR NAMES Rtsp/Rtsp.h PATHS ${PROJECT_SOURCE_DIR}/../ZLMediaKit/src $ENV{HOME}/ZLMediaKit/include) find_library(ZLMEDIAKIT_LIBRARY NAMES ZLMediaKit PATHS ${PROJECT_SOURCE_DIR}/../ZLMediaKit/build/lib $ENV{HOME}/ZLMediaKit/lib) set(ZLMEDIAKIT_LIBRARIES ${ZLMEDIA...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/FindZLTOOLKIT.cmake
CMake
find_path(ZLTOOLKIT_INCLUDE_DIR NAMES Network/Socket.h PATHS ${PROJECT_SOURCE_DIR}/../ZLToolKit/src $ENV{HOME}/ZLToolKit/include) find_library(ZLTOOLKIT_LIBRARY NAMES ZLToolKit PATHS ${PROJECT_SOURCE_DIR}/../ZLToolKit/build/lib $ENV{HOME}/ZLToolKit/lib) set(ZLTOOLKIT_LIBRARIES ${ZLTOOLKI...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/android.toolchain.cmake
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 source code must retain the above...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
cmake/iOS.cmake
CMake
# This file is based off of the Platform/Darwin.cmake and Platform/UnixPaths.cmake # files which are included with CMake 2.8.4 # It has been altered for iOS development # Options: # # IOS_PLATFORM = OS (default) or SIMULATOR or SIMULATOR64 # This decides if SDKS will be selected from the iPhoneOS.platform or ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/AudioDec/AudioDec.cpp
C++
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/AudioDec/AudioDec.h
C/C++ Header
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/MediaPlayer/H264Decoder.h
C/C++ Header
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/MediaPlayer/MediaPlayerImp.cpp
C++
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the r...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/MediaPlayer/MediaPlayerImp.h
C/C++ Header
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the r...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/MediaPlayer/MediaPlayerWrapper.cpp
C++
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/MediaPlayer/MediaPlayerWrapper.h
C/C++ Header
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the r...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/MediaPlayer/YuvDisplayer.h
C/C++ Header
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/SDLAudioMixer/AudioSRC.cpp
C++
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/SDLAudioMixer/AudioSRC.h
C/C++ Header
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/SDLAudioMixer/SDLAudioDevice.cpp
C++
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/SDLAudioMixer/SDLAudioDevice.h
C/C++ Header
/* * MIT License * * Copyright (c) 2017 xiongziliang <771730766@qq.com> * * 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 restriction, including without limitation the rights ...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/analysis.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/bits.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/bits.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/cfft.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/cfft.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/cfft_tab.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_1.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_10.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_11.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_2.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_3.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_4.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_5.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_6.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_7.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_8.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_9.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/codebook/hcb_sf.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/common.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/common.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/config.h
C/C++ Header
/* * config.h * * Created on: 2014-7-1 * Author: root */ #ifndef CONFIG_H_ #define CONFIG_H_ /* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.in by autoheader. */ /* Define if you want to use libfaad together with Digital Radio Mondiale (DRM) */ /* #...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/decoder.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/drc.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/drc.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/drm_dec.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/drm_dec.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/error.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/error.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/faad.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/filtbank.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/filtbank.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/fixed.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/hcr.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/huffman.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/huffman.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ic_predict.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ic_predict.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/iq_table.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/is.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/is.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/kbd_win.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/lt_predict.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/lt_predict.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/mdct.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/mdct_tab.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/mp4.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/mp4.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ms.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ms.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/neaacdec.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/output.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/output.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/pns.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/pns.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ps_dec.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ps_dec.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ps_syntax.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foun...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/ps_tables.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/pulse.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/pulse.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/rvlc.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/rvlc.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/sbr_dct.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/sbr_dct.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/sbr_dec.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/sbr_dec.h
C/C++ Header
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚
src/libFaad/sbr_e_nf.c
C
/* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Fo...
xia-chu/ZLMediaPlayer
45
一个简单的rtmp/rtsp播放器,支持windows/linux/macos
C
xia-chu
夏楚