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

« back to all changes in this revision

Viewing changes to libavcodec/mlp.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-01-18 15:46:55 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20140118154655-iz6u00yevkat1jqi
Tags: 6:10~alpha2-1
New Upstream release 10_alpha2. This upstream git snapshot has too many
changes to list here, cf. to the upstream Changelog:
http://git.libav.org/?p=libav.git;a=blob;f=Changelog;hb=refs/tags/v10_alpha2

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
    return value;
125
125
}
126
126
 
 
127
typedef enum THDChannelModifier {
 
128
    THD_CH_MODIFIER_NOTINDICATED  = 0x0,
 
129
    THD_CH_MODIFIER_STEREO        = 0x0, // Stereo (not Dolby Surround)
 
130
    THD_CH_MODIFIER_LTRT          = 0x1, // Dolby Surround
 
131
    THD_CH_MODIFIER_LBINRBIN      = 0x2, // Dolby Headphone
 
132
    THD_CH_MODIFIER_MONO          = 0x3, // Mono or Dual Mono
 
133
    THD_CH_MODIFIER_NOTSURROUNDEX = 0x1, // Not Dolby Digital EX
 
134
    THD_CH_MODIFIER_SURROUNDEX    = 0x2, // Dolby Digital EX
 
135
} THDChannelModifier;
 
136
 
127
137
#endif /* AVCODEC_MLP_H */