summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2002-06-26 09:31:38 +0000
committerMonty <xiphmont@xiph.org>2002-06-26 09:31:38 +0000
commit3902a9210469d1e04d32062a1726fcce23c96919 (patch)
treecef11c71f5b29b3802acf4bfc38510e4c3f970be
parentb8f8c598a1bf5fe170ec4ec28cb66e3d641ed89f (diff)
downloadlibvorbis-git-3902a9210469d1e04d32062a1726fcce23c96919.tar.gz
missed this include
svn path=/branches/branch_monty_20020507/vorbis/; revision=3425
-rw-r--r--lib/highlevel.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/lib/highlevel.h b/lib/highlevel.h
new file mode 100644
index 00000000..fe9e4f26
--- /dev/null
+++ b/lib/highlevel.h
@@ -0,0 +1,56 @@
+/********************************************************************
+ * *
+ * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
+ * *
+ * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
+ * by the XIPHOPHORUS Company http://www.xiph.org/ *
+ * *
+ ********************************************************************
+
+ function: highlevel encoder setup struct seperated out for vorbisenc clarity
+ last mod: $Id: highlevel.h,v 1.1.2.1 2002/06/26 09:31:38 xiphmont Exp $
+
+ ********************************************************************/
+
+typedef struct highlevel_byblocktype {
+ double tone_mask_setting;
+ double tone_peaklimit_setting;
+ double noise_bias_setting;
+ double noise_compand_setting;
+} highlevel_byblocktype;
+
+typedef struct highlevel_encode_setup {
+ void *setup;
+
+ double base_setting;
+ double long_setting;
+ double short_setting;
+
+ int managed;
+ long bitrate_min;
+ long bitrate_av_lo;
+ long bitrate_av_hi;
+ long bitrate_max;
+ double bitrate_limit_window;
+ double bitrate_av_window;
+ double bitrate_av_window_center;
+
+ int impulse_block_p;
+ int noise_normalize_p;
+
+ double stereo_point_setting;
+ double lowpass_kHz;
+
+ double ath_floating_dB;
+ double ath_absolute_dB;
+
+ double amplitude_track_dBpersec;
+ double trigger_setting;
+
+ highlevel_byblocktype block[4]; /* padding, impulse, transition, long */
+
+} highlevel_encode_setup;
+