Update ABI/API compatibility reports after commit 045aa4d9f2
This commit is contained in:
parent
90d2277e69
commit
5728059da1
|
@ -20,7 +20,29 @@
|
||||||
<br/>
|
<br/>
|
||||||
<h1>Changelog from Git</h1><br/><br/>
|
<h1>Changelog from Git</h1><br/><br/>
|
||||||
<div class='changelog'>
|
<div class='changelog'>
|
||||||
<pre class='wrap'>commit da940424816e11d624362ce080bc026adffa26e8
|
<pre class='wrap'>commit 045aa4d9f297b8d3d5f89e9983a54252d103a3da
|
||||||
|
Author: Stefan Weil <sw@weilnetz.de>
|
||||||
|
Date: 2016-09-21 13:17:09 +0200
|
||||||
|
|
||||||
|
Fix potential out-of-bounds read (coverity) (#844)
|
||||||
|
|
||||||
|
* query_parser: Fix potential out-of-bounds read (coverity)
|
||||||
|
|
||||||
|
CID 1190207 (#1 of 1): Out-of-bounds read (OVERRUN)
|
||||||
|
|
||||||
|
Variable i must be checked before testing query_param.box_type.
|
||||||
|
|
||||||
|
Signed-off-by: Stefan Weil <sw@weilnetz.de>
|
||||||
|
|
||||||
|
* jpip_parser: Fix potential out-of-bounds read (coverity)
|
||||||
|
|
||||||
|
CID 1190206 (#1 of 1): Out-of-bounds read (OVERRUN)
|
||||||
|
|
||||||
|
Variable i must be checked before testing query_param.box_type.
|
||||||
|
|
||||||
|
Signed-off-by: Stefan Weil <sw@weilnetz.de>
|
||||||
|
|
||||||
|
commit da940424816e11d624362ce080bc026adffa26e8
|
||||||
Merge: 31d44f0 893143c
|
Merge: 31d44f0 893143c
|
||||||
Author: Antonin Descampe <antonin@gmail.com>
|
Author: Antonin Descampe <antonin@gmail.com>
|
||||||
Date: 2016-09-20 18:59:30 +0200
|
Date: 2016-09-20 18:59:30 +0200
|
||||||
|
@ -773,14 +795,6 @@ Date: 2016-04-30 18:51:36 +0200
|
||||||
Update uclouvain/openjpeg#725
|
Update uclouvain/openjpeg#725
|
||||||
Update uclouvain/openjpeg#726
|
Update uclouvain/openjpeg#726
|
||||||
|
|
||||||
commit 9a20f8e8d1a91bd032e81ac53bf9a48dbb92bc29
|
|
||||||
Author: Matthieu Darbois <mayeut@users.noreply.github.com>
|
|
||||||
Date: 2016-04-30 17:58:04 +0200
|
|
||||||
|
|
||||||
Update lcms (#544)
|
|
||||||
|
|
||||||
Update to mm2/Little-CMS@0e8234e090d6aab33f90e2eb0296f30aa0705e57
|
|
||||||
|
|
||||||
...</pre></div>
|
...</pre></div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -423,7 +423,7 @@ $VAR1 = {
|
||||||
'2.0.1' => '2014-04-22 07:53',
|
'2.0.1' => '2014-04-22 07:53',
|
||||||
'2.1' => '2014-04-29 12:58',
|
'2.1' => '2014-04-29 12:58',
|
||||||
'2.1.1' => '2016-07-05 14:54',
|
'2.1.1' => '2016-07-05 14:54',
|
||||||
'current' => '2016-09-20 18:59:30'
|
'current' => '2016-09-21 13:17:09'
|
||||||
},
|
},
|
||||||
'HeadersDiff' => {
|
'HeadersDiff' => {
|
||||||
'1.1' => {
|
'1.1' => {
|
||||||
|
@ -491,7 +491,7 @@ $VAR1 = {
|
||||||
'Maintainer' => 'OpenJPEG team',
|
'Maintainer' => 'OpenJPEG team',
|
||||||
'MaintainerUrl' => 'http://www.openjpeg.org/',
|
'MaintainerUrl' => 'http://www.openjpeg.org/',
|
||||||
'PackageDiff' => {},
|
'PackageDiff' => {},
|
||||||
'ScmUpdateTime' => '1474392132',
|
'ScmUpdateTime' => '1474457128',
|
||||||
'Soname' => {
|
'Soname' => {
|
||||||
'1.1' => {
|
'1.1' => {
|
||||||
'lib/libopenjpeg.so' => 'libopenjpeg.so'
|
'lib/libopenjpeg.so' => 'libopenjpeg.so'
|
||||||
|
|
Binary file not shown.
|
@ -1262,6 +1262,25 @@ OPJ_API void OPJ_CALLCONV opj_set_default_decoder_parameters(opj_dparameters_t *
|
||||||
OPJ_API OPJ_BOOL OPJ_CALLCONV opj_setup_decoder(opj_codec_t *p_codec,
|
OPJ_API OPJ_BOOL OPJ_CALLCONV opj_setup_decoder(opj_codec_t *p_codec,
|
||||||
opj_dparameters_t *parameters );
|
opj_dparameters_t *parameters );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allocates worker threads for the compressor/decompressor.
|
||||||
|
*
|
||||||
|
* By default, only the main thread is used. If this function is not used,
|
||||||
|
* but the OPJ_NUM_THREADS environment variable is set, its value will be
|
||||||
|
* used to initialize the number of threads. The value can be either an integer
|
||||||
|
* number, or "ALL_CPUS". If OPJ_NUM_THREADS is set and this function is called,
|
||||||
|
* this function will override the behaviour of the environment variable.
|
||||||
|
*
|
||||||
|
* Note: currently only has effect on the decompressor.
|
||||||
|
*
|
||||||
|
* @param p_codec decompressor handler
|
||||||
|
* @param num_threads number of threads.
|
||||||
|
*
|
||||||
|
* @return OPJ_TRUE if the decoder is correctly set
|
||||||
|
*/
|
||||||
|
OPJ_API OPJ_BOOL OPJ_CALLCONV opj_codec_set_threads(opj_codec_t *p_codec,
|
||||||
|
int num_threads);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Decodes an image header.
|
* Decodes an image header.
|
||||||
*
|
*
|
||||||
|
@ -1554,6 +1573,19 @@ OPJ_API OPJ_BOOL OPJ_CALLCONV opj_set_MCT( opj_cparameters_t *parameters,
|
||||||
OPJ_INT32 * p_dc_shift,
|
OPJ_INT32 * p_dc_shift,
|
||||||
OPJ_UINT32 pNbComp);
|
OPJ_UINT32 pNbComp);
|
||||||
|
|
||||||
|
/*
|
||||||
|
==========================================================
|
||||||
|
Thread functions
|
||||||
|
==========================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** Returns if the library is built with thread support.
|
||||||
|
* OPJ_TRUE if mutex, condition, thread, thread pool are available.
|
||||||
|
*/
|
||||||
|
OPJ_API OPJ_BOOL OPJ_CALLCONV opj_has_thread_support(void);
|
||||||
|
|
||||||
|
/** Return the number of virtual CPUs */
|
||||||
|
OPJ_API int OPJ_CALLCONV opj_get_num_cpus(void);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Binary file not shown.
|
@ -13,7 +13,7 @@ GET_FILENAME_COMPONENT(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
# Import target "openjp2" for configuration "Debug"
|
# Import target "openjp2" for configuration "Debug"
|
||||||
SET_PROPERTY(TARGET openjp2 APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
SET_PROPERTY(TARGET openjp2 APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
||||||
SET_TARGET_PROPERTIES(openjp2 PROPERTIES
|
SET_TARGET_PROPERTIES(openjp2 PROPERTIES
|
||||||
IMPORTED_LINK_INTERFACE_LIBRARIES_DEBUG "m"
|
IMPORTED_LINK_INTERFACE_LIBRARIES_DEBUG "m;-lpthread"
|
||||||
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libopenjp2.so.2.1.1"
|
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libopenjp2.so.2.1.1"
|
||||||
IMPORTED_SONAME_DEBUG "libopenjp2.so.7"
|
IMPORTED_SONAME_DEBUG "libopenjp2.so.7"
|
||||||
)
|
)
|
||||||
|
|
|
@ -113,9 +113,7 @@
|
||||||
"HeadersDiff": "On",
|
"HeadersDiff": "On",
|
||||||
"PkgDiff": "Off",
|
"PkgDiff": "Off",
|
||||||
"ABIView": "Off",
|
"ABIView": "Off",
|
||||||
"ABIDiff": "Off",
|
"ABIDiff": "Off"
|
||||||
"PublicSymbols": "public_symbols/openjpeg/1.4/list",
|
|
||||||
"PublicTypes": "public_types/openjpeg/1.4/list"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Number": "1.2",
|
"Number": "1.2",
|
||||||
|
@ -125,9 +123,7 @@
|
||||||
"HeadersDiff": "On",
|
"HeadersDiff": "On",
|
||||||
"PkgDiff": "Off",
|
"PkgDiff": "Off",
|
||||||
"ABIView": "Off",
|
"ABIView": "Off",
|
||||||
"ABIDiff": "Off",
|
"ABIDiff": "Off"
|
||||||
"PublicSymbols": "public_symbols/openjpeg/1.2/list",
|
|
||||||
"PublicTypes": "public_types/openjpeg/1.2/list"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Number": "1.1",
|
"Number": "1.1",
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<th>Headers<br/>Diff</th>
|
<th>Headers<br/>Diff</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id='current'><td>current</td>
|
<tr id='current'><td>current</td>
|
||||||
<td>2016-09-20<br/>18:59</td>
|
<td>2016-09-21<br/>13:17</td>
|
||||||
<td>7</td>
|
<td>7</td>
|
||||||
<td><a href='../../changelog/openjpeg/current/log.html'>changelog</a></td>
|
<td><a href='../../changelog/openjpeg/current/log.html'>changelog</a></td>
|
||||||
<td class='ok'><a href='../../objects_report/openjpeg/2.1.1/current/report.html'>100%</a></td>
|
<td class='ok'><a href='../../objects_report/openjpeg/2.1.1/current/report.html'>100%</a></td>
|
||||||
|
@ -143,7 +143,7 @@
|
||||||
<td>N/A</td>
|
<td>N/A</td>
|
||||||
<td>N/A</td>
|
<td>N/A</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table><br/>Maintained by <a href='http://www.openjpeg.org/'>OpenJPEG team</a>. Last updated on Tue Sep 20 17:32:15 2016.<br/>
|
</table><br/>Maintained by <a href='http://www.openjpeg.org/'>OpenJPEG team</a>. Last updated on Wed Sep 21 11:25:57 2016.<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<hr/>
|
<hr/>
|
||||||
<div align='right'><a class='home' title="Andrey Ponomarenko's ABI laboratory" href='http://abi-laboratory.pro/'>abi-laboratory.pro</a></div>
|
<div align='right'><a class='home' title="Andrey Ponomarenko's ABI laboratory" href='http://abi-laboratory.pro/'>abi-laboratory.pro</a></div>
|
||||||
|
|
Loading…
Reference in New Issue