00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 2011, Digium, Inc. 00005 * 00006 * David Vossel <dvossel@digium.com> 00007 * 00008 * See http://www.asterisk.org for more information about 00009 * the Asterisk project. Please do not directly contact 00010 * any of the maintainers of this project for assistance; 00011 * the project provides a web site, mailing lists and IRC 00012 * channels for your use. 00013 * 00014 * This program is free software, distributed under the terms of 00015 * the GNU General Public License Version 2. See the LICENSE file 00016 * at the top of the source tree. 00017 */ 00018 00019 /*! 00020 * \file 00021 * \brief CELT Format Attributes 00022 * 00023 * \author David Vossel <dvossel@digium.com> 00024 */ 00025 #ifndef _AST_FORMAT_CELT_H_ 00026 #define _AST_FORMAT_CELT_H_ 00027 00028 #define AST_CELT_DEFAULT_FRAME_SIZE 480 00029 00030 /*! CELT format attribute key value pairs, all are accessible through ast_format_get_value()*/ 00031 enum celt_attr_keys { 00032 CELT_ATTR_KEY_SAMP_RATE, /*!< value is an unsigned integer representing sample rate */ 00033 CELT_ATTR_KEY_MAX_BITRATE, /*!< value is an int */ 00034 CELT_ATTR_KEY_FRAME_SIZE, /*!< value is an int */ 00035 }; 00036 00037 #endif /* _AST_FORMAT_CELT_H */