~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavfilter/af_volume.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-10 09:45:02 UTC
  • mfrom: (1.3.14)
  • mto: (1.3.16)
  • mto: This revision was merged to the branch mainline in revision 41.
  • Revision ID: package-import@ubuntu.com-20140810094502-mmdupdml8tixclg2
Tags: upstream-11~alpha1
ImportĀ upstreamĀ versionĀ 11~alpha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    PRECISION_DOUBLE,
36
36
};
37
37
 
 
38
enum ReplayGainType {
 
39
    REPLAYGAIN_DROP,
 
40
    REPLAYGAIN_IGNORE,
 
41
    REPLAYGAIN_TRACK,
 
42
    REPLAYGAIN_ALBUM,
 
43
};
 
44
 
38
45
typedef struct VolumeContext {
39
46
    const AVClass *class;
40
47
    AVFloatDSPContext fdsp;
41
48
    enum PrecisionType precision;
 
49
    enum ReplayGainType replaygain;
 
50
    double replaygain_preamp;
 
51
    int    replaygain_noclip;
42
52
    double volume;
43
53
    int    volume_i;
44
54
    int    channels;