Lines Matching defs:number
49 uint8_t max_matrix_channel; ///< The number of channels input into the rematrix stage.
63 uint8_t count; ///< number of matrices to apply
87 uint16_t blocksize; ///< number of PCM samples in current audio block
143 unsigned int next_major_frame_size; ///< Counter of number of samples for next major frame.
448 /** Calculates the smallest number of bits it takes to encode a given signed
451 static int inline number_sbits(int number)
453 if (number < -1)
454 number++;
456 return av_log2(FFABS(number)) + 1 + !!number;
1231 /** Counts the number of trailing zeroes in a value */
1268 /** Determines the smallest number of bits needed to encode the filter
1521 /* Determine offset and minimum number of bits. */