1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-03 05:10:03 +02:00

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

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;