~ubuntu-branches/ubuntu/hardy/avidemux/hardy

« back to all changes in this revision

Viewing changes to avidemux/ADM_audiofilter/audiofilter_normalize_param.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *                                                                         *
 
3
 *   This program is free software; you can redistribute it and/or modify  *
 
4
 *   it under the terms of the GNU General Public License as published by  *
 
5
 *   the Free Software Foundation; either version 2 of the License, or     *
 
6
 *   (at your option) any later version.                                   *
 
7
 *                                                                         *
 
8
 ***************************************************************************/
 
9
 
 
10
 
 
11
#ifndef GAIN_PARAM_H
 
12
#define GAIN_PARAM_H
 
13
 
 
14
typedef enum ADM_GAINMode
 
15
{
 
16
  ADM_NO_GAIN,
 
17
  ADM_GAIN_AUTOMATIC,
 
18
  ADM_GAIN_MANUAL
 
19
  
 
20
};
 
21
 
 
22
typedef struct GAINparam
 
23
{
 
24
  ADM_GAINMode mode;
 
25
  int32_t gain10;
 
26
};
 
27
 
 
28
#endif