Mercurial > libavcodec.hg
diff 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 |
line wrap: on
line diff
--- a/flacenc.c Sat Mar 21 01:16:38 2009 +0000 +++ b/flacenc.c Sat Mar 21 01:20:28 2009 +0000 @@ -80,10 +80,12 @@ } FlacFrame; typedef struct FlacEncodeContext { - FLACSTREAMINFO PutBitContext pb; + int channels; + int samplerate; int sr_code[2]; int min_framesize; + int max_framesize; int max_encoded_framesize; uint32_t frame_count; uint64_t sample_count;
