Home | History | Annotate | Download | only in codecs

Lines Matching refs:encoded

20 int AudioDecoder::Decode(const uint8_t* encoded, size_t encoded_len,
24 int duration = PacketDuration(encoded, encoded_len);
29 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded,
33 int AudioDecoder::DecodeRedundant(const uint8_t* encoded, size_t encoded_len,
37 int duration = PacketDurationRedundant(encoded, encoded_len);
42 return DecodeRedundantInternal(encoded, encoded_len, sample_rate_hz, decoded,
46 int AudioDecoder::DecodeRedundantInternal(const uint8_t* encoded,
50 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded,
70 int AudioDecoder::PacketDuration(const uint8_t* encoded,
75 int AudioDecoder::PacketDurationRedundant(const uint8_t* encoded,
80 bool AudioDecoder::PacketHasFec(const uint8_t* encoded,