随笔分类 -  (b) CS

1
摘要:Hareesh Nagarajan (hnagaraj AT cs uic edu) Mon Nov 21 00:58:19 CST 2005 This document may never be updated #include <stdio.h> struct X { int x; void ( 阅读全文
posted @ 2021-07-06 14:54 dong1 阅读(39) 评论(0) 推荐(0) 编辑
摘要:Hareesh Nagarajan (hnagaraj AT cs uic edu) Sat Nov 5 22:47:56 CST 2005 For a good introduction to the implementation of linked lists API inside the Li 阅读全文
posted @ 2021-07-06 14:48 dong1 阅读(64) 评论(0) 推荐(0) 编辑
摘要:libs/circular_buffer/example/circular_buffer_example.cpp // Copyright 2003-2008 Jan Gaspar. // Copyright 2013 Paul A. Bristow. Added some Quickbook sn 阅读全文
posted @ 2021-01-28 15:00 dong1 阅读(96) 评论(0) 推荐(0) 编辑
摘要:Circular buffer A circular buffer or circular queue or cyclic buffer or ring buffer is single and fixed size buffer with some programming logic to act 阅读全文
posted @ 2021-01-28 14:43 dong1 阅读(256) 评论(0) 推荐(0) 编辑
摘要:I wanted to implement a circular buffer for learning purpose only. My first option was to use a secondary status for rear and front pointers: (Like th 阅读全文
posted @ 2021-01-28 13:47 dong1 阅读(74) 评论(0) 推荐(0) 编辑
摘要:webrtc-audioproc-master/modules/audio_processing/utility/fft4g.c /* * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html * Copyright Takuya OOURA, 1996-2 阅读全文
posted @ 2020-12-22 09:03 dong1 阅读(163) 评论(0) 推荐(0) 编辑
摘要:webrtc-audioproc-master/modules/audio_processing/utilityring_buffer.c /* * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. * * Use 阅读全文
posted @ 2020-12-22 08:58 dong1 阅读(306) 评论(0) 推荐(0) 编辑
摘要:WebRTC AudioProc (AEC, VAD, NS...) https://github.com/DoubangoTelecom/webrtc-audioproc build example: ./autogen.sh ./configure make 阅读全文
posted @ 2020-12-21 16:54 dong1 阅读(240) 评论(0) 推荐(0) 编辑
摘要:/* shkeys.c */ /* compile me: cc -o shkeys shkeys.c */ #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <termios 阅读全文
posted @ 2020-11-26 11:17 dong1 阅读(98) 评论(0) 推荐(0) 编辑
摘要:C Library: POSIX Standard C's sleep() only provides one-second resolution, so the POSIX usleep() function is used here. (POSIX is not needed for the a 阅读全文
posted @ 2020-11-26 01:06 dong1 阅读(76) 评论(0) 推荐(0) 编辑
摘要:nanomsg-1.1.5/src/utils/wire.c /* Copyright (c) 2012-2013 Martin Sustrik All rights reserved. Permission is hereby granted, free of charge, to any per 阅读全文
posted @ 2020-11-26 01:05 dong1 阅读(51) 评论(0) 推荐(0) 编辑
摘要:nanomsg-1.1.5/src/utils zhoudd@zhoudd-ubuntu:~/nanomsg-1.1.5/src/utils$ tree.├── clock.c├── clock.h├── mutex.c├── mutex.h├── sem.c├── sem.h├── sleep.c 阅读全文
posted @ 2020-11-26 01:04 dong1 阅读(98) 评论(0) 推荐(0) 编辑
摘要:bits.c /* * Copyright (C) 2018 Swift Navigation Inc. * Contact: Swift Navigation <dev@swiftnav.com> * * This source is subject to the license found in 阅读全文
posted @ 2020-11-26 01:02 dong1 阅读(80) 评论(0) 推荐(0) 编辑
摘要:redis-4.0.11\src\adlist.h /* adlist.h - A generic doubly linked list implementation * * Copyright (c) 2006-2012, Salvatore Sanfilippo <antirez at gmai 阅读全文
posted @ 2020-11-26 01:00 dong1 阅读(40) 评论(0) 推荐(0) 编辑
摘要:pjproject-2.10\pjlib\include\pj\array.h /* $Id$ */ /* * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) * Copyright (C) 2003-2008 Benny Prij 阅读全文
posted @ 2020-11-26 00:58 dong1 阅读(69) 评论(0) 推荐(0) 编辑
摘要:pjproject-2.10\pjlib-util\include\pjlib-util\base64.h /* $Id$ */ /* * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) * Copyright (C) 2003-2 阅读全文
posted @ 2020-11-26 00:56 dong1 阅读(118) 评论(0) 推荐(0) 编辑
摘要:ffmpeg-4.1/libavutil/parseutils.c typedef struct { const char *name; ///< a string representing the name of the color uint8_t rgb_color[3]; ///< RGB v 阅读全文
posted @ 2020-11-26 00:54 dong1 阅读(47) 评论(0) 推荐(0) 编辑
摘要:The library you create when you are done with Learn C The Hard Way http://c.learncodethehardway.org/ github: https://github.com/zedshaw/liblcthw 阅读全文
posted @ 2020-11-26 00:46 dong1 阅读(98) 评论(0) 推荐(0) 编辑
摘要:Linux Programmer's Manual http://www.man7.org/index.html List of source code files, by chapter, from The Linux Programming Interface The following is 阅读全文
posted @ 2020-01-07 11:30 dong1 阅读(410) 评论(0) 推荐(0) 编辑
摘要:1、linux下编译faac库 https://blog.csdn.net/u014037733/article/details/22963979 FAAC1.28 在海思HI3520D/HI3515A平台linux中的编译 优化 https://www.cnblogs.com/bhlsheji/p 阅读全文
posted @ 2019-06-26 09:39 dong1 阅读(174) 评论(0) 推荐(0) 编辑

1
点击右上角即可分享
微信分享提示