资源简介
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 留言板小demo
- (API 19) SDK Platform
- Android开发与应用
- 基于android的手机通讯录系统
- Android调用相机拍照,view截屏,无预览
- Android代码-查询软件源代码身份证号号
- Android游戏源码基于蓝牙的坦克大战和
- Android应用源码安卓版个人荣誉简历项
- Android平台下居民信息录入系统的设计
- 电子商务平台的APP源代码
- 基于android studio的读取联系人并可点击
- AndroidUSBCamera.zip
- Android 广告轮播资源
- Android车牌识别 Demo 源码 能识别蓝色和
- Android调用NFC读取NFC卡片
- android 获取手机通讯录联系人信息 点
- Android APP渗透测试方法大全.pdf
- 汇率换算(android安卓版)
- Android通过http连接mysql
- android 移植好的librtmp 2.4
- FFmpeg Android armeabi-v7a arm64-v8a 动态链接
- 基于Android的炸弹人游戏毕业设计
- Android 200个经典小
- 基于Android系统的手机语音识别软件开
- Android炸弹人游戏源码.rar
- 无线点餐系统
- android激情投篮游戏源代码
- android游戏_炸弹人_源码
- Android生肖查询
- android 如何使用tomcat搭建服务器
评论
共有 条评论