| Previous | Next |
| ippStsAacWinLenErr | ippStsAacWinSeqErr |
ippStsAacWinGrpErr
Eight-short-sequence frames group short windows before scalefactors and sections are decoded. The grouping controls how scalefactor bands are traversed.
An invalid group count or grouping pattern makes section and spectral decoding ambiguous. Verify the group lengths before investigating later coefficient errors.
Useful checks for ippStsAacWinGrpErr
- Whether the window sequence is actually eight-short-sequence.
- The window-group lengths derived from the grouping bits.
- The resulting number of scalefactor-band groups.
for it, Intel IPP Error Reporting · FFmpeg AAC decoder source · FFmpeg ADTS header parser
Interpreting the result
This result is Intel IPP status -145. AllStat describes it as “AAC: Invalid number of groups for current window length.”. The decisive context is the exact IPP routine and overload, because status names are shared across image, signal, codec, cryptography, and data-compression domains with different parameter contracts.
Developer checks
- Record the full function name, library version and CPU dispatch, source and destination types, ROI or vector length, step values, scale factor, and every state/specification object passed to the call.
- Validate the result parameter group before changing buffers: initialization routines often establish constraints inherited by later processing calls.
- use ippGetStatusString for logging but branch on the numeric IppStatus value; localized or wrapper text is not a stable program contract.
Retrying this result with unchanged arguments normally reproduces the same validation failure. Rebuild the affected IPP state when configuration changed, verify buffer bounds and alignment, and isolate the smallest call that still returns the status.
Looking for a different code? Search another status or error code.