llvorbisencode.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file vorbisencode.h
  3.  * @brief Vorbis encoding routine routine for Indra.
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_VORBISENCODE_H
  33. #define LL_VORBISENCODE_H
  34. const S32 LLVORBISENC_NOERR                        = 0; // no error
  35. const S32 LLVORBISENC_SOURCE_OPEN_ERR              = 1; // error opening source
  36. const S32 LLVORBISENC_DEST_OPEN_ERR                = 2; // error opening destination
  37. const S32 LLVORBISENC_WAV_FORMAT_ERR               = 3; // not a WAV
  38. const S32 LLVORBISENC_PCM_FORMAT_ERR               = 4; // not a PCM
  39. const S32 LLVORBISENC_MONO_ERR                     = 5; // can't do mono
  40. const S32 LLVORBISENC_STEREO_ERR                   = 6; // can't do stereo
  41. const S32 LLVORBISENC_MULTICHANNEL_ERR             = 7; // can't do stereo
  42. const S32 LLVORBISENC_UNSUPPORTED_SAMPLE_RATE      = 8; // unsupported sample rate
  43. const S32 LLVORBISENC_UNSUPPORTED_WORD_SIZE        = 9; // unsupported word size
  44. const S32 LLVORBISENC_CLIP_TOO_LONG                = 10; // source file is too long
  45. const F32 LLVORBIS_CLIP_MAX_TIME                               = 10.0f;
  46. const U8  LLVORBIS_CLIP_MAX_CHANNELS                   = 2;
  47. const U32 LLVORBIS_CLIP_SAMPLE_RATE                            = 44100;
  48. const U32 LLVORBIS_CLIP_MAX_SAMPLES_PER_CHANNEL        = (U32)(LLVORBIS_CLIP_MAX_TIME * LLVORBIS_CLIP_SAMPLE_RATE);
  49. const U32 LLVORBIS_CLIP_MAX_SAMPLES                            = LLVORBIS_CLIP_MAX_SAMPLES_PER_CHANNEL * LLVORBIS_CLIP_MAX_CHANNELS;
  50. const size_t LLVORBIS_CLIP_MAX_SAMPLE_DATA             = LLVORBIS_CLIP_MAX_SAMPLES * 2; // 2 = 16-bit
  51.  
  52. // Treat anything this long as a bad asset. A little fudge factor at the end:
  53. // Make that a lot of fudge factor. We're allowing 30 sec for now - 3x legal upload
  54. const size_t LLVORBIS_CLIP_REJECT_SAMPLES              = LLVORBIS_CLIP_MAX_SAMPLES * 3;
  55. const size_t LLVORBIS_CLIP_REJECT_SIZE                 = LLVORBIS_CLIP_MAX_SAMPLE_DATA * 3;
  56. S32 check_for_invalid_wav_formats(const std::string& in_fname, std::string& error_msg);
  57. S32 encode_vorbis_file(const std::string& in_fname, const std::string& out_fname);
  58. #endif