baseband/acc100: fix input length for CRC24B
Input length should be reduced only for CRC24B.
Fixes: 5ad5060f8f
("baseband/acc100: add LDPC processing functions")
Cc: stable@dpdk.org
Signed-off-by: Hernan Vargas <hernan.vargas@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
This commit is contained in:
parent
e23491fc2e
commit
ec1424fffa
@ -1444,8 +1444,7 @@ acc100_dma_desc_le_fill(struct rte_bbdev_enc_op *op,
|
||||
|
||||
K = (enc->basegraph == 1 ? 22 : 10) * enc->z_c;
|
||||
in_length_in_bits = K - enc->n_filler;
|
||||
if ((enc->op_flags & RTE_BBDEV_LDPC_CRC_24A_ATTACH) ||
|
||||
(enc->op_flags & RTE_BBDEV_LDPC_CRC_24B_ATTACH))
|
||||
if (enc->op_flags & RTE_BBDEV_LDPC_CRC_24B_ATTACH)
|
||||
in_length_in_bits -= 24;
|
||||
in_length_in_bytes = in_length_in_bits >> 3;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user