avcodec/mlpenc: stop using hardcoded value

This commit is contained in:
Paul B Mahol 2021-09-05 15:00:14 +02:00
parent ac29cec312
commit 5852bb6b4b
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ static int compare_decoding_params(MLPEncodeContext *ctx)
if (prev_cp->codebook != cp->codebook ||
prev_cp->huff_lsbs != cp->huff_lsbs )
retval |= 0x1;
retval |= PARAM_PRESENT;
}
return retval;