~siretart/libav/trusty

« back to all changes in this revision

Viewing changes to libavcodec/flac.h

  • Committer: Reinhard Tartler
  • Date: 2013-10-23 03:04:17 UTC
  • mfrom: (1.3.36 sid)
  • Revision ID: siretart@tauware.de-20131023030417-1o6mpkl1l0raifjt
mergeĀ fromĀ debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#define FLAC_MIN_FRAME_SIZE    11
38
38
 
39
39
enum {
40
 
    FLAC_CHMODE_INDEPENDENT =  0,
41
 
    FLAC_CHMODE_LEFT_SIDE   =  8,
42
 
    FLAC_CHMODE_RIGHT_SIDE  =  9,
43
 
    FLAC_CHMODE_MID_SIDE    = 10,
 
40
    FLAC_CHMODE_INDEPENDENT = 0,
 
41
    FLAC_CHMODE_LEFT_SIDE   = 1,
 
42
    FLAC_CHMODE_RIGHT_SIDE  = 2,
 
43
    FLAC_CHMODE_MID_SIDE    = 3,
44
44
};
45
45
 
46
46
enum {
137
137
 */
138
138
int ff_flac_decode_frame_header(AVCodecContext *avctx, GetBitContext *gb,
139
139
                                FLACFrameInfo *fi, int log_level_offset);
 
140
 
 
141
void ff_flac_set_channel_layout(AVCodecContext *avctx);
 
142
 
140
143
#endif /* AVCODEC_FLAC_H */