Lines Matching defs:header
48 Has 10 B extra header not accounted for in the chunk header */
90 unsigned char header[FLIC_HEADER_SIZE];
98 /* load the whole header and pull out the width and height */
99 if (avio_read(pb, header, FLIC_HEADER_SIZE) != FLIC_HEADER_SIZE)
102 magic_number = AV_RL16(&header[4]);
103 speed = AV_RL32(&header[0x10]);
115 st->codecpar->width = AV_RL16(&header[0x08]);
116 st->codecpar->height = AV_RL16(&header[0x0A]);
127 /* send over the whole 128-byte FLIC header */
130 memcpy(st->codecpar->extradata, header, FLIC_HEADER_SIZE);
165 /* Since the header information is incorrect we have to figure out the
170 } else if (AV_RL16(&header[0x10]) == FLIC_CHUNK_MAGIC_1) {
176 /* send over abbreviated FLIC header chunk */
179 memcpy(st->codecpar->extradata, header, 12);
239 /* skip useless 10B sub-header (yes, it's not accounted for in the chunk header) */