Lines Matching defs:header
50 * Parse the header of a LPCM frame read from a Blu-ray MPEG-TS stream
52 * @param header pointer to the first four bytes of the data packet
55 const uint8_t *header)
65 uint8_t channel_layout = header[2] >> 4;
68 ff_dlog(avctx, "pcm_bluray_parse_header: header = %02x%02x%02x%02x\n",
69 header[0], header[1], header[2], header[3]);
72 avctx->bits_per_coded_sample = bits_per_samples[header[3] >> 6];
83 switch (header[2] & 0x0f) {
96 header[2] & 0x0f);