Skip to content
Snippets Groups Projects
Commit 5b6791bf authored by Ralph Giles's avatar Ralph Giles Committed by Jean-Marc Valin
Browse files

Remove an unused variable.

Fix a warning on gcc 4.6. 'internal_sampling_rate_Hz' was
replaced by 'bandwidth' in a10e8796 but the local variable
holding the setting wasn't removed.
parent a45724ef
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,6 @@ int main(int argc, char *argv[])
unsigned char *data[2];
int sampling_rate;
int use_vbr;
int internal_sampling_rate_Hz;
int max_payload_bytes;
int complexity;
int use_inbandfec;
......@@ -151,7 +150,6 @@ int main(int argc, char *argv[])
/* defaults: */
use_vbr = 1;
bandwidth=OPUS_BANDWIDTH_AUTO;
internal_sampling_rate_Hz = sampling_rate;
max_payload_bytes = MAX_PACKET;
complexity = 10;
use_inbandfec = 0;
......
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