codecs.h

来自「Intercom 是一个 Unix系统上灵活的语音传输软件。支持标准音频压缩比如」· C头文件 代码 · 共 33 行

H
33
字号
/*  codecs.h -- Audio CODEC interface for Intercom    Copyright (C) 2001-2003  Shane Wegner    This file is part of Intercom.    Intercom is free software; you can redistribute it and/or modify it    under the terms of version 2 of the GNU General Public License as    published by the Free Software Foundation.    Intercom 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.    You should have received a copy of version 2 of the GNU General Public    License along with Intercom; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA    To contact the author, please send email to shane@cm.nu.    *//* $Id: codecs.h,v 1.4 2003/02/13 20:22:49 shane Exp $ */#ifndef CODECS_H#define CODECS_H#include "iobuff.h"int codec_encode(int format, const char *buff, size_t n, struct iobuff *iobout);int codec_decode(int format, const char *buff, size_t n, struct iobuff *iobout);void codecs_init(void);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?