资源简介
android音频降噪,采用webrtc技术,包含底层源码和so库
代码片段和文件信息
/* File format for coverage information
Copyright (C) 1996-2014 Free Software Foundation Inc.
Contributed by Bob Manson .
Completely remangled by Nathan Sidwell .
This file is part of GCC.
GCC 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 Foundation; either version 3 or (at your option) any later
version.
GCC is distributed in the hope that it will be useful but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
Under Section 7 of GPL version 3 you are granted additional
permissions described in the GCC Runtime Library Exception version
3.1 as published by the Free Software Foundation.
You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively. If not see
. */
/* Routines declared in gcov-io.h. This file should be #included by
another source file after having #included gcov-io.h. */
#if !IN_GCOV
static void gcov_write_block (unsigned);
static gcov_unsigned_t *gcov_write_words (unsigned);
#endif
static const gcov_unsigned_t *gcov_read_words (unsigned);
#if !IN_LIBGCOV
static void gcov_allocate (unsigned);
#endif
/* Optimum number of gcov_unsigned_t‘s read from or written to disk. */
#define GCOV_BLOCK_SIZE (1 << 10)
GCOV_linkAGE struct gcov_var
{
_GCOV_FILE *file;
gcov_position_t start; /* Position of first byte of block */
unsigned offset; /* Read/write position within the block. */
unsigned length; /* Read limit in the block. */
unsigned overread; /* Number of words overread. */
int error; /* < 0 overflow > 0 disk error. */
int mode; /* < 0 writing > 0 reading */
#if IN_LIBGCOV
/* Holds one block plus 4 bytes thus all coverage reads & writes
fit within this buffer and we always can transfer GCOV_BLOCK_SIZE
to and from the disk. libgcov never backtracks and only writes 4
or 8 byte objects. */
gcov_unsigned_t buffer[GCOV_BLOCK_SIZE + 1];
#else
int endian; /* Swap endianness. */
/* Holds a variable length block as the compiler can write
strings and needs to backtrack. */
size_t alloc;
gcov_unsigned_t *buffer;
#endif
} gcov_var;
/* Save the current position in the gcov file. */
/* We need to expose this function when compiling for gcov-tool. */
#ifndef IN_GCOV_TOOL
static inline
#endif
gcov_position_t
gcov_position (void)
{
return gcov_var.start + gcov_var.offset;
}
/* Return nonzero if the error flag is set. */
/* We need to expose this function when compiling for gcov-tool. */
#ifndef IN_GCOV_TOOL
static inline
#endif
int
gcov_is_error (void)
{
return gcov_var.file ? gcov_var.error : 1;
}
#if IN_LIBGCOV
/* Move
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-11-08 11:46 降噪源码\
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\
文件 6148 2016-11-20 11:34 降噪源码\WebrtcNoise\.DS_Store
文件 118 2016-11-15 15:44 降噪源码\WebrtcNoise\.gitignore
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\taskArtifacts\
文件 30 2016-11-15 15:46 降噪源码\WebrtcNoise\.gradle\2.14.1\taskArtifacts\cache.properties
文件 17 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\taskArtifacts\cache.properties.lock
文件 1012303 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\taskArtifacts\fileHashes.bin
文件 13207773 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\taskArtifacts\fileSnapshots.bin
文件 100138 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\taskArtifacts\fileSnapshotsToTreeSnapshotsIndex.bin
文件 340374 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\taskArtifacts\taskArtifacts.bin
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_app_compileDebugJavaWithJavac\
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_app_compileDebugJavaWithJavac\localClassSetAnalysis\
文件 79102 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_app_compileDebugJavaWithJavac\localClassSetAnalysis\localClassSetAnalysis.bin
文件 17 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_app_compileDebugJavaWithJavac\localClassSetAnalysis\localClassSetAnalysis.lock
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_app_compileDebugJavaWithJavac\localJarClasspathSnapshot\
文件 28369 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_app_compileDebugJavaWithJavac\localJarClasspathSnapshot\localJarClasspathSnapshot.bin
文件 17 2018-11-08 11:43 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_app_compileDebugJavaWithJavac\localJarClasspathSnapshot\localJarClasspathSnapshot.lock
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc2_compileDebugJavaWithJavac\
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc2_compileDebugJavaWithJavac\localClassSetAnalysis\
文件 20860 2016-11-17 17:51 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc2_compileDebugJavaWithJavac\localClassSetAnalysis\localClassSetAnalysis.bin
文件 17 2016-11-17 17:51 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc2_compileDebugJavaWithJavac\localClassSetAnalysis\localClassSetAnalysis.lock
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc2_compileDebugJavaWithJavac\localJarClasspathSnapshot\
文件 20901 2016-11-17 17:51 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc2_compileDebugJavaWithJavac\localJarClasspathSnapshot\localJarClasspathSnapshot.bin
文件 17 2016-11-17 17:51 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc2_compileDebugJavaWithJavac\localJarClasspathSnapshot\localJarClasspathSnapshot.lock
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc3_compileDebugJavaWithJavac\
目录 0 2018-11-08 11:44 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc3_compileDebugJavaWithJavac\localClassSetAnalysis\
文件 20860 2016-11-17 23:02 降噪源码\WebrtcNoise\.gradle\2.14.1\tasks\_webrtc3_compileDebugJavaWithJavac\localClassSetAnalysis\localClassSetAnalysis.bin
............此处省略4153个文件信息
相关资源
- Android之自定义ToggleButton使用
- Android非常漂亮的登录界面
- pc与android通过usb socket实现手机通信
- android毕业设计
- 百度地图自定义Markerandroid
- Android分区工具包
- android-support-v4.jar已打包进去源代码
- u-blox_Android_GNSS_Driver_v3.10驱动源码+中
- 个人根据Android移动开发案例详解手写
- android 视频播放器 项目和原码
- Android【动画】【特效】 17种动画特效
- 基于Android智能家居详细设计(经典)
- android通过JDBC连接Mysql数据库
- Android通讯录的源代码
- android 瀑布流Demo
- 指纹传感器FPC1080在android下的驱动
- delphi xe5 android 调用照相机摄像头拍照
- Android手机连连看游戏源码
- android-sdk-windows v2.3离线完整版
- android 底部弹出菜单(带透明背景)
- Android工程模式简介.rar
- Android蓝牙和Cors网络开发源码
- Android powermanger wakelock
- Android v7的一些jar包
- 最新android supportV7包
- android图片压缩工具类分享
- 单机搭建Android(解决Network is unreach
- Android上监听收到的短信(SMS)
- android电商app源码
- Android代码-多功能拨号盘源码.zip
评论
共有 条评论