Skip to content

Commit

Permalink
Fix bug in PJSUA2 media port signal adjustment info (#3668)
Browse files Browse the repository at this point in the history
  • Loading branch information
nanangizz authored Aug 28, 2023
1 parent d51e247 commit 43a338e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pjsip/src/pjsua2/media.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ void ConfPortInfo::fromPj(const pjsua_conf_port_info &port_info)
portId = port_info.slot_id;
name = pj2Str(port_info.name);
format.fromPj(port_info.format);
txLevelAdj = port_info.tx_level_adj;
rxLevelAdj = port_info.rx_level_adj;
txLevelAdj = port_info.rx_level_adj;
rxLevelAdj = port_info.tx_level_adj;

/*
format.id = PJMEDIA_FORMAT_PCM;
Expand Down

0 comments on commit 43a338e

Please sign in to comment.