Skip to content

Commit

Permalink
Fix obvious mistake in P25 network audio.
Browse files Browse the repository at this point in the history
  • Loading branch information
g4klx committed Oct 3, 2016
1 parent 3be70cf commit e14f1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion P25Audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ void CP25Audio::encode(unsigned char* data, const unsigned char* imbe, unsigned
CP25Utils::encode(temp, data, 1398U, 1546U);
break;
case 8U:
CP25Utils::encode(data, temp, 1578U, 1726U);
CP25Utils::encode(temp, data, 1578U, 1726U);
break;
default:
return;
Expand Down

0 comments on commit e14f1bf

Please sign in to comment.