Remove unused bits_per_frame_ field.

This commit is contained in:
Dr. Chat 2015-05-31 13:48:14 -05:00
parent 93763c166f
commit c780d5528d
1 changed files with 1 additions and 1 deletions

View File

@ -45,12 +45,12 @@ class AudioDecoder {
int DecodePacket(uint8_t* output, size_t offset, size_t size);
private:
// libav structures
AVCodec* codec_;
AVCodecContext* context_;
AVFrame* decoded_frame_;
AVPacket* packet_;
uint8_t bits_per_frame_;
size_t current_frame_pos_;
uint8_t* current_frame_;
uint32_t frame_samples_size_;