openjpeg.c : fixed initialization of parameters->cp_disto_alloc/fixed_quality/fixed_alloc/tcp_numlayers because they were preventing to use the -q and -f options.
This commit is contained in:
parent
83abf56736
commit
9dbbc6ca13
|
@ -5,6 +5,9 @@ What's New for OpenJPEG
|
||||||
! : changed
|
! : changed
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
|
September 8, 2009
|
||||||
|
* [antonin] openjpeg.c : fixed initialization of parameters->cp_disto_alloc/fixed_quality/fixed_alloc/tcp_numlayers because they were preventing to use the -q and -f options.
|
||||||
|
|
||||||
August 31, 2009
|
August 31, 2009
|
||||||
* [antonin] JavaOpenJpegDecoder.c : fixed a signed/unsigned behaviour when returning form C to JAVA
|
* [antonin] JavaOpenJpegDecoder.c : fixed a signed/unsigned behaviour when returning form C to JAVA
|
||||||
|
|
||||||
|
|
|
@ -239,8 +239,10 @@ void OPJ_CALLCONV opj_set_default_encoder_parameters(opj_cparameters_t *paramete
|
||||||
parameters->decod_format = -1;
|
parameters->decod_format = -1;
|
||||||
parameters->cod_format = -1;
|
parameters->cod_format = -1;
|
||||||
parameters->tcp_rates[0] = 0;
|
parameters->tcp_rates[0] = 0;
|
||||||
parameters->tcp_numlayers = 1;
|
parameters->tcp_numlayers = 0;
|
||||||
parameters->cp_disto_alloc = 1;
|
parameters->cp_disto_alloc = 0;
|
||||||
|
parameters->cp_fixed_alloc = 0;
|
||||||
|
parameters->cp_fixed_quality = 0;
|
||||||
|
|
||||||
/* UniPG>> */
|
/* UniPG>> */
|
||||||
#ifdef USE_JPWL
|
#ifdef USE_JPWL
|
||||||
|
|
Loading…
Reference in New Issue