Lines Matching refs:param_presence_flags
92 uint8_t param_presence_flags; ///< Bitmask of which parameter sets are conveyed in a decoding parameter block.
298 if (prev->param_presence_flags != dp->param_presence_flags)
404 dp->param_presence_flags = 0xff;
430 uint8_t param_presence_flags = 0;
434 param_presence_flags |= PARAM_BLOCKSIZE;
435 param_presence_flags |= PARAM_MATRIX;
436 param_presence_flags |= PARAM_OUTSHIFT;
437 param_presence_flags |= PARAM_QUANTSTEP;
438 param_presence_flags |= PARAM_FIR;
439 /*param_presence_flags |= PARAM_IIR; */
440 param_presence_flags |= PARAM_HUFFOFFSET;
441 param_presence_flags |= PARAM_PRESENT;
443 dp->param_presence_flags = param_presence_flags;
857 if (dp->param_presence_flags != PARAMS_DEFAULT &&
860 put_bits(pb, 8, dp->param_presence_flags);
865 if (dp->param_presence_flags & PARAM_BLOCKSIZE) {
874 if (dp->param_presence_flags & PARAM_MATRIX) {
883 if (dp->param_presence_flags & PARAM_OUTSHIFT) {
893 if (dp->param_presence_flags & PARAM_QUANTSTEP) {
906 if (dp->param_presence_flags & 0xF) {
909 if (dp->param_presence_flags & PARAM_FIR) {
918 if (dp->param_presence_flags & PARAM_IIR) {
927 if (dp->param_presence_flags & PARAM_HUFFOFFSET) {