comparison flacenc.c @ 9214:78b55e071bb9 libavcodec

revert accidental unrelated change in last commit
author jbr
date Sat, 21 Mar 2009 01:20:28 +0000
parents 782d31263979
children 64246d9e583a
comparison
equal deleted inserted replaced
9213:782d31263979 9214:78b55e071bb9
78 uint8_t crc8; 78 uint8_t crc8;
79 int ch_mode; 79 int ch_mode;
80 } FlacFrame; 80 } FlacFrame;
81 81
82 typedef struct FlacEncodeContext { 82 typedef struct FlacEncodeContext {
83 FLACSTREAMINFO
84 PutBitContext pb; 83 PutBitContext pb;
84 int channels;
85 int samplerate;
85 int sr_code[2]; 86 int sr_code[2];
86 int min_framesize; 87 int min_framesize;
88 int max_framesize;
87 int max_encoded_framesize; 89 int max_encoded_framesize;
88 uint32_t frame_count; 90 uint32_t frame_count;
89 uint64_t sample_count; 91 uint64_t sample_count;
90 uint8_t md5sum[16]; 92 uint8_t md5sum[16];
91 FlacFrame frame; 93 FlacFrame frame;