Displaying 1 result from an estimated 1 matches for "check_control_input".
2014 Jan 31
1
Bug in getting result of check_control_input()
opus\silk\enc_API.c
silk_Encode()
168:
if( ( ret = check_control_input( encControl ) != 0 ) ) {
priority of the '!=' operator is higher than '=' operator
fix:
if( ( ret = check_control_input( encControl ) ) != 0 ) {