Remove unused bits_per_frame_ field.
This commit is contained in:
parent
93763c166f
commit
c780d5528d
|
@ -45,12 +45,12 @@ class AudioDecoder {
|
||||||
int DecodePacket(uint8_t* output, size_t offset, size_t size);
|
int DecodePacket(uint8_t* output, size_t offset, size_t size);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
// libav structures
|
||||||
AVCodec* codec_;
|
AVCodec* codec_;
|
||||||
AVCodecContext* context_;
|
AVCodecContext* context_;
|
||||||
AVFrame* decoded_frame_;
|
AVFrame* decoded_frame_;
|
||||||
AVPacket* packet_;
|
AVPacket* packet_;
|
||||||
|
|
||||||
uint8_t bits_per_frame_;
|
|
||||||
size_t current_frame_pos_;
|
size_t current_frame_pos_;
|
||||||
uint8_t* current_frame_;
|
uint8_t* current_frame_;
|
||||||
uint32_t frame_samples_size_;
|
uint32_t frame_samples_size_;
|
||||||
|
|
Loading…
Reference in New Issue