Binary compatibility report for the opus library between 1.0.0 and 1.0.1 versions on x86
Test Info
Library Name | opus |
Version #1 | 1.0.0 |
Version #2 | 1.0.1 |
CPU Type | x86 |
GCC Version | 4.6.1 |
Test Results
Total Header Files | 4 |
Total Shared Libraries | 1 |
Total Symbols / Types | 44 / 40 |
Verdict | Compatible |
Problem Summary
| Severity | Count |
---|
Added Symbols | - | 0 |
Removed Symbols | High | 0 |
Problems with Data Types | High | 0 |
Medium | 0 |
Low | 0 |
Problems with Symbols | High | 0 |
Medium | 0 |
Low | 20 |
Problems with Constants | Low | 0 |
Other Changes in Constants | - | 5 |
Problems with Symbols, Low Severity (20)
opus.h,
libopus.so.0.1.0
[+] opus_decode ( OpusDecoder* st, unsigned char const* data, int len, opus_int16* pcm, int frame_size, int decode_fec ) (1)
changed to:opus_decode ( OpusDecoder* st, unsigned char const* data, opus_int32 len, opus_int16* pcm, int frame_size, int decode_fec )
| Change | Effect |
---|
1 | Type of 3rd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_decode_float ( OpusDecoder* st, unsigned char const* data, int len, float* pcm, int frame_size, int decode_fec ) (1)
changed to:opus_decode_float ( OpusDecoder* st, unsigned char const* data, opus_int32 len, float* pcm, int frame_size, int decode_fec )
| Change | Effect |
---|
1 | Type of 3rd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_decoder_get_nb_samples ( OpusDecoder const* dec, unsigned char const* packet, int len ) (1)
changed to:opus_decoder_get_nb_samples ( OpusDecoder const* dec, unsigned char const* packet, opus_int32 len )
| Change | Effect |
---|
1 | Type of 3rd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_encode ( OpusEncoder* st, opus_int16 const* pcm, int frame_size, unsigned char* data, int max_data_bytes ) (2)
changed to:opus_encode ( OpusEncoder* st, opus_int16 const* pcm, int frame_size, unsigned char* data, opus_int32 max_data_bytes )
| Change | Effect |
---|
1 | Type of 5th parameter max_data_bytes has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
2 | Type of return value has been changed from int to opus_int32. | Replacement of return type may indicate a change in its semantic meaning. |
[+] opus_encode_float ( OpusEncoder* st, float const* pcm, int frame_size, unsigned char* data, int max_data_bytes ) (2)
changed to:opus_encode_float ( OpusEncoder* st, float const* pcm, int frame_size, unsigned char* data, opus_int32 max_data_bytes )
| Change | Effect |
---|
1 | Type of 5th parameter max_data_bytes has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
2 | Type of return value has been changed from int to opus_int32. | Replacement of return type may indicate a change in its semantic meaning. |
[+] opus_packet_get_nb_frames ( unsigned char const* packet, int len ) (1)
changed to:opus_packet_get_nb_frames ( unsigned char const* packet, opus_int32 len )
| Change | Effect |
---|
1 | Type of 2nd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_packet_parse ( unsigned char const* data, int len, unsigned char* out_toc, unsigned char const** frames, short* size, int* payload_offset ) (1)
changed to:opus_packet_parse ( unsigned char const* data, opus_int32 len, unsigned char* out_toc, unsigned char const** frames, short* size, int* payload_offset )
| Change | Effect |
---|
1 | Type of 2nd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_repacketizer_cat ( OpusRepacketizer* rp, unsigned char const* data, int len ) (1)
changed to:opus_repacketizer_cat ( OpusRepacketizer* rp, unsigned char const* data, opus_int32 len )
| Change | Effect |
---|
1 | Type of 3rd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_repacketizer_out ( OpusRepacketizer* rp, unsigned char* data, int maxlen ) (1)
changed to:opus_repacketizer_out ( OpusRepacketizer* rp, unsigned char* data, opus_int32 maxlen )
| Change | Effect |
---|
1 | Type of 3rd parameter maxlen has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_repacketizer_out_range ( OpusRepacketizer* rp, int begin, int end, unsigned char* data, int maxlen ) (1)
changed to:opus_repacketizer_out_range ( OpusRepacketizer* rp, int begin, int end, unsigned char* data, opus_int32 maxlen )
| Change | Effect |
---|
1 | Type of 5th parameter maxlen has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
opus_multistream.h,
libopus.so.0.1.0
[+] opus_multistream_decode ( OpusMSDecoder* st, unsigned char const* data, int len, opus_int16* pcm, int frame_size, int decode_fec ) (1)
changed to:opus_multistream_decode ( OpusMSDecoder* st, unsigned char const* data, opus_int32 len, opus_int16* pcm, int frame_size, int decode_fec )
| Change | Effect |
---|
1 | Type of 3rd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_multistream_decode_float ( OpusMSDecoder* st, unsigned char const* data, int len, float* pcm, int frame_size, int decode_fec ) (1)
changed to:opus_multistream_decode_float ( OpusMSDecoder* st, unsigned char const* data, opus_int32 len, float* pcm, int frame_size, int decode_fec )
| Change | Effect |
---|
1 | Type of 3rd parameter len has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_multistream_decoder_create ( opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char* mapping, int* error ) (1)
changed to:opus_multistream_decoder_create ( opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char const* mapping, int* error )
| Change | Effect |
---|
1 | Type of 5th parameter mapping has been changed from unsigned char* to unsigned char const*. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_multistream_decoder_init ( OpusMSDecoder* st, opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char* mapping ) (1)
changed to:opus_multistream_decoder_init ( OpusMSDecoder* st, opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char const* mapping )
| Change | Effect |
---|
1 | Type of 6th parameter mapping has been changed from unsigned char* to unsigned char const*. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_multistream_encode ( OpusMSEncoder* st, opus_int16 const* pcm, int frame_size, unsigned char* data, int max_data_bytes ) (1)
changed to:opus_multistream_encode ( OpusMSEncoder* st, opus_int16 const* pcm, int frame_size, unsigned char* data, opus_int32 max_data_bytes )
| Change | Effect |
---|
1 | Type of 5th parameter max_data_bytes has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_multistream_encode_float ( OpusMSEncoder* st, float const* pcm, int frame_size, unsigned char* data, int max_data_bytes ) (1)
changed to:opus_multistream_encode_float ( OpusMSEncoder* st, float const* pcm, int frame_size, unsigned char* data, opus_int32 max_data_bytes )
| Change | Effect |
---|
1 | Type of 5th parameter max_data_bytes has been changed from int to opus_int32. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_multistream_encoder_create ( opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char* mapping, int application, int* error ) (1)
changed to:opus_multistream_encoder_create ( opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char const* mapping, int application, int* error )
| Change | Effect |
---|
1 | Type of 5th parameter mapping has been changed from unsigned char* to unsigned char const*. | Replacement of parameter data type may indicate a change in its semantic meaning. |
[+] opus_multistream_encoder_init ( OpusMSEncoder* st, opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char* mapping, int application ) (1)
changed to:opus_multistream_encoder_init ( OpusMSEncoder* st, opus_int32 Fs, int channels, int streams, int coupled_streams, unsigned char const* mapping, int application )
| Change | Effect |
---|
1 | Type of 6th parameter mapping has been changed from unsigned char* to unsigned char const*. | Replacement of parameter data type may indicate a change in its semantic meaning. |
to the top
Other Changes in Constants (5)
opus_defines.h
[+] OPUS_GET_GAIN_REQUEST
| Change | Effect |
---|
1 | The constant OPUS_GET_GAIN_REQUEST with value 4045 has been added. | No effect. |
[+] OPUS_GET_LSB_DEPTH_REQUEST
| Change | Effect |
---|
1 | The constant OPUS_GET_LSB_DEPTH_REQUEST with value 4037 has been added. | No effect. |
[+] OPUS_GET_SAMPLE_RATE_REQUEST
| Change | Effect |
---|
1 | The constant OPUS_GET_SAMPLE_RATE_REQUEST with value 4029 has been added. | No effect. |
[+] OPUS_SET_GAIN_REQUEST
| Change | Effect |
---|
1 | The constant OPUS_SET_GAIN_REQUEST with value 4034 has been added. | No effect. |
[+] OPUS_SET_LSB_DEPTH_REQUEST
| Change | Effect |
---|
1 | The constant OPUS_SET_LSB_DEPTH_REQUEST with value 4036 has been added. | No effect. |
to the top
Header Files (4)
opus.h
opus_defines.h
opus_multistream.h
opus_types.h
to the top
Shared Libraries (1)
libopus.so.0.1.0
to the top