Skip to content
Snippets Groups Projects
Commit b41dec04 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #9979: ulaw: fixed unused var warning

parent 1a9f1a30
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ class Ulaw : public sfl::AudioCodec {
return frameSize_;
}
virtual int encode(unsigned char *dst, SFLDataFormat *src, size_t buf_size) {
virtual int encode(unsigned char *dst, SFLDataFormat *src, size_t /*buf_size*/) {
for (unsigned char * end = dst + frameSize_; dst < end; ++src, ++dst)
*dst = ULawEncode(*src);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment