Fix nr of bytes sent to Opus decoder in DTX mode

BUG=webrtc:7144

Review-Url: https://codereview.webrtc.org/2693453003
Cr-Commit-Position: refs/heads/master@{#16542}
This commit is contained in:
flim
2017-02-10 13:50:38 -08:00
committed by Commit bot
parent 90f1e1e0d7
commit 9238245d9b

View File

@ -113,7 +113,7 @@ int WebRtcOpus_Encode(OpusEncInst* inst,
return 0;
} else {
inst->in_dtx_mode = 1;
return 1;
return res;
}
}